一、优化启动时间的流程

1、系统启动流程:先使用nxp提供的系统方案启动系统。分析系统启动流程。优化启动时间工作在验证系统必须功能正常的前提下进行。系统可以独立下载源码进行编译,也可以通过yocto工程构建。

本次优化启动时间的优化目标为冷启动到进入界面的启动时间为3秒。


2、优化思路

二、启动快速启动裁剪原则

  • 从优化的最后一步开始进行优化
  • 先不要一开始就裁剪掉那些可以帮助我们判断和测量那些组件可以优化的工具和模块
  • 先从应用程序开始优化
  • 可以先简化systemd,移除不必要的服务。若是使用BusyBox,则减少启动脚本加载的命令和启动的进程,尽量减少启动应用程序所占用的时间。
  • 下一步就是简化和优化kernel,内核模块裁剪,去除调试功能,裁剪不必要驱动
  • 再然后才是bootloader优化。这时候内核优化应该已经接入尾声,而且,bootargs应该是一个定值。

三、测量启动时间的方法

在优化工作下,总是需要各种各样的启动时间测量工具,以及分析工具。让自己的优化时间工作高效快速

1. 串口终端工具:grabserial


这是一个python开源工具,可以在每行串口输出追加时间戳。在打印数据前加时间戳,优势是可以从进入bootloader就开始测量启动时间,而且不会影响系统启动的流程。当然也有缺点,就是不准确,而且不能够测量Power up ssequence时间。
使用grabserial:grabserial工具会从第一个节后到的字符开始计算,并没有统计到Power up ssequence时间。要统计Power up ssequence时间,可以示波器一个通道测量Power引脚,一个通道测量TXD引脚。然后测量两者时间差。达到测量Power up ssequence时间的目的。

  1. Ubuntu16.04安装:

获取链接:http://elinux.org/Grabserial

  1. 安装grabserial
$ tar xzvf grabserial-1.9.3.tar.gz
$ cd grabserial-1.9.3/
$ sudo python setup.py install

若出现问题:

$ sudo python setup.py install
[sudo] l 的密码:
Traceback (most recent call last):File "setup.py", line 5, in <module>from setuptools import setup
ImportError: No module named setuptools

则安装:setuptools,然后在回滚之前的grabserial流程。

wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-12.0.3.tar.gz#md5=f07e4b0f4c1c9368fcd980d888b29a65
tar xvf setuptools-12.0.3.tar.gz
cd setuptools-12.0.3
sudo python setup.py install
  1. 使用grabserial
 sudo grabserial -d /dev/ttyUSB0 -t -e 20

2. dmesg命令分析kernel启动

dmesg可以输出启动启动的打印信息,其信息输出可以通过各种工具加工成图形表格,有助于帮助我们分析,系统在启动的时候到底花了多少时间在哪一些事情上。

  1. dmesg使用准备工作
  • 配置内核:增大log缓冲区
$ make menuconfig> General setup ─────────────────────────────────────────────────│ │ (16) Kernel log buffer size (16 => 64KB, 17 => 128KB)  │ │  │ │ (16) CPU kernel log buffer sizecontribution (13 => 8 KB, 17 => 128KB) │ │
  • bootargs配置:
setenv console 'ttymxc0,115200 earlycon=ec_imx6q,0x30860000,115200 initcall_debug printk.time=1'
  1. 使用kernel/scripts下的bootgraph.pl脚本生成图形
  • 准备dmesg.log
$ dmesg > dmesg.log
  • 生成bootgraph.svg,不好看,不直观。
$ cat dmesg.log | perl bootgraph.pl > bootgraph.svg

  1. 编写dmesg-initcall.pl脚本和FlameGraph生成图形
    dmesg-initcall.pl脚本会调用到kernel/scripts下的bootgraph.pl脚本,算是一种改进版。
  • dmesg-initcall.pl脚本
#!/usr/bin/perl# Copyright 2008, Intel Corporation
#
# This file is part of the Linux kernel
#
# This program file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program in a file named COPYING; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor,
# Boston, MA 02110-1301 USA
#
# Authors:
#   Arjan van de Ven <arjan@linux.intel.com>#
# This script turns a dmesg output into a SVG graphic that shows which
# functions take how much time. You can view SVG graphics with various
# programs, including Inkscape, The Gimp and Firefox.
#
#
# For this script to work, the kernel needs to be compiled with the
# CONFIG_PRINTK_TIME configuration option enabled, and with
# "initcall_debug" passed on the kernel command line.
#
# usage:
#   dmesg | perl scripts/bootgraph.pl > output.svg
#use strict;my %start;
my %end;
my %type;
my $done = 0;
my $maxtime = 0;
my $firsttime = 99999;
my $count = 0;
my %pids;
my %pidctr;while (<>) {my $line = $_;if ($line =~ /([0-9\.]+)\].* calling  ([a-zA-Z0-9\_\.]+)\+/) {my $func = $2;if ($done == 0) {$start{$func} = $1;$type{$func} = 0;if ($1 < $firsttime) {$firsttime = $1;}}if ($line =~ /\@ ([0-9]+)/) {$pids{$func} = $1;}$count = $count + 1;}if ($line =~ /([0-9\.]+)\].* async_waiting @ ([0-9]+)/) {my $pid = $2;my $func;if (!defined($pidctr{$pid})) {$func = "wait_" . $pid . "_1";$pidctr{$pid} = 1;} else {$pidctr{$pid} = $pidctr{$pid} + 1;$func = "wait_" . $pid . "_" . $pidctr{$pid};}if ($done == 0) {$start{$func} = $1;$type{$func} = 1;if ($1 < $firsttime) {$firsttime = $1;}}$pids{$func} = $pid;$count = $count + 1;}if ($line =~ /([0-9\.]+)\].* initcall ([a-zA-Z0-9\_\.]+)\+.*returned/) {if ($done == 0) {$end{$2} = $1;$maxtime = $1;}}if ($line =~ /([0-9\.]+)\].* async_continuing @ ([0-9]+)/) {my $pid = $2;my $func =  "wait_" . $pid . "_" . $pidctr{$pid};$end{$func} = $1;$maxtime = $1;}if ($line =~ /Write protecting the/) {$done = 1;}if ($line =~ /Freeing unused kernel memory/) {$done = 1;}
}if ($count == 0) {print STDERR <<END;
No data found in the dmesg. Make sure that 'printk.time=1' and
'initcall_debug' are passed on the kernel command line.
Usage:dmesg | perl scripts/bootgraph.pl > output.svg
ENDexit 1;
}my $mult = 1950.0 / ($maxtime - $firsttime);
my $threshold2 = ($maxtime - $firsttime) / 120.0;
my $threshold = $threshold2/10;my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start);foreach my $key (@initcalls) {my $duration = $end{$key} - $start{$key};if ($duration >= $threshold) {my ($delta);$delta = (int(($end{$key} - $start{$key})*1000)) / 1000;printf("%s %s\n", $key, $delta);}
  • 获取FlameGraph
$ git clone https://github.com/brendangregg/FlameGraph.git
  • 生成linux-boot-flamegraph.svg
cat dmesg.log | perl dmesg-initcall.pl > boot-initcall.log
cat boot-initcall.log | ./FlameGraph/flamegraph.pl > linux-boot-flamegraph.svg

  1. 生成linux-boot-gnuplot.svg直方图
  • 准备linux-boot.gnuplot脚本
set terminal svg size 800,300 fsize 4
set output 'linux-boot-gnuplot.svg'
set style data histograms
set style histogram clustered gap 1 title offset character 0, 0, 0
set style fill solid 0.4 border
set xtics rotate by -45
set boxwidth 0.9 absolute
plot './boot-initcall.log' using 2:xticlabels(1)
  • 安装gnuplot-x11
$ sudo apt-get install gnuplot-x11
  • 生成linux-boot-gnuplot.svg
$ gnuplot < linux-boot.gnuplot

  1. 生成linux-boot-histogram.svg
  • 准备TinyDrow
$ git clone https://github.com/tinyclub/tinydraw.git
  • 生成linux-boot-histogram.svg
$ ./tinydraw/histogram/histogram.sh boot-initcall.log > linux-boot-histogram.svg


6. 统一生成所有svg

#!/bin/bash
cat dmesg.log | perl bootgraph.pl > bootgraph.svgcat dmesg.log | perl dmesg-initcall.pl > boot-initcall.log
cat boot-initcall.log | ./FlameGraph/flamegraph.pl > linux-boot-flamegraph.svggnuplot < linux-boot.gnuplot./tinydraw/histogram/histogram.sh boot-initcall.log > linux-boot-histogram.svgrm boot-initcall.log
mv *.svg /mnt/hgfs/D/

4、使用systemd-analyze分析systemd启动

$ systemd-analyze plot > systemd.svg

nxp提供源码编译启动分析

启动时间记录:下面是nxp出厂时的启动信息。做个记录。不要往下滑了…
好长。。。
这些信息可以利用上面的工具生成图表,容易分析。
这里截取关键部分分析:

  1. BootROM到signal_hdmi部分时间,大概0.884199s。这段基本没有优化空间
[0.000001 0.000001]
[0.884199 0.884198] U-Boot SPL 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g2537522 (Mar 12 2018 - 12:25:24)
  1. spl时间:0.3698s
[0.884199 0.884198] U-Boot SPL 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g2537522 (Mar 12 2018 - 12:25:24)
[1.253999 0.000601] Trying to boot from MMC1
  1. bl31时间:0.204025s
[1.253999 0.000601] Trying to boot from MMC1
[1.457493 0.203494]
[1.458024 0.000531]
[1.458186 0.000162] U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g2537522 (Mar 12 2018 - 12:25:24 -0500)
  1. uboot时间:1.207503s
    这里减去2s倒数时间
[1.458186 0.000162] U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g2537522 (Mar 12 2018 - 12:25:24 -0500)
[4.665689 0.000121] Starting kernel ...
  1. kernel时间:4.65263s
    这里以Freeing unused kernel memory为kernel启动动作为结束标志。
[4.665689 0.000121] Starting kernel ...
[4.666660 0.000971]
[4.707357 0.040697] [    0.000000] Booting Linux on physical CPU 0x0
[9.318319 0.005236] [    4.143974] Freeing unused kernel memory: 1088K
  1. systemd时间:3.618085s
    以进入login为systemd启动结束标志。
[9.318319 0.005236] [    4.143974] Freeing unused kernel memory: 1088K
[12.936404 0.009651] imx8mqevk login:

7.以下为完整的启动log

l@l:/$ sudo grabserial -d /dev/ttyUSB0 -t -e 30
[0.000001 0.000001]
[0.884199 0.884198] U-Boot SPL 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g2537522 (Mar 12 2018 - 12:25:24)
[0.895552 0.011353] PMIC:  PFUZE100 ID=0x10
[1.000412 0.104860] start to config phy: p0=3200mts, p1=667mts with 1D2D training
[1.016420 0.016008] check ddr4_pmu_train_imem code
[1.027512 0.011092] check ddr4_pmu_train_imem code pass
[1.047903 0.020391] check ddr4_pmu_train_dmem code
[1.057924 0.010021] check ddr4_pmu_train_dmem code pass
[1.061059 0.003135] config to do 3200 1d training.
[1.066467 0.005408] Training PASS
[1.067272 0.000805] check ddr4_pmu_train_imem code
[1.074665 0.007393] check ddr4_pmu_train_imem code pass
[1.076464 0.001799] check ddr4_pmu_train_dmem code
[1.086214 0.009750] check ddr4_pmu_train_dmem code pass
[1.088088 0.001874] config to do 3200 2d training.
[1.183084 0.094996] Training PASS
[1.194767 0.011683] check ddr4_pmu_train_imem code
[1.211310 0.016543] check ddr4_pmu_train_imem code pass
[1.212905 0.001595] check ddr4_pmu_train_dmem code
[1.222876 0.009971] check ddr4_pmu_train_dmem code pass
[1.224180 0.001304] pstate=1: set dfi clk done done
[1.249621 0.025441] Training PASS
[1.252693 0.003072] Load 201711 PIE
[1.253398 0.000705] Normal Boot
[1.253999 0.000601] Trying to boot from MMC1
[1.457493 0.203494]
[1.458024 0.000531]
[1.458186 0.000162] U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g2537522 (Mar 12 2018 - 12:25:24 -0500)
[1.471298 0.013112]
[1.471354 0.000056] CPU:   Freescale i.MX8MQ rev2.0 1500 MHz (running at 1000 MHz)
[1.493293 0.021939] CPU:   Commercial temperature grade (0C to 95C) at 41C
[1.495640 0.002347] Reset cause: POR
[1.496201 0.000561] Model: Freescale i.MX8MQ EVK
[1.508843 0.012642] DRAM:  3 GiB
[1.604591 0.095748] TCPC:  Vendor ID [0x1fc9], Product ID [0x5110]
[1.643736 0.039145] MMC:   FSL_SDHC: 0, FSL_SDHC: 1
[1.712596 0.068860] *** Warning - bad CRC, using default environment
[1.717067 0.004471]
[1.720658 0.003591] No panel detected: default to HDMI
[1.723354 0.002696] Display: HDMI (1280x720)
[1.776265 0.052911] In:    serial
[1.776783 0.000518] Out:   serial
[1.777277 0.000494] Err:   serial
[1.777882 0.000605]
[1.777953 0.000071]  BuildInfo:
[1.778428 0.000475]   - ATF 6a83ae0
[1.779012 0.000584]   - U-Boot 2017.03-imx_v2017.03_4.9.51_imx8m_ga+g2537522
[1.781199 0.002187]
[1.876847 0.095648] switch to partitions #0, OK
[1.878055 0.001208] mmc0(part 0) is current device
[1.882102 0.004047] Net:
[1.888767 0.006665] Warning: ethernet@30be0000 using MAC address from ROM
[1.893433 0.004666] eth0: ethernet@30be0000
[1.894155 0.000722] Normal Boot
[1.894876 0.000721] Hit any key to stop autoboot:  0
[3.991930 2.097054] switch to partitions #0, OK
[3.994439 0.002509] mmc0(part 0) is current device
[4.093165 0.098726] reading boot.scr
[4.099778 0.006613] ** Unable to read file boot.scr **
[4.105631 0.005853] reading Image
[4.556352 0.450721] 20054528 bytes read in 448 ms (42.7 MiB/s)
[4.558999 0.002647] Booting from mmc ...
[4.565330 0.006331] reading fsl-imx8mq-evk.dtb
[4.583875 0.018545] 42199 bytes read in 17 ms (2.4 MiB/s)
[4.655799 0.071924] ## Flattened Device Tree blob at 43000000
[4.660149 0.004350]    Booting using the fdt blob at 0x43000000
[4.662332 0.002183]    Using Device Tree in place at 0000000043000000, end 000000004300d4d6
[4.665568 0.003236]
[4.665689 0.000121] Starting kernel ...
[4.666660 0.000971]
[4.707357 0.040697] [    0.000000] Booting Linux on physical CPU 0x0
[4.709425 0.002068] [    0.000000] Linux version 4.9.51-imx_4.9.51_imx8m_ga+g6df7474 (bamboo@yb6) (gcc version 6.2.0 (GCC) ) #2 SMP PREEMPT Mon Mar 12 12:13:52 CDT 2018
[4.716465 0.007040] [    0.000000] Boot CPU: AArch64 Processor [410fd034]
[4.726013 0.009548] [    0.000000] earlycon: ec_imx6q0 at MMIO 0x0000000030860000 (options '115200')
[4.745448 0.019435] [    0.000000] bootconsole [ec_imx6q0] enabled
[4.753202 0.007754] [    0.000000] efi: Getting EFI parameters from FDT:
[4.757271 0.004069] [    0.000000] efi: UEFI not found.
[4.759538 0.002267] [    0.000000] Reserved memory: created CMA memory pool at 0x0000000044000000, size 960 MiB
[4.764106 0.004568] [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[4.833268 0.069162] [    0.000000] psci: probing for conduit method from DT.
[4.837139 0.003871] [    0.000000] psci: PSCIv1.0 detected in firmware.
[4.850233 0.013094] [    0.000000] psci: Using standard PSCI v0.2 function IDs
[4.862640 0.012407] [    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[4.874612 0.011972] [    0.000000] percpu: Embedded 21 pages/cpu @ffff8000bff68000 s48536 r8192 d29288 u86016
[4.885657 0.011045] [    0.000000] Detected VIPT I-cache on CPU0
[4.887025 0.001368] [    0.000000] CPU features: enabling workaround for ARM erratum 845719
[4.897928 0.010903] [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 773888
[4.902276 0.004348] [    0.000000] Kernel command line: console=ttymxc0,115200 earlycon=ec_imx6q,0x30860000,115200 root=/dev/mmcblk0p2 rootwait rw
[4.929185 0.026909] [    0.000000] log_buf_len individual max cpu contribution: 4096 bytes
[4.930655 0.001470] [    0.000000] log_buf_len total cpu_extra contributions: 12288 bytes
[4.935447 0.004792] [    0.000000] log_buf_len min size: 16384 bytes
[4.937135 0.001688] [    0.000000] log_buf_len: 32768 bytes
[4.938060 0.000925] [    0.000000] early log buf free: 14540(88%)
[4.939431 0.001371] [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[4.940716 0.001285] [    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[4.941910 0.001194] [    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[4.991943 0.050033] [    0.000000] Memory: 2085680K/3144704K available (11900K kernel code, 1280K rwdata, 5284K rodata, 1088K init, 367K bss, 75984K reserved, 983040K cma-reserved)
[4.995332 0.003389] [    0.000000] Virtual kernel memory layout:
[4.996124 0.000792] [    0.000000]     modules : 0xffff000000000000 - 0xffff000008000000   (   128 MB)
[5.014900 0.018776] [    0.000000]     vmalloc : 0xffff000008000000 - 0xffff7dffbfff0000   (129022 GB)
[5.016898 0.001998] [    0.000000]       .text : 0xffff000008080000 - 0xffff000008c20000   ( 11904 KB)
[5.019691 0.002793] [    0.000000]     .rodata : 0xffff000008c20000 - 0xffff000009150000   (  5312 KB)
[5.037282 0.017591] [    0.000000]       .init : 0xffff000009150000 - 0xffff000009260000   (  1088 KB)
[5.040323 0.003041] [    0.000000]       .data : 0xffff000009260000 - 0xffff0000093a0200   (  1281 KB)
[5.044550 0.004227] [    0.000000]        .bss : 0xffff0000093a0200 - 0xffff0000093fc184   (   368 KB)
[5.060166 0.015616] [    0.000000]     fixed   : 0xffff7dfffe7fd000 - 0xffff7dfffec00000   (  4108 KB)
[5.065255 0.005089] [    0.000000]     PCI I/O : 0xffff7dfffee00000 - 0xffff7dffffe00000   (    16 MB)
[5.073140 0.007885] [    0.000000]     vmemmap : 0xffff7e0000000000 - 0xffff800000000000   (  2048 GB maximum)
[5.083203 0.010063] [    0.000000]               0xffff7e0000000000 - 0xffff7e0003000000   (    48 MB actual)
[5.093219 0.010016] [    0.000000]     memory  : 0xffff800000000000 - 0xffff8000c0000000   (  3072 MB)
[5.101804 0.008585] [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[5.110165 0.008361] [    0.000000] Preemptible hierarchical RCU implementation.
[5.115924 0.005759] [    0.000000]  Build-time adjustment of leaf fanout to 64.
[5.117363 0.001439] [    0.000000]  RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[5.125375 0.008012] [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[5.129978 0.004603] [    0.000000] NR_IRQS:64 nr_irqs:64 0
[5.135054 0.005076] [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[5.142274 0.007220] [    0.000000] ITS: No ITS available, not enabling LPIs
[5.145557 0.003283] [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000038880000
[5.167903 0.022346] [    0.000000] i.MX8MQ clock driver init done
[5.170310 0.002407] [    0.000000] arm_arch_timer: Architected cp15 timer(s) running at 8.33MHz (phys).
[5.172905 0.002595] [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1ec0311ec, max_idle_ns: 440795202152 ns
[5.189890 0.016985] [    0.000004] sched_clock: 56 bits at 8MHz, resolution 120ns, wraps every 2199023255541ns
[5.193613 0.003723] [    0.008225] system counter timer init
[5.195680 0.002067] [    0.011723] sched_clock: 56 bits at 8MHz, resolution 120ns, wraps every 2199023255541ns
[5.199758 0.004078] [    0.019708] clocksource: imx sysctr: mask: 0xffffffffffffff max_cycles: 0x1ec0311ec, max_idle_ns: 440795202152 ns
[5.215717 0.015959] [    0.030320] Console: colour dummy device 80x25
[5.217492 0.001775] [    0.034465] Calibrating delay loop (skipped), value calculated using timer frequency.. 16.66 BogoMIPS (lpj=33333)
[5.234333 0.016841] [    0.044733] pid_max: default: 32768 minimum: 301
[5.237377 0.003044] [    0.049416] Security Framework initialized
[5.239064 0.001687] [    0.053492] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[5.247563 0.008499] [    0.060177] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[5.259853 0.012290] [    0.068043] ASID allocator initialised with 65536 entries
[5.283513 0.023660] [    0.105539] Cannot find MU entry in device tree
[5.285558 0.002045] [    0.107318] CPU identified as i.MX8MQ, silicon rev 2.0
[5.289788 0.004230] [    0.112471] EFI services will not be available.
[5.416478 0.126690] [    0.165093] Detected VIPT I-cache on CPU1
[5.419858 0.003380] [    0.165120] GICv3: CPU1: found redistributor 1 region 0:0x00000000388a0000
[5.426175 0.006317] [    0.165155] CPU1: Booted secondary processor [410fd034]
[5.430337 0.004162] [    0.197158] Detected VIPT I-cache on CPU2
[5.433588 0.003251] [    0.197178] GICv3: CPU2: found redistributor 2 region 0:0x00000000388c0000
[5.445604 0.012016] [    0.197210] CPU2: Booted secondary processor [410fd034]
[5.457014 0.011410] [    0.229231] Detected VIPT I-cache on CPU3
[5.460450 0.003436] [    0.229252] GICv3: CPU3: found redistributor 3 region 0:0x00000000388e0000
[5.467304 0.006854] [    0.229285] CPU3: Booted secondary processor [410fd034]
[5.472163 0.004859] [    0.229492] Brought up 4 CPUs
[5.475423 0.003260] [    0.277993] SMP: Total of 4 processors activated.
[5.479184 0.003761] [    0.282708] CPU features: detected feature: GIC system register CPU interface
[5.483191 0.004007] [    0.289861] CPU features: detected feature: 32-bit EL0 Support
[5.488883 0.005692] [    0.296039] CPU: All CPU(s) started at EL2
[5.492308 0.003425] [    0.299963] alternatives: patching kernel code
[5.498163 0.005855] [    0.305417] devtmpfs: initialized
[5.500484 0.002321] [    0.314433] DMI not present or invalid.
[5.507028 0.006544] [    0.315838] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[5.516887 0.009859] [    0.325195] futex hash table entries: 1024 (order: 5, 131072 bytes)
[5.531082 0.014195] [    0.356278] pinctrl core: initialized pinctrl subsystem
[5.533409 0.002327] [    0.360022] NET: Registered protocol family 16
[5.565896 0.032487] [    0.383727] cpuidle: using governor menu
[5.568481 0.002585] [    0.385362] vdso: 2 pages (1 code @ ffff000008c27000, 1 data @ ffff000009264000)
[5.573000 0.004519] [    0.392276] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[5.579049 0.006049] [    0.403072] DMA: preallocated 256 KiB pool for atomic allocations
[5.583366 0.004317] [    0.407560] Serial: AMBA PL011 UART driver
[5.588901 0.005535] [    0.418025] imx8mq-pinctrl 30330000.iomuxc: initialized IMX pinctrl driver
[5.630052 0.041151] [    0.459522] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[5.640648 0.010596] [    0.472237] ACPI: Interpreter disabled.
[5.651699 0.011051] [    0.476431] mxs-dma 33000000.dma-apbh: initialized
[5.654110 0.002411] [    0.480744] vgaarb: loaded
[5.655402 0.001292] [    0.481610] SCSI subsystem initialized
[5.676396 0.020994] [    0.489769] usbcore: registered new interface driver usbfs
[5.680770 0.004374] [    0.492494] usbcore: registered new interface driver hub
[5.685021 0.004251] [    0.498104] usbcore: registered new device driver usb
[5.701015 0.015994] [    0.504343] i2c i2c-0: IMX I2C adapter registered
[5.712962 0.011947] [    0.507519] i2c i2c-0: can't use DMA, using PIO instead.
[5.725974 0.013012] [    0.513644] i2c i2c-1: IMX I2C adapter registered
[5.731133 0.005159] [    0.517529] i2c i2c-1: can't use DMA, using PIO instead.
[5.735807 0.004674] [    0.523448] media: Linux media interface: v0.10
[5.739089 0.003282] [    0.527481] Linux video capture interface: v2.00
[5.742073 0.002984] [    0.532190] pps_core: LinuxPPS API ver. 1 registered
[5.744687 0.002614] [    0.536968] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[5.752074 0.007387] [    0.546248] PTP clock support registered
[5.756410 0.004336] [    0.550471] dmi: Firmware registration failed.
[5.759663 0.003253] [    0.554592] Linux cec interface: v0.10
[5.760202 0.000539] [    0.558715] MU is ready for cross core communication!
[5.763800 0.003598] [    0.564366] virtio_rpmsg_bus virtio0: rpmsg host is online
[5.767865 0.004065] [    0.568926] imx rpmsg driver is registered.
[5.771292 0.003427] [    0.573387] Advanced Linux Sound Architecture Driver Initialized.
[5.772417 0.001125] [    0.579881] Bluetooth: Core ver 2.22
[5.773077 0.000660] [    0.582735] NET: Registered protocol family 31
[5.773595 0.000518] [    0.587165] Bluetooth: HCI device and connection manager initialized
[5.774675 0.001080] [    0.593479] Bluetooth: HCI socket layer initialized
[5.775495 0.000820] [    0.598416] Bluetooth: L2CAP socket layer initialized
[5.788334 0.012839] [    0.603431] Bluetooth: SCO socket layer initialized
[5.788710 0.000376] [    0.609764] clocksource: Switched to clocksource arch_sys_counter
[5.789530 0.000820] [    0.614672] VFS: Disk quotas dquot_6.6.0
[5.789948 0.000418] [    0.618422] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[5.796589 0.006641] [    0.625535] pnp: PnP ACPI: disabled
[5.826822 0.030233] [    0.640321] NET: Registered protocol family 2
[5.827468 0.000646] [    0.642215] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[5.830781 0.003313] [    0.649365] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[5.837584 0.006803] [    0.656198] TCP: Hash tables configured (established 32768 bind 32768)
[5.849208 0.011624] [    0.662331] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[5.850206 0.000998] [    0.668337] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[5.851206 0.001000] [    0.674939] NET: Registered protocol family 1
[5.851876 0.000670] [    0.679833] RPC: Registered named UNIX socket transport module.
[5.871491 0.019615] [    0.684997] RPC: Registered udp transport module.
[5.872793 0.001302] [    0.689702] RPC: Registered tcp transport module.
[5.873855 0.001062] [    0.694467] RPC: Registered tcp NFSv4.1 backchannel transport module.
[5.876258 0.002403] [    0.701454] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[5.894654 0.018396] [    0.709176] kvm [1]: 8-bit VMID
[5.895192 0.000538] [    0.711768] kvm [1]: IDMAP page: 40c10000
[5.895890 0.000698] [    0.715831] kvm [1]: HYP VA range: 800000000000:ffffffffffff
[5.897094 0.001204] [    0.722227] kvm [1]: Hyp mode initialized successfully
[5.897979 0.000885] [    0.726649] kvm [1]: GICv3: no GICV resource entry
[5.920785 0.022806] [    0.731439] kvm [1]: disabling GICv2 emulation
[5.928871 0.008086] [    0.735951] kvm [1]: GIC system register CPU interface enabled
[5.934815 0.005944] [    0.742186] kvm [1]: vgic interrupt IRQ1
[5.939790 0.004975] [    0.745604] kvm [1]: virtual timer IRQ4
[5.941444 0.001654] [    0.755068] audit: initializing netlink subsys (disabled)
[5.944088 0.002644] [    0.757638] audit: type=2000 audit(0.659:1): initialized
[5.946484 0.002396] [    0.764124] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[5.967985 0.021501] [    0.781287] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[5.969791 0.001806] [    0.785482] NFS: Registering the id_resolver key type
[5.975010 0.005219] [    0.789360] Key type id_resolver registered
[5.980181 0.005171] [    0.793524] Key type id_legacy registered
[5.983370 0.003189] [    0.797539] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[5.988139 0.004769] [    0.804264] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[5.990975 0.002836] [    0.810891] 9p: Installing v9fs 9p2000 file system support
[6.014226 0.023251] [    0.829056] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[6.016899 0.002673] [    0.833676] io scheduler noop registered
[6.022514 0.005615] [    0.837558] io scheduler cfq registered (default)
[6.028900 0.006386] [    0.844384] libphy: mdio_driver_register: phy-bcm-ns2-pci
[6.040810 0.011910] [    0.858131] imx-sdma 30bd0000.sdma: no iram assigned, using external mem
[6.049160 0.008350] [    0.863292] imx-sdma 30bd0000.sdma: loaded firmware 4.2
[6.052732 0.003572] [    0.871040] imx-sdma 302c0000.sdma: no iram assigned, using external mem
[6.056936 0.004204] [    0.876324] imx-sdma 302c0000.sdma: loaded firmware 4.2
[6.072988 0.016052] [    0.886331] Bus freq driver module loaded
[6.074567 0.001579] [    0.888350] xenfs: not registering filesystem on non-xen platform
[6.077888 0.003321] [    0.895199] pfuze100-regulator 0-0008: Full layer: 2, Metal layer: 1
[6.084956 0.007068] [    0.900489] pfuze100-regulator 0-0008: FAB: 0, FIN: 0
[6.085953 0.000997] [    0.905081] pfuze100-regulator 0-0008: pfuze100 found.
[6.105332 0.019379] [    0.932051] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[6.107929 0.002597] [    0.938468] SuperH (H)SCI(F) driver initialized
[6.115741 0.007812] [    0.943157] console [ttymxc0] enabled
[6.116718 0.000977] [    0.946848] bootconsole [ec_imx6q0] disabled
[6.124400 0.007682] [    0.951888] 30880000.serial: ttymxc2 at MMIO 0x30880000 (irq = 40, base_baud = 5000000) is a IMX
[6.131679 0.007279] [    0.961477] msm_serial: driver initialized
[6.139081 0.007402] [    0.971375] [drm] Initialized
[6.155381 0.016300] [    0.978958] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[6.159150 0.003769] [    0.985596] [drm] No driver support for vblank timestamp query.
[6.162795 0.003645] [    0.991690] imx-drm display-subsystem: bound imx-dcss-crtc.0 (ops dcss_crtc_ops)
[6.167011 0.004216] [    0.999193]  VIC 2, pixel clock 148500 kHz
[6.180521 0.013510] [    1.003540] Pixel clock frequency: 148500 kHz, character clock frequency: 148500, color depth is 8-bit.
[6.182378 0.001857] [    1.012947] VCO frequency is 5940000 kHz
[6.190011 0.007633] [    1.019614] CDN_API_General_Write_Register_blocking LANES_CONFIG ret = 0
[6.203543 0.013532] [    1.027164] [drm] hdmi-audio-codec driver bound to HDMI
[6.208575 0.005032] [    1.032414] imx-drm display-subsystem: bound 32c00000.hdmi (ops imx_hdp_imx_ops)
[6.217187 0.008612] [    1.039919] imx-drm display-subsystem: No connectors reported connected with modes
[6.220758 0.003571] [    1.047509] [drm] Cannot find any crtc or sizes - going 1024x768
[6.253448 0.032690] [    1.066860] Console: switching to colour frame buffer device 128x48
[6.258221 0.004773] [    1.083646] imx-drm display-subsystem: fb0:  frame buffer device
[6.283451 0.025230] [    1.116546] loop: module loaded
[6.289399 0.005948] [    1.121643] hisi_sas: driver version v1.6
[6.299126 0.009727] [    1.129502] fsl-quadspi 30bb0000.qspi: n25q256a (32768 Kbytes)
[6.305181 0.006055] [    1.137465] slram: not enough parameters.
[6.312637 0.007456] [    1.144748] libphy: Fixed MDIO Bus: probed
[6.325512 0.012875] [    1.150424] tun: Universal TUN/TAP device driver, 1.6
[6.326968 0.001456] [    1.155490] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[6.329568 0.002600] [    1.162046] CAN device driver interface
[6.338559 0.008991] [    1.168011] 30be0000.ethernet supply phy not found, using dummy regulator
[6.349221 0.010662] [    1.175244] pps pps0: new PPS source ptp0
[6.353234 0.004013] [    1.182191] libphy: fec_enet_mii_bus: probed
[6.357734 0.004500] [    1.187963] fec 30be0000.ethernet eth0: registered PHC device 0
[6.364358 0.006624] [    1.194817] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[6.370511 0.006153] [    1.200721] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[6.377877 0.007366] [    1.206777] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[6.383013 0.005136] [    1.213831] igb: Copyright (c) 2007-2014 Intel Corporation.
[6.396991 0.013978] [    1.219514] igbvf: Intel(R) Gigabit Virtual Function Network Driver - version 2.4.0-k
[6.400022 0.003031] [    1.227358] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[6.405748 0.005726] [    1.233389] sky2: driver version 1.30
[6.418044 0.012296] [    1.243193] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[6.421893 0.003849] [    1.249753] ehci-pci: EHCI PCI platform driver
[6.423307 0.001414] [    1.254303] ehci-platform: EHCI generic platform driver
[6.427747 0.004440] [    1.259807] ehci-exynos: EHCI EXYNOS driver
[6.444648 0.016901] [    1.264175] ehci-msm: Qualcomm On-Chip EHCI Host Controller
[6.446073 0.001425] [    1.269925] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[6.447417 0.001344] [    1.276130] ohci-pci: OHCI PCI platform driver
[6.449577 0.002160] [    1.280677] ohci-platform: OHCI generic platform driver
[6.454026 0.004449] [    1.286088] ohci-exynos: OHCI EXYNOS driver
[6.463990 0.009964] [    1.290866] Can't support > 32 bit dma.
[6.465475 0.001485] [    1.294760] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[6.468912 0.003437] [    1.300304] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[6.482471 0.013559] [    1.310028] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe6c hci version 0x110 quirks 0x01010810
[6.488683 0.006212] [    1.318809] xhci-hcd xhci-hcd.0.auto: irq 229, io mem 0x38200000
[6.497047 0.008364] [    1.325632] hub 1-0:1.0: USB hub found
[6.498152 0.001105] [    1.329425] hub 1-0:1.0: 1 port detected
[6.510489 0.012337] [    1.333639] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[6.514442 0.003953] [    1.339148] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[6.526543 0.012101] [    1.347557] hub 2-0:1.0: USB hub found
[6.530038 0.003495] [    1.351340] hub 2-0:1.0: 1 port detected
[6.532116 0.002078] [    1.356054] usbcore: registered new interface driver usb-storage
[6.533720 0.001604] [    1.362175] usbcore: registered new interface driver usb_ehset_test
[6.540317 0.006597] [    1.370947] mousedev: PS/2 mouse device common for all mice
[6.551723 0.011406] [    1.376934] input: 30370000.snvs:snvs-powerkey as /devices/platform/30370000.snvs/30370000.snvs:snvs-powerkey/input/input0
[6.563280 0.011557] [    1.390715] snvs_rtc 30370000.snvs:snvs-rtc-lp: rtc core: registered 30370000.snvs:snvs- as rtc0
[6.567526 0.004246] [    1.400215] i2c /dev entries driver
[6.582594 0.015068] [    1.406917] 0-003c supply DOVDD not found, using dummy regulator
[6.585242 0.002648] [    1.412985] 0-003c supply DVDD not found, using dummy regulator
[6.588774 0.003532] [    1.419007] 0-003c supply AVDD not found, using dummy regulator
[6.666978 0.078204] [    1.493998] ov5640_read_reg:write reg error:reg=300a
[6.678958 0.011980] [    1.498980] camera ov5640_mipi is not found
[6.680176 0.001218] [    1.504079] mxc-mipi-csi2_yav 30a70000.mipi_csi1: mipi_csi2_probe
[6.683943 0.003767] [    1.510288] CSI: Registered sensor subdevice: mxc-mipi-csi2.0
[6.697473 0.013530] [    1.516119] mxc-mipi-csi2_yav 30a70000.mipi_csi: Remote device at /mipi_csi1@30a70000/port/endpoint1 XXX found
[6.706268 0.008795] [    1.526147] mxc-mipi-csi2_yav 30a70000.mipi_csi1: lanes: 2, name: mxc-mipi-csi2.0
[6.710443 0.004175] [    1.537396] imx2-wdt 30280000.wdog: timeout 60 sec (nowayout=0)
[6.717482 0.007039] [    1.544049] Bluetooth: HCI UART driver ver 2.3
[6.721767 0.004285] [    1.548511] Bluetooth: HCI UART protocol H4 registered
[6.728242 0.006475] [    1.553718] Bluetooth: HCI UART protocol BCSP registered
[6.750829 0.022587] [    1.559043] Bluetooth: HCI UART protocol ATH3K registered
[6.758256 0.007427] [    1.564507] Bluetooth: HCI UART protocol Three-wire (H5) registered
[6.762153 0.003897] [    1.570912] Bluetooth: HCI UART protocol Broadcom registered
[6.766086 0.003933] [    1.576639] Bluetooth: HCI UART protocol QCA registered
[6.776690 0.010604] [    1.583462] sdhci: Secure Digital Host Controller Interface driver
[6.782400 0.005710] [    1.589714] sdhci: Copyright(c) Pierre Ossman
[6.797763 0.015363] [    1.594644] sdhci-pltfm: SDHCI platform and OF driver helper
[6.820983 0.023220] [    1.649797] mmc0: SDHCI controller on 30b40000.usdhc [30b40000.usdhc] using ADMA
[6.827483 0.006500] [    1.657866] sdhci-esdhc-imx 30b50000.usdhc: Got CD GPIO
[6.886235 0.058752] [    1.715073] mmc1: SDHCI controller on 30b50000.usdhc [30b50000.usdhc] using ADMA
[6.897248 0.011013] [    1.727475] ledtrig-cpu: registered to indicate activity on CPUs
[6.903326 0.006078] [    1.734145] caam 30900000.caam: ERA source: CCBVID.
[6.906694 0.003368] [    1.739118] Can't support > 32 bit dma.
[6.919147 0.012453] [    1.745105] caam 30900000.caam: device ID = 0x0a16040100000000 (Era 9)
[6.922905 0.003758] [    1.745105] job rings = 3, qi = 0
[6.923641 0.000736] [    1.755322] Can't support > 32 bit dma.
[6.929357 0.005716] [    1.760412] caam_jr 30901000.jr0: Entropy delay = 3200
[6.941274 0.011917] [    1.765916] Failed to run desc  RNG4 SH0 status (0xfffffff5)
[6.944264 0.002990] [    1.771722] Failed to run desc  RNG4 SH1 status (0xfffffff5)
[6.946371 0.002107] [    1.777453] caam_jr 30901000.jr0: Entropy delay = 3600
[6.990576 0.044205] [    1.821637] mmc0: new HS400 MMC card at address 0001
[6.998812 0.008236] [    1.829053] mmcblk0: mmc0:0001 R1J56L 13.8 GiB
[7.004942 0.006130] [    1.834943] mmcblk0boot0: mmc0:0001 R1J56L partition 1 4.00 MiB
[7.012354 0.007412] [    1.842765] mmcblk0boot1: mmc0:0001 R1J56L partition 2 4.00 MiB
[7.019663 0.007309] [    1.850396] caam_jr 30901000.jr0: Instantiated RNG4 SH0.
[7.025260 0.005597] [    1.850563] mmcblk0rpmb: mmc0:0001 R1J56L partition 3 128 KiB
[7.030385 0.005125] [    1.859476]  mmcblk0: p1 p2
[7.087800 0.057415] [    1.918547] caam_jr 30901000.jr0: Instantiated RNG4 SH1.
[7.102250 0.014450] [    1.924507] Can't support > 32 bit dma.
[7.103853 0.001603] [    1.930552] Can't support > 32 bit dma.
[7.117627 0.013774] [    1.948574] caam algorithms registered in /proc/crypto
[7.127705 0.010078] [    1.958688] caam_jr 30901000.jr0: registering rng-caam
[7.135196 0.007491] [    1.964136] caam 30900000.caam: caam pkc algorithms registered in /proc/crypto
[7.142553 0.007357] [    1.972492] platform caam_sm: blkkey_ex: 2 keystore units available
[7.155397 0.012844] [    1.981122] platform caam_sm: 64-bit clear key:
[7.156599 0.001202] [    1.985683] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[7.165499 0.008900] [    1.991412] platform caam_sm: 64-bit black key:
[7.167585 0.002086] [    1.995958] platform caam_sm: [0000] 51 83 24 ae 3a 2e 97 7b
[7.180061 0.012476] [    2.001687] platform caam_sm: [0008] 2e bd f9 73 86 7b 6b 52
[7.182575 0.002514] [    2.007360] platform caam_sm: 128-bit clear key:
[7.187558 0.004983] [    2.012047] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[7.193150 0.005592] [    2.017722] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
[7.210070 0.016920] [    2.023448] platform caam_sm: 128-bit black key:
[7.212737 0.002667] [    2.028081] platform caam_sm: [0000] d8 59 bb 46 0a 70 54 da
[7.214981 0.002244] [    2.033760] platform caam_sm: [0008] 25 bf 9a 9a 0f 4e 70 ae
[7.233752 0.018771] [    2.039439] platform caam_sm: 192-bit clear key:
[7.236764 0.003012] [    2.044071] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[7.241899 0.005135] [    2.049748] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
[7.245905 0.004006] [    2.055422] platform caam_sm: [0016] 10 11 12 13 14 15 16 17
[7.250522 0.004617] [    2.061093] platform caam_sm: 192-bit black key:
[7.253171 0.002649] [    2.065725] platform caam_sm: [0000] e2 82 91 71 da dd 93 38
[7.257717 0.004546] [    2.071399] platform caam_sm: [0008] 6d c7 ef 25 14 72 7d ab
[7.261191 0.003474] [    2.077074] platform caam_sm: [0016] c7 a3 23 7a 8e a6 51 7a
[7.266498 0.005307] [    2.082749] platform caam_sm: [0024] 3f 71 d3 3d 1f 1e 49 d8
[7.271462 0.004964] [    2.088421] platform caam_sm: 256-bit clear key:
[7.294195 0.022733] [    2.093056] platform caam_sm: [0000] 00 01 02 03 04 0f 06 07
[7.302074 0.007879] [    2.098732] platform caam_sm: [0008] 08 09 0a 0b 0c 0d 0e 0f
[7.309975 0.007901] [    2.104407] platform caam_sm: [0016] 10 11 12 13 14 15 16 17
[7.314473 0.004498] [    2.110085] platform caam_sm: [0024] 18 19 1a 1b 1c 1d 1e 1f
[7.316901 0.002428] [    2.115758] platform caam_sm: 256-bit black key:
[7.318770 0.001869] [    2.120392] platform caam_sm: [0000] b5 7a 37 84 7a 30 4e 2e
[7.321202 0.002432] [    2.126069] platform caam_sm: [0008] ce fa 52 54 6b c5 cb f7
[7.322673 0.001471] [    2.131798] platform caam_sm: [0016] 24 92 d3 a3 b3 6a b5 11
[7.323897 0.001224] [    2.137473] platform caam_sm: [0024] 06 2a 83 fc 1f e7 c9 1f
[7.325686 0.001789] [    2.143146] platform caam_sm: 64-bit unwritten blob:
[7.327683 0.001997] [    2.148129] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[7.330036 0.002353] [    2.153804] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[7.344009 0.013973] [    2.159482] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[7.346023 0.002014] [    2.165157] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[7.347705 0.001682] [    2.170833] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[7.362879 0.015174] [    2.176510] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[7.365100 0.002221] [    2.182183] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[7.366607 0.001507] [    2.187858] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[7.368288 0.001681] [    2.193537] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[7.385285 0.016997] [    2.199210] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[7.387567 0.002282] [    2.204884] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.388941 0.001374] [    2.210559] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.390259 0.001318] [    2.216237] platform caam_sm: 128-bit unwritten blob:
[7.408009 0.017750] [    2.221303] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[7.409540 0.001531] [    2.226980] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[7.410923 0.001383] [    2.232653] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[7.412727 0.001804] [    2.238329] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[7.430302 0.017575] [    2.244003] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[7.432456 0.002154] [    2.249678] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[7.434046 0.001590] [    2.255353] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[7.435503 0.001457] [    2.261027] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[7.452260 0.016757] [    2.266706] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[7.454139 0.001879] [    2.272380] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[7.455314 0.001175] [    2.278054] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.456978 0.001664] [    2.283731] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.479227 0.022249] [    2.289402] platform caam_sm: 196-bit unwritten blob:
[7.490311 0.011084] [    2.294469] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[7.493819 0.003508] [    2.300146] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[7.496566 0.002747] [    2.305819] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[7.498898 0.002332] [    2.311494] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[7.501754 0.002856] [    2.317170] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[7.506660 0.004906] [    2.322842] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[7.509336 0.002676] [    2.328517] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[7.520677 0.011341] [    2.334193] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[7.525761 0.005084] [    2.339869] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[7.531499 0.005738] [    2.345543] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[7.542847 0.011348] [    2.351220] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.553807 0.010960] [    2.356893] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.561622 0.007815] [    2.362565] platform caam_sm: 256-bit unwritten blob:
[7.564667 0.003045] [    2.367635] platform caam_sm: [0000] 00 00 00 00 00 00 00 00
[7.568620 0.003953] [    2.373308] platform caam_sm: [0008] 00 00 00 00 00 00 00 00
[7.572777 0.004157] [    2.378983] platform caam_sm: [0016] 00 00 00 00 00 00 00 00
[7.575124 0.002347] [    2.384660] platform caam_sm: [0024] 00 00 00 00 00 00 00 00
[7.578391 0.003267] [    2.390334] platform caam_sm: [0032] 00 00 00 00 00 00 00 00
[7.580563 0.002172] [    2.396009] platform caam_sm: [0040] 00 00 00 00 00 00 00 00
[7.589391 0.008828] [    2.401684] platform caam_sm: [0048] 00 00 00 00 00 00 00 00
[7.601211 0.011820] [    2.407358] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[7.603696 0.002485] [    2.413034] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[7.610397 0.006701] [    2.418708] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[7.612871 0.002474] [    2.424384] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.620614 0.007743] [    2.430057] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.625844 0.005230] [    2.439138] platform caam_sm: 64-bit black key in blob:
[7.626906 0.001062] [    2.444392] platform caam_sm: [0000] 10 f3 ff 91 bb 0c cb 1a
[7.628602 0.001696] [    2.450068] platform caam_sm: [0008] 39 2f cb 25 0c 9b 7e 17
[7.630359 0.001757] [    2.455743] platform caam_sm: [0016] 32 12 45 3a e8 01 21 9b
[7.632107 0.001748] [    2.461420] platform caam_sm: [0024] fa 68 b3 6c d1 de 02 9e
[7.649616 0.017509] [    2.467094] platform caam_sm: [0032] 2b aa f1 6d a3 c2 a5 ba
[7.653506 0.003890] [    2.472774] platform caam_sm: [0040] 43 bc 73 0b b4 d1 4c 81
[7.656370 0.002864] [    2.478453] platform caam_sm: [0048] 3f 77 4e 4b 14 12 91 ad
[7.671405 0.015035] [    2.484125] platform caam_sm: [0056] 00 00 00 00 00 00 00 00
[7.672965 0.001560] [    2.489801] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[7.674034 0.001069] [    2.495478] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[7.674864 0.000830] [    2.501151] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.693484 0.018620] [    2.506826] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.703244 0.009760] [    2.512499] platform caam_sm: 128-bit black key in blob:
[7.705568 0.002324] [    2.517827] platform caam_sm: [0000] 69 3a 37 ab 59 42 75 46
[7.707720 0.002152] [    2.523502] platform caam_sm: [0008] 9e 36 81 f5 c8 4a e2 45
[7.716179 0.008459] [    2.529177] platform caam_sm: [0016] 73 12 24 31 8d 41 11 62
[7.717608 0.001429] [    2.534852] platform caam_sm: [0024] b2 89 80 da ff 95 b6 e8
[7.719021 0.001413] [    2.540526] platform caam_sm: [0032] fc b2 66 17 d1 fa 12 71
[7.721019 0.001998] [    2.546201] platform caam_sm: [0040] 9c 9a 7a 1d e4 64 3f 55
[7.738189 0.017170] [    2.551877] platform caam_sm: [0048] 0d a9 74 37 70 65 0b 74
[7.740051 0.001862] [    2.557551] platform caam_sm: [0056] 4e 27 0b 4d b6 ff 20 1c
[7.741876 0.001825] [    2.563226] platform caam_sm: [0064] 00 00 00 00 00 00 00 00
[7.743467 0.001591] [    2.568903] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[7.760270 0.016803] [    2.574576] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.761322 0.001052] [    2.580250] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.762298 0.000976] [    2.585925] platform caam_sm: 192-bit black key in blob:
[7.763267 0.000969] [    2.591253] platform caam_sm: [0000] aa 33 1a 73 09 28 3c 3c
[7.782857 0.019590] [    2.596930] platform caam_sm: [0008] 3b 6c ae 51 26 c0 d6 9c
[7.785168 0.002311] [    2.602606] platform caam_sm: [0016] 3d 5c 7c ab c2 b1 00 a9
[7.789122 0.003954] [    2.608282] platform caam_sm: [0024] 9e 1e fd 0b 88 8f 82 25
[7.800013 0.010891] [    2.613958] platform caam_sm: [0032] 22 3d f0 12 45 dd 0c e9
[7.810129 0.010116] [    2.619634] platform caam_sm: [0040] 06 c7 36 15 13 53 89 e2
[7.816199 0.006070] [    2.625310] platform caam_sm: [0048] ab 48 6c 19 bd 6b eb ef
[7.819103 0.002904] [    2.630986] platform caam_sm: [0056] 1c a0 0e 4b 04 46 fa 16
[7.822129 0.003026] [    2.636664] platform caam_sm: [0064] 86 30 3f 3e a8 69 b0 81
[7.828015 0.005886] [    2.642340] platform caam_sm: [0072] 00 00 00 00 00 00 00 00
[7.831673 0.003658] [    2.648016] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.836663 0.004990] [    2.653692] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.849202 0.012539] [    2.659364] platform caam_sm: 256-bit black key in blob:
[7.862777 0.013575] [    2.664696] platform caam_sm: [0000] ab d3 ce e7 af 8b 97 f4
[7.864590 0.001813] [    2.670371] platform caam_sm: [0008] 9c ce dd 9f 65 94 66 8c
[7.867254 0.002664] [    2.676044] platform caam_sm: [0016] f2 24 31 8c ed d2 da 09
[7.869303 0.002049] [    2.681721] platform caam_sm: [0024] 52 16 ef 01 1f b2 b9 2a
[7.873306 0.004003] [    2.687396] platform caam_sm: [0032] 6b c2 f1 98 3e 67 0a 99
[7.876854 0.003548] [    2.693072] platform caam_sm: [0040] 0a de 9b 6f 72 de 7d 4a
[7.879031 0.002177] [    2.698748] platform caam_sm: [0048] 97 bc 74 ec 18 cc ab b9
[7.881580 0.002549] [    2.704424] platform caam_sm: [0056] 13 4b 50 66 a3 57 ee cf
[7.897057 0.015477] [    2.710099] platform caam_sm: [0064] b8 f5 62 4e 57 92 b3 38
[7.910076 0.013019] [    2.715776] platform caam_sm: [0072] 5b 80 a4 a4 f7 ee 04 26
[7.916774 0.006698] [    2.721452] platform caam_sm: [0080] 00 00 00 00 00 00 00 00
[7.918740 0.001966] [    2.727133] platform caam_sm: [0088] 00 00 00 00 00 00 00 00
[7.923855 0.005115] [    2.735723] platform caam_sm: restored 64-bit black key:
[7.926864 0.003009] [    2.741057] platform caam_sm: [0000] d8 43 d1 60 b9 1b f1 ee
[7.929443 0.002579] [    2.746734] platform caam_sm: [0008] 2c c7 e4 46 69 6c d8 99
[7.932023 0.002580] [    2.752410] platform caam_sm: restored 128-bit black key:
[7.934610 0.002587] [    2.757826] platform caam_sm: [0000] d8 59 bb 46 0a 70 54 da
[7.949929 0.015319] [    2.763502] platform caam_sm: [0008] 25 bf 9a 9a 0f 4e 70 ae
[7.953064 0.003135] [    2.769172] platform caam_sm: restored 192-bit black key:
[7.953996 0.000932] [    2.774588] platform caam_sm: [0000] e2 82 91 71 da dd 93 38
[7.954869 0.000873] [    2.780264] platform caam_sm: [0008] 6d c7 ef 25 14 72 7d ab
[7.972331 0.017462] [    2.785939] platform caam_sm: [0016] 7a 5d 1e 28 90 8d d3 fa
[7.975813 0.003482] [    2.791615] platform caam_sm: [0024] d8 13 8b 87 92 67 24 f3
[7.993026 0.017213] [    2.797288] platform caam_sm: restored 256-bit black key:
[7.994273 0.001247] [    2.802703] platform caam_sm: [0000] b5 7a 37 84 7a 30 4e 2e
[7.996997 0.002724] [    2.808378] platform caam_sm: [0008] ce fa 52 54 6b c5 cb f7
[7.997928 0.000931] [    2.814054] platform caam_sm: [0016] 24 92 d3 a3 b3 6a b5 11
[7.998958 0.001030] [    2.819730] platform caam_sm: [0024] 06 2a 83 fc 1f e7 c9 1f
[7.999882 0.000924] [    2.825710] caam-snvs 30370000.caam-snvs: can't get snvs clock
[8.003159 0.003277] [    2.831607] caam-snvs 30370000.caam-snvs: violation handlers armed - non-secure state
[8.021246 0.018087] [    2.841141] usbcore: registered new interface driver usbhid
[8.025281 0.004035] [    2.846730] usbhid: USB HID core driver
[8.030989 0.005708] [    2.862660] ak5558 1-0013: ak5558_i2c_probe(748)
[8.064079 0.033090] [    2.893401] imx-wm8524 sound-wm8524: wm8524-hifi <-> 308b0000.sai mapping ok
[8.076116 0.012037] [    2.900555] wm8524-codec wm8524: Supported sample rate: 192000Hz
[8.077322 0.001206] [    2.906580] wm8524-codec wm8524: Supported sample rate: 96000Hz
[8.088105 0.010783] [    2.912595] wm8524-codec wm8524: Supported sample rate: 48000Hz
[8.090279 0.002174] [    2.918533] wm8524-codec wm8524: Supported sample rate: 32000Hz
[8.098527 0.008248] [    2.927156] imx-spdif sound-spdif: snd-soc-dummy-dai <-> 30810000.spdif mapping ok
[8.107659 0.009132] [    2.936157] imx-spdif sound-hdmi-arc: snd-soc-dummy-dai <-> 308a0000.spdif mapping ok
[8.118024 0.010365] [    2.947067] imx-cdnhdmi sound-hdmi: hdmi-hifi.0 <-> 30050000.sai mapping ok
[8.138259 0.020235] [    2.961836] ak4458 1-0010: ASoC: failed to probe component -6
[8.140403 0.002144] [    2.967740] imx-ak4458 sound-ak4458: ASoC: failed to instantiate card -6
[8.147088 0.006685] [    2.974757] imx-ak4458 sound-ak4458: snd_soc_register_card failed (-6)
[8.149979 0.002891] [    2.982957] random: fast init done
[8.173964 0.023985] [    2.997810] ak5558 1-0013: ASoC: failed to probe component -6
[8.175640 0.001676] [    3.003633] imx-ak5558 sound-ak5558: ASoC: failed to instantiate card -6
[8.180703 0.005063] [    3.010476] imx-ak5558 sound-ak5558: snd_soc_register_card failed (-6)
[8.186419 0.005716] [    3.018059] NET: Registered protocol family 26
[8.190867 0.004448] [    3.022698] NET: Registered protocol family 17
[8.197977 0.007110] [    3.027280] can: controller area network core (rev 20120528 abi 9)
[8.204099 0.006122] [    3.033647] NET: Registered protocol family 29
[8.211953 0.007854] [    3.038203] can: raw protocol (rev 20120528)
[8.213610 0.001657] [    3.042522] can: broadcast manager protocol (rev 20161123 t)
[8.217909 0.004299] [    3.048299] can: netlink gateway (rev 20130117) max_hops=1
[8.223282 0.005373] [    3.054677] Bluetooth: RFCOMM TTY layer initialized
[8.242942 0.019660] [    3.059622] Bluetooth: RFCOMM socket layer initialized
[8.250268 0.007326] [    3.064819] Bluetooth: RFCOMM ver 1.11
[8.254043 0.003775] [    3.068620] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[8.258532 0.004489] [    3.073980] Bluetooth: BNEP filters: protocol multicast
[8.261011 0.002479] [    3.079321] Bluetooth: BNEP socket layer initialized
[8.263241 0.002230] [    3.084344] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[8.272055 0.008814] [    3.090380] Bluetooth: HIDP socket layer initialized
[8.274049 0.001994] [    3.095505] 9pnet: Installing 9P2000 support
[8.275850 0.001801] [    3.100042] Key type dns_resolver registered
[8.277807 0.001957] [    3.105539] registered taskstats version 1
[8.305827 0.028020] [    3.137442] cpu cpu0: registered imx8mq-cpufreq
[8.314026 0.008199] [    3.143421] 33800000.pcie supply epdev_on not found, using dummy regulator
[8.327649 0.013623] [    3.150952] OF: PCI: host bridge /pcie@0x33800000 ranges:
[8.331093 0.003444] [    3.156405] OF: PCI:   No bus range found for /pcie@0x33800000, using [bus 00-ff]
[8.345044 0.013951] [    3.164001] OF: PCI:    IO 0x1ff80000..0x1ff8ffff -> 0x00000000
[8.352262 0.007218] [    3.169976] OF: PCI:   MEM 0x18000000..0x1fefffff -> 0x18000000
[8.431195 0.078933] [    3.250892] imx6q-pcie 33800000.pcie: Speed change timeout
[8.436299 0.005104] [    3.256419] imx6q-pcie 33800000.pcie: Roll back to GEN1 link!
[8.461404 0.025105] [    3.262210] imx6q-pcie 33800000.pcie: Link up, Gen1
[8.473655 0.012251] [    3.269153] imx6q-pcie 33800000.pcie: PCI host bridge to bus 0000:00
[8.479678 0.006023] [    3.275570] pci_bus 0000:00: root bus resource [bus 00-ff]
[8.481715 0.002037] [    3.281160] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[8.488504 0.006789] [    3.287386] pci_bus 0000:00: root bus resource [mem 0x18000000-0x1fefffff]
[8.493653 0.005149] [    3.310718] pci 0000:00:00.0: BAR 14: assigned [mem 0x18000000-0x181fffff]
[8.497388 0.003735] [    3.317656] pci 0000:00:00.0: BAR 0: assigned [mem 0x18200000-0x182fffff]
[8.507432 0.010044] [    3.324508] pci 0000:00:00.0: BAR 6: assigned [mem 0x18300000-0x1830ffff pref]
[8.513855 0.006423] [    3.331848] pci 0000:01:00.0: BAR 0: assigned [mem 0x18000000-0x181fffff 64bit]
[8.519210 0.005355] [    3.339401] pci 0000:00:00.0: PCI bridge to [bus 01]
[8.526467 0.007257] [    3.344487] pci 0000:00:00.0:   bridge window [mem 0x18000000-0x181fffff]
[8.547762 0.021295] [    3.352018] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
[8.549860 0.002098] [    3.359035] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[8.552864 0.003004] [    3.370972] ath10k_pci 0000:01:00.0: enabling device (0000 -> 0002)
[8.562309 0.009445] [    3.378176] ath10k_pci 0000:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
[8.693581 0.131272] [    3.522562] 33c00000.pcie supply epdev_on not found, using dummy regulator
[8.699471 0.005890] [    3.529957] OF: PCI: host bridge /pcie@0x33c00000 ranges:
[8.703239 0.003768] [    3.535412] OF: PCI:   No bus range found for /pcie@0x33c00000, using [bus 00-ff]
[8.718922 0.015683] [    3.542965] OF: PCI:    IO 0x27f80000..0x27f8ffff -> 0x00000000
[8.724046 0.005124] [    3.548941] OF: PCI:   MEM 0x20000000..0x27efffff -> 0x20000000
[8.834195 0.110149] [    3.663958] ath10k_pci 0000:01:00.0: Falling back to user helper
[8.994152 0.159957] [    3.818963] imx6q-pcie 33c00000.pcie: phy link never came up
[9.002126 0.007974] [    3.824673] imx6q-pcie 33c00000.pcie: Link never came up
[9.006757 0.004631] [    3.830074] imx6q-pcie 33c00000.pcie: failed to initialize host
[9.010153 0.003396] [    3.836043] imx6q-pcie 33c00000.pcie: unable to add pcie port.
[9.060659 0.050506] [    3.842145] imx6q-pcie: probe of 33c00000.pcie failed with error -110
[9.077358 0.016699] [    3.904933] update hantro voltage from 900 mV to 1000 mV
[9.083375 0.006017] [    3.911952] hantrodec: module inserted. Major = -1
[9.098301 0.014926] [    3.918402] snvs_rtc 30370000.snvs:snvs-rtc-lp: setting system clock to 1970-01-01 00:02:49 UTC (169)
[9.101265 0.002964] [    3.929317] VSD_3V3: disabling
[9.101827 0.000562] [    3.932512] gpio_dvfs: disabling
[9.104689 0.002862] [    3.936274] SW1AB: disabling
[9.106829 0.002140] [    3.939662] VGEN1: disabling
[9.109795 0.002966] [    3.943203] VGEN6: disabling
[9.128359 0.018564] [    3.946788] dhd_module_init in
[9.132116 0.003757] [    3.950087] bcmdhd_wlan@0 supply wlreg_on not found, using dummy regulator
[9.134453 0.002337] [    3.957154] No Broadcom PCI device enumerated!
[9.135003 0.000550] [    3.961749] dhd_wifi_platform_load_pcie: pcie_register_driver failed
[9.138184 0.003181] [    3.968167] bcmdhd_wlan: probe of bcmdhd_wlan@0 failed with error -1
[9.147709 0.009525] [    3.974688] dhd_module_init out
[9.148273 0.000564] [    3.977843] ALSA device list:
[9.148562 0.000289] [    3.980816]   #0: wm8524-audio
[9.156943 0.008381] [    3.984109]   #1: imx-spdif
[9.157532 0.000589] [    3.986919]   #2: imx-hdmi-arc
[9.158423 0.000891] [    3.990035]   #3: imx-audio-hdmi
[9.171771 0.013348] [    4.000516] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem
[9.286207 0.114436] [    4.117273] EXT4-fs (mmcblk0p2): recovery complete
[9.295607 0.009400] [    4.123481] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
[9.305843 0.010236] [    4.131668] VFS: Mounted root (ext3 filesystem) on device 179:2.
[9.313083 0.007240] [    4.140669] devtmpfs: mounted
[9.318319 0.005236] [    4.143974] Freeing unused kernel memory: 1088K
[9.400557 0.082238] [    4.229721] systemd[1]: System time before build time, advancing clock.
[9.429725 0.029168] [    4.260805] NET: Registered protocol family 10
[9.458552 0.028827] [    4.276491] systemd[1]: systemd 230 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[9.499593 0.041041] [    4.294979] systemd[1]: Detected architecture arm64.
[9.503808 0.004215]
[9.504802 0.000994] Welcome to NXP i.MX Release Distro 4.9.51-mx8-ga (morty)!
[9.509492 0.004690]
[9.509620 0.000128] [    4.318089] systemd[1]: Set hostname to <imx8mqevk>.
[9.622269 0.112649] [    4.449253] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[9.646255 0.023986] [  OK  ] Started Forward Password Requests to Wall Directory Watch.
[9.656847 0.010592] [    4.474602] systemd[1]: Created slice User and Session Slice.
[9.676315 0.019468] [  OK  ] Created slice User and Session Slice.
[9.681686 0.005371] [    4.493949] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[9.686290 0.004604] [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
[9.692266 0.005976] [    4.517880] systemd[1]: Listening on Syslog Socket.
[9.694315 0.002049] [  OK  ] Listening on Syslog Socket.
[9.705779 0.011464] [    4.533812] systemd[1]: Reached target Paths.
[9.708161 0.002382] [  OK  ] Reached target Paths.
[9.724533 0.016372] [    4.549835] systemd[1]: Reached target Remote File Systems.
[9.728618 0.004085] [  OK  ] Reached target Remote File Systems.
[9.745044 0.016426] [    4.569890] systemd[1]: Listening on Journal Socket (/dev/log).
[9.746686 0.001642] [  OK  ] Listening on Journal Socket (/dev/log).
[9.758689 0.012003] [  OK  ] Listening on udev Control Socket.
[9.769429 0.010740] [  OK  ] Reached target Swap.
[9.782632 0.013203] [  OK  ] Created slice System Slice.
[9.795007 0.012375] [  OK  ] Created slice system-getty.slice.
[9.807839 0.012832] [  OK  ] Created slice system-serial\x2dgetty.slice.
[9.817536 0.009697] [  OK  ] Reached target Slices.
[9.832148 0.014612] [  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
[9.847354 0.015206] [  OK  ] Listening on Journal Audit Socket.
[9.858554 0.011200] [  OK  ] Listening on Journal Socket.
[9.874383 0.015829]          Starting Create list of required st... nodes for the current kernel...
[9.890896 0.016513]          Starting Journal Service...
[9.912458 0.021562]          Starting Load Kernel Modules...
[9.933737 0.021279]          Starting Setup Virtual Console..[    4.762109] galcore: loading out-of-tree module taints kernel.
[9.938968 0.005231] .
[9.945264 0.006296] [    4.775115] galcore: clk_get 2d core clock failed, disable 2d/vg!
[9.950332 0.005068] [    4.781335] Galcore version 6.2.4.150331
[9.965577 0.015245]          Mounting Huge Pages File System...
[9.980311 0.014734]          Mounting Temporary Directory...
[9.986649 0.006338]          Mounting Debug File System...
[10.006076 0.019427]          Starting Remount Root and Kernel File Systems...
[10.014335 0.008259] [    4.844611] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
[10.023228 0.008893] [  OK  ] Listening on udev Kernel Socket.
[10.036216 0.012988]          Mounting POSIX Message Queue File System...
[10.058699 0.022483] [  OK  ] Mounted POSIX Message Queue File System.
[10.079374 0.020675] [  OK  ] Mounted Debug File System.
[10.091213 0.011839] [  OK  ] Mounted Huge Pages File System.
[10.101285 0.010072] [  OK  ] Mounted Temporary Directory.
[10.123311 0.022026] [  OK  ] Started Journal Service.
[10.131910 0.008599] [  OK  ] Started Create list of required sta...ce nodes for the current kernel.
[10.139516 0.007606] [  OK  ] Started Load Kernel Modules.
[10.155658 0.016142] [  OK  ] Started Setup Virtual Console.
[10.173341 0.017683] [  OK  ] Started Remount Root and Kernel File Systems.
[10.194625 0.021284]          Starting udev Coldplug all Devices...
[10.208501 0.013876]          Starting Apply Kernel Variables...
[10.224884 0.016383]          Mounting Configuration File System...
[10.241610 0.016726]          Starting Create Static Device Nodes in /dev...
[10.258209 0.016599]          Starting Flush Journal to Persistent Storage...
[10.283359 0.025150] [  OK  ] Mounted Configuration File System.
[10.291807 0.008448] [  OK  ] Started Apply Kernel Variables.
[10.308704 0.016897] [  OK  ] Started Create Static Device Nodes in /dev.
[10.330607 0.021903] [    5.158415] systemd-journald[1685]: Received request to flush runtime journal from PID 1
[10.346568 0.015961] [  OK  ] Reached target Local File Systems (Pre).
[10.354993 0.008425]          Mounting /var/volatile...
[10.360054 0.005061]          Starting udev Kernel Device Manager...
[10.376871 0.016817] [  OK  ] Mounted /var/volatile.
[10.394387 0.017516] [  OK  ] Started Flush Journal to Persistent Storage.
[10.412982 0.018595]          Starting Load/Save Random Seed...
[10.421777 0.008795] [  OK  ] Reached target Local File Systems.
[10.433044 0.011267]          Starting Create Volatile Files and Directories...
[10.448447 0.015403] [  OK  ] Started udev Kernel Device Manager.
[10.463693 0.015246] [  OK  ] Started Load/Save Random Seed.
[10.480942 0.017249] [  OK  ] Started Create Volatile Files and Directories.
[10.500095 0.019153]          Starting Update UTMP about System Boot/Shutdown...
[10.512938 0.012843]          Starting Network Time Synchronization...
[10.529310 0.016372] [  OK  ] Started udev Coldplug all Devices.
[10.547845 0.018535]          Starting Start Psplash Boot Screen...
[10.567773 0.019928] [  OK  ] Started Update UTMP about System Boot/Shutdown.
[10.580510 0.012737] [  OK  ] Started Start Psplash Boot Screen.
[10.620171 0.039661] [  OK  ] Started Network Time Synchronization.
[10.637340 0.017169] [  OK  ] Reached target System Initialization.
[10.656445 0.019105] [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[10.675082 0.018637] [  OK  ] Listening on RPCbind Server Activation Socket.[    5.503400] ath10k_pci 0000:01:00.0: Falling back to user helper
[10.693053 0.017971]
[10.695347 0.002294] [  OK  ] Listening on dropbear.socket.
[10.710070 0.014723] [  OK  ] Started Daily Cleanup of Temporary Directories.
[10.722113 0.012043] [  OK  ] Reached target Timers.
[10.738925 0.016812]          Starting Console System Startup Logging...
[10.752747 0.013822] [  OK  ] Listening on D-Bus System Message Bus Socket.
[10.766318 0.013571] [  OK  ] Reached target Sockets.
[10.779952 0.013634] [  OK  ] Reached target Basic System.
[10.792664 0.012712] [  OK  ] Started Updates psplash to basic.
[10.807960 0.015296] [  OK  ] Started Job spooling tools.
[10.824398 0.016438] [  OK  ] Started System Logging Service.
[10.861258 0.036860] [  OK  ] Started Periodic Command Scheduler.
[10.878989 0.017731] [    5.705665] ath10k_pci 0000:01:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 0000:0000
[10.889825 0.010836] [    5.716760] ath10k_pci 0000:01:00.0: kconfig debug 0 debugfs 1 tracing 0 dfs 0 testmode 0
[10.905035 0.015210] [    5.718194] ath10k_pci 0000:01:00.0: firmware ver WLAN.RM.4.4.1-00051-QCARMSWP-1 api 6 features wowlan,ignore-otp crc32 c3fd4411
[10.916531 0.011496]          Starting Login Service...
[10.921859 0.005328] [  OK  ] Started Kernel Logging Service.
[10.943722 0.021863]          Starting Telephony service...
[10.955809 0.012087] [    5.781078] ath10k_pci 0000:01:00.0: board id is not exist in otp, ignore it
[10.968567 0.012758] [  OK  ] Started D-Bus System Message Bus.
[10.978854 0.010287] [    5.807343] ath10k_pci 0000:01:00.0: board_file api 1 bmi_id N/A crc32 a596a4ea
[11.111763 0.132909] [  OK  ] Started Telephony service.
[11.124340 0.012577]          Starting Avahi mDNS/DNS-SD Stack...
[11.140241 0.015901]          Starting Connection service...
[11.150535 0.010294] [    5.976462] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[11.159095 0.008560]          Starting Network Time Service (one-shot ntpdate mode)...
[11.174653 0.015558] [  OK  ] Started Configuration for i.MX GPU (Former rc_gpu.S).
[11.187806 0.013153] [  OK  ] Reached target System Time Synchronized.
[11.204828 0.017022] [  OK  ] Started Console System Startup Logging.
[11.226834 0.022006] [  OK  ] Started Network Time Service (one-shot ntpdate mode).
[11.244129 0.017295] [  OK  ] Found device /dev/ttymxc0.
[11.316948 0.072819] [  OK  ] Started Avahi mDNS/DNS-SD Stack.
[11.331800 0.014852] [  OK  ] Started Connection service.
[11.342899 0.011099] [  OK  ] Started Login Service.
[11.362326 0.019427]          Starting Hostname Service...
[11.376147 0.013821]          Starting WPA supplicant...
[11.382805 0.006658]          Starting Save/Restore Sound Card State...
[11.421785 0.038980] [    6.244485] Atheros 8031 ethernet 30be0000.etherne:00: attached PHY driver [Atheros 8031 ethernet] (mii_bus:phy_addr=30be0000.etherne:00, irq=-1)
[11.433529 0.011744] [  OK  [    6.258503] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[11.440933 0.007404] ] Started Save/Restore Sound Card State.
[11.446770 0.005837] [  OK  ] Started WPA supplicant.
[11.459480 0.012710] [  OK  ] Reached target Network.
[11.474686 0.015206]          Starting /etc/rc.local Compatibility...
[11.490048 0.015362] [  OK  ] Started Update psplash to network.
[11.508071 0.018023]          Starting Terminate Psplash Boot Screen...
[11.523558 0.015487]          Starting Permit User Sessions...
[11.538496 0.014938] [  OK  ] Reached target Sound Card.
[11.555803 0.017307] [  OK  ] Started /etc/rc.local Compatibility.
[11.569662 0.013859] [  OK  ] Started Terminate Psplash Boot Screen.
[11.584222 0.014560] [  OK  ] Started Permit User Sessions.
[11.594706 0.010484] [  OK  ] Started Hostname Service.
[11.614662 0.019956]          Starting Weston Wayland Compositor (on tty7)...
[11.629107 0.014445] [  OK  ] Started Serial Getty on ttymxc0.
[11.644679 0.015572] [  OK  ] Started Getty on tty1.
[11.659110 0.014431] [  OK  ] Reached target Login Prompts.
[11.712568 0.053458] [  OK  ] Started Weston Wayland Compositor (on tty7).
[11.750585 0.038017] [  OK  ] Reached target Multi-User System.
[11.769659 0.019074]          Starting Update UTMP about System Runlevel Changes...
[11.792374 0.022715] [  OK  ] Created slice User Slice of root.
[11.820315 0.027941]          Starting User Manager for UID 0...
[11.839941 0.019626] [    6.662486] audit: type=1006 audit(1525314493.431:2): pid=3029 uid=0 old-auid=4294967295 auid=0 tty=(none) old-ses=4294967295 ses=1 res=1
[11.864342 0.024401] [  OK  ] Started Update UTMP about System Runlevel Changes.
[11.876209 0.011867] [  OK  ] Started Session c1 of user root.
[11.890510 0.014301] [  OK  ] Started User Manager for UID 0.
[12.910573 1.020063]
[12.923678 0.013105] NXP i.MX Release Distro 4.9.51-mx8-ga imx8mqevk ttymxc0
[12.926753 0.003075]
[12.936404 0.009651] imx8mqevk login:

imx8mq-evk快速启动-方案讨论,准备工作相关推荐

  1. imx8mq-evk快速启动-bootloader时间优化(eMMC启动)

    一.imx8mq的bootloader分析 关于imx8mq的bootloader系列,可以参考前面的三篇文章 imx8mq - u-boot-spl启动分析 imx8mq - bootloader编 ...

  2. linux 低功耗运行,关于Linux的快速启动(fastboot)和低功耗(low power)的学习记录...

    我今天想查一下Intel工程师放在CSDN的一个视频,名字倒是查出来叫:Moblin系统的快速启动核心技术剖析,但是怎么找也找不找了.这是一个 好的技术介绍.难道给删除了.不知道CSDN是否上次查图片 ...

  3. 论汽车车机快速启动与开机动画、倒车影像三者关系

    在讨论此问题之前,我们先来讨论下软件系统的性能与稳定性的重要性.以及其两者之间的关系.     首先市场上的消费者大体有两种,一种是初级消费者,他们大多对整个产品的软件需求点不明确,从而会更注重硬件上 ...

  4. 安装Linux双系统取消快速启动,为什么在双启动时禁用Windows 8上的快速启动?

    问题描述 如果你和Ubuntu一起安装,为什么每个人都一直提到在Windows 8上禁用快速启动?是仅针对UEFI计算机推荐的内容还是对旧版BIOS计算机的建议?是因为它使Windows分区无法从Li ...

  5. 大型银行敏捷DevOps转型之快速启动

    中国银行业敏捷转型之大幕已经拉开,"5+12"银行都在大力推进.敏捷与DevOps(研发运营一体化)被理解为相互独立又相互融合的两个概念,在银行业已成燎原之势.在主导和参与了多家大 ...

  6. docker 测试mysql_Mac上使用Docker快速启动MySQL测试

    本文主要讨论如何使用Docker快速启动 MySQL 测试,包括Mac环境. 近来业界有很多对Docker的讨论,其生态系统发展得很快,然而,从简单的"入门"或"引导&q ...

  7. mac mysql docker_Mac上使用Docker如何快速启动MySQL测试

    本文主要讨论使用docker快速启动 MySQL 测试的方法,包括Mac环境.一起看看吧! 近来业界有很多对Docker的讨论,其生态系统发展得很快,然而,从简单的"入门"或&qu ...

  8. SharePoint 2010 如何隐藏快速启动栏,顶部导航及Ribbon菜单

    新建Application页面默认会显示快速启动栏,顶部导航及Ribbon菜单.如果你想在对话框框架(Dialog Framework)里打开该application页面,这些东西会占用很多空间,让你 ...

  9. 硬件nat关闭还是开启_「Windows」到底要不要开启“快速启动”,有没有副作用?...

    前言: 我记得自win8以来,在电源管理里面就有个快速启动选项,开机4-6秒不是梦啊,那么问题来了,装个win10系统平均会占用20-30G的内存,如果不是固态硬盘,为何仅仅几秒钟就读取完系统后就开机 ...

最新文章

  1. 前端Vue学习之路(四)axios请求数据
  2. centos 6.8 x86_64下autoconf版本升级到2.69
  3. Intel 的 MKL是可以用来训练的——官方的实验也提到了训练
  4. java冒泡排序_JAVA实现经典排序算法(冒泡排序、选择排序、插入排序、希尔排序、堆排序、归并排序、快速排序)...
  5. 物料凭证不产生会计凭证的几种情况
  6. break与continue的区别【图解】(简洁明了)
  7. ASP.NET Core快速入门(第3章:依赖注入)--学习笔记
  8. mysql 数据库设计规范_MYSQL数据库设计规范与原则
  9. 向右滑动返回Activity
  10. MATLAB————用reshape()函数将矩阵转换为张量
  11. 【C/C++】C++98基础上的C++11新特性
  12. IOS创建静态库Cocoa Touch Static Library
  13. Spring IOP 面向切面编程
  14. 力扣5.8每日一题——状压dp
  15. Linux重启tomcat服务
  16. 图像增强算法Python实现之Retinex(含代码)
  17. 抖音最火的微信推送教程
  18. WIN10一键开启所有服务
  19. 每日分享 环境报错:Exception in thread “main“ java.lang.RuntimeException: Cannot create staging directory
  20. 如何使用万能的钢笔抠图

热门文章

  1. 如何安装pypi下载的包
  2. 动态规划----最长子序列
  3. a-table的数据内容特定处换行处理
  4. 联想小新padpro12.6 #Q706F 解锁输入TWRP教程
  5. post提交数据返回404错误
  6. mysql联合索引如何创建
  7. 电大计算机基础光盘电脑安装,电大《计算机应用技术基础》第一章 计算机的硬件安装...
  8. 人脸识别中的活体检测算法
  9. matlab中a2=poly(p2),插值与拟合matlab实现
  10. pageX,clientX区别