FT2000+模块在麒麟系统下串口输出功能调试

FT2000+芯片自带串口,于是模块可以通过前出CPU串口登录系统,查看系统IP地址等信息,在网络故障时方便用户进行问题定位。

打开串口功能需要在系统下配置两个地方

1、需要修改/boot/grub.cfg,在启动选项中增加

console=ttyS0,115200 debug loglevel=7 earlycon=uart8250,mmio32,0x80028001000

完整grub.cfg如下

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
 
### BEGIN /etc/grub.d/00_header ###
set prefix="/grub"
set have_grubenv=true
load_env
set timeout="5"
font=$prefix/fonts/unicode.pf2
insmod font
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
### END /etc/grub.d/00_header ###
 
### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###
 
### BEGIN /etc/grub.d/07_kylin_theme ###
set color_normal=white/black
set color_highlight=black/light-gray
### END /etc/grub.d/07_kylin_theme ###
 
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Kylin 4.0.2 4.4.131-20200704.kylin.server-generic' --class kylin --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-665ebab1-4d3d-4c78-aa83-7fc9fff66936' {
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos1'
    search --no-floppy --fs-uuid --set=root b8d3c6b1-07fd-40eb-921b-5a7838a477dd
        linux   /uImage-4.4.131-20200704.kylin.server-generic root=UUID=665ebab1-4d3d-4c78-aa83-7fc9fff66936 rw  quiet splash pcie_aspm=off console=ttyS0,115200 loglevel=7 earlycon=uart8250,mmio32,0x80028001000 resume=UUID=ee9bfdf2-5619-4cd7-9864-731309829d3b rootdelay=10 KEYBOARDTYPE=pc KEYTABLE=us security= audit=0
    initrd  /initrd.img-4.4.131-20200704.kylin.server-generic
        devicetree /dtb-4.4.131-20200704.kylin.server-generic/device-tree/phytium/ft2000plus.dtb
}
submenu 'Advanced options for Kylin 4.0.2' $menuentry_id_option 'gnulinux-advanced-665ebab1-4d3d-4c78-aa83-7fc9fff66936' {
    menuentry 'Kylin 4.0.2, with Linux 4.4.131-20200704.kylin.server-generic' --class kylin --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.131-20200704.kylin.server-generic-advanced-665ebab1-4d3d-4c78-aa83-7fc9fff66936' {
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos1'
        search --no-floppy --fs-uuid --set=root b8d3c6b1-07fd-40eb-921b-5a7838a477dd
            linux   /uImage-4.4.131-20200704.kylin.server-generic root=UUID=665ebab1-4d3d-4c78-aa83-7fc9fff66936 rw  quiet splash pcie_aspm=off console=ttyS0,115200 loglevel=7 earlycon=uart8250,mmio32,0x80028001000 resume=UUID=ee9bfdf2-5619-4cd7-9864-731309829d3b rootdelay=10 KEYBOARDTYPE=pc KEYTABLE=us security= audit=0
        initrd  /initrd.img-4.4.131-20200704.kylin.server-generic
            devicetree /dtb-4.4.131-20200704.kylin.server-generic/device-tree/phytium/ft2000plus.dtb
    }
    menuentry 'Kylin 4.0.2, with Linux 4.4.131-20200704.kylin.server-generic (recovery mode)' --class kylin --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.131-20200704.kylin.server-generic-recovery-665ebab1-4d3d-4c78-aa83-7fc9fff66936' {
        insmod part_msdos
        insmod ext2
        set root='hd0,msdos1'
        search --no-floppy --fs-uuid --set=root b8d3c6b1-07fd-40eb-921b-5a7838a477dd
            linux   /uImage-4.4.131-20200704.kylin.server-generic root=UUID=665ebab1-4d3d-4c78-aa83-7fc9fff66936 rw single nomodeset console=tty1  security= audit=0
        initrd  /initrd.img-4.4.131-20200704.kylin.server-generic
            devicetree /dtb-4.4.131-20200704.kylin.server-generic/device-tree/phytium/ft2000plus.dtb
    }
}
 
### END /etc/grub.d/10_linux ###
 
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
 
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
 
### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###
 
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
 
### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

2、启用tty服务

systemctl unmask serial-getty@ttyS0.service
systemctl start serial-getty@ttyS0.service
systemctl status serial-getty@ttyS0.service

系统重启后就能看到串口输出系统启动信息了

[    0.000000][ 0] Booting Linux on physical CPU 0x0
[    0.000000][ 0] Initializing cgroup subsys cpuset
[    0.000000][ 0] Initializing cgroup subsys cpu
[    0.000000][ 0] Initializing cgroup subsys cpuacct
[    0.000000][ 0] Linux version 4.4.131-20200704.kylin.server-generic (YHKYLIN-OS@Kylin) (gcc version 5.5.0 20171010 (Ubuntu/Linaro 5.5.0-12ubuntu1~16.04) ) #kylin SMP Sat Jul 4 19:29:27 CST 2020 (KYLINOS 4.4.131-20200704.kylin-generic 4.4.131)
[    0.000000][ 0] Boot CPU: AArch64 Processor [701f6622]
[    0.000000][ 0] Ignoring memory block 0x0 - 0x20000000
[    0.000000][ 0] earlycon: Early serial console at MMIO32 0x80028001000 (options '')
[    0.000000][ 0] bootconsole [uart0] enabled
[    0.000000][ 0] efi: Getting EFI parameters from FDT:
[    0.000000][ 0] efi: UEFI not found.
[    0.000000][ 0] OF: NUMA: parsing numa-distance-map-v1
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x80ffffd300-0x80ffffffff]
[    0.000000][ 0] Initmem setup node 1 [<memory-less node>]
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x680fffcd300-0x680fffcffff]
[    0.000000][ 0] NUMA: NODE_DATA(1) on node 6
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x280ffffd300-0x280ffffffff]
[    0.000000][ 0] Initmem setup node 3 [<memory-less node>]
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x680fffca600-0x680fffcd2ff]
[    0.000000][ 0] NUMA: NODE_DATA(3) on node 6
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x480ffffd300-0x480ffffffff]
[    0.000000][ 0] Initmem setup node 5 [<memory-less node>]
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x680fffc7900-0x680fffca5ff]
[    0.000000][ 0] NUMA: NODE_DATA(5) on node 6
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x680fffc4c00-0x680fffc78ff]
[    0.000000][ 0] Initmem setup node 7 [<memory-less node>]
[    0.000000][ 0] NUMA: NODE_DATA [mem 0x680fffc1f00-0x680fffc4bff]
[    0.000000][ 0] NUMA: NODE_DATA(7) on node 6
[    0.000000][ 0] Zone ranges:
[    0.000000][ 0]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000][ 0]   Normal   [mem 0x0000000100000000-0x00000680ffffffff]
[    0.000000][ 0] Movable zone start for each node
[    0.000000][ 0] Early memory node ranges
[    0.000000][ 0]   node   0: [mem 0x0000000080000000-0x00000000fbffffff]
[    0.000000][ 0]   node   0: [mem 0x0000008000000000-0x00000080ffffffff]
[    0.000000][ 0]   node   2: [mem 0x0000020000000000-0x00000200ffffffff]
[    0.000000][ 0]   node   2: [mem 0x0000028000000000-0x00000280ffffffff]
[    0.000000][ 0]   node   4: [mem 0x0000040000000000-0x00000400ffffffff]
[    0.000000][ 0]   node   4: [mem 0x0000048000000000-0x00000480ffffffff]
[    0.000000][ 0]   node   6: [mem 0x0000060000000000-0x00000600ffffffff]
[    0.000000][ 0]   node   6: [mem 0x0000068000000000-0x00000680ffffffff]
[    0.000000][ 0] Initmem setup node 0 [mem 0x0000000080000000-0x00000080ffffffff]
[    0.000000][ 0] Could not find start_pfn for node 1
[    0.000000][ 0] Initmem setup node 1 [mem 0x0000000000000000-0x0000000000000000]
[    0.000000][ 0] Initmem setup node 2 [mem 0x0000020000000000-0x00000280ffffffff]
[    0.000000][ 0] Could not find start_pfn for node 3
[    0.000000][ 0] Initmem setup node 3 [mem 0x0000000000000000-0x0000000000000000]
[    0.000000][ 0] Initmem setup node 4 [mem 0x0000040000000000-0x00000480ffffffff]
[    0.000000][ 0] Could not find start_pfn for node 5
[    0.000000][ 0] Initmem setup node 5 [mem 0x0000000000000000-0x0000000000000000]
[    0.000000][ 0] Initmem setup node 6 [mem 0x0000060000000000-0x00000680ffffffff]
[    0.000000][ 0] Could not find start_pfn for node 7
[    0.000000][ 0] Initmem setup node 7 [mem 0x0000000000000000-0x0000000000000000]
[    0.000000][ 0] psci: probing for conduit method from DT.
[    0.000000][ 0] psci: PSCIv1.0 detected in firmware.
[    0.000000][ 0] psci: Using standard PSCI v0.2 function IDs
[    0.000000][ 0] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000][ 0] PERCPU: Embedded 2 pages/cpu @ffff80807f890000 s86680 r8192 d36200 u131072
[    0.000000][ 0] Detected PIPT I-cache on CPU0
[    0.000000][ 0] Built 8 zonelists in Node order, mobility grouping on.  Total pages: 490016
[    0.000000][ 0] Policy zone: Normal
[    0.000000][ 0] Kernel command line: BOOT_IMAGE=/uImage-4.4.131-20200704.kylin.server-generic root=UUID=665ebab1-4d3d-4c78-aa83-7fc9fff66936 rw quiet splash pcie_aspm=off console=ttyS0,115200 loglevel=7 earlycon=uart8250,mmio32,0x80028001000 resume=UUID=ee9bfdf2-5619-4cd7-9864-731309829d3b rootdelay=10 KEYBOARDTYPE=pc KEYTABLE=us security= audit=0
[    0.000000][ 0] audit: disabled (until reboot)
[    0.000000][ 0] log_buf_len individual max cpu contribution: 131072 bytes
[    0.000000][ 0] log_buf_len total cpu_extra contributions: 8257536 bytes
[    0.000000][ 0] log_buf_len min size: 262144 bytes
[    0.000000][ 0] log_buf_len: 16777216 bytes
[    0.000000][ 0] early log buf free: 255880(97%)
[    0.000000][ 0] PID hash table entries: 4096 (order: -1, 32768 bytes)
[    0.000000][ 0] software IO TLB [mem 0xf7ff0000-0xfbff0000] (64MB) mapped at [ffff800077ff0000-ffff80007bfeffff]
[    0.000000][ 0] Memory: 31206592K/31391744K available (9365K kernel code, 1210K rwdata, 5632K rodata, 1024K init, 1741K bss, 185152K reserved, 0K cma-reserved)
[    0.000000][ 0] Virtual kernel memory layout:
[    0.000000][ 0]     vmalloc : 0xffff000000000000 - 0xffff77ffffff0000   (122879 GB)
[    0.000000][ 0]     vmemmap : 0xffff780000000000 - 0xffff7c0000000000   (  4096 GB maximum)
[    0.000000][ 0]               0xffff780000000000 - 0xffff7801a0200000   (  6658 MB actual)
[    0.000000][ 0]     fixed   : 0xffff7fff6b9d0000 - 0xffff7fff6be00000   (  4288 KB)
[    0.000000][ 0]     PCI I/O : 0xffff7fff6c000000 - 0xffff7fff7c000000   (   256 MB)
[    0.000000][ 0]     modules : 0xffff7ffffc000000 - 0xffff800000000000   (    64 MB)
[    0.000000][ 0]     memory  : 0xffff800000000000 - 0xffff868080000000   (6817792 MB)
[    0.000000][ 0]       .init : 0xffff800000f30000 - 0xffff800001030000   (  1024 KB)
[    0.000000][ 0]       .text : 0xffff800000080000 - 0xffff800000f26ef4   ( 15004 KB)
[    0.000000][ 0]       .data : 0xffff800001030000 - 0xffff80000115ea00   (  1211 KB)
[    0.000000][ 0] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=64, Nodes=8
[    0.000000][ 0] Hierarchical RCU implementation.
[    0.000000][ 0]      Build-time adjustment of leaf fanout to 64.
[    0.000000][ 0]      RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=64.
[    0.000000][ 0] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=64
[    0.000000][ 0] NR_IRQS:64 nr_irqs:64 0
[    0.000000][ 0] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000][ 0] ITS [mem 0x8002a020000-0x8002a03ffff]
[    0.000000][ 0] ITS: allocated 65536 Devices @80c0200000 (psz 64K, shr 0)
[    0.000000][ 0] ITS: using cache flushing for cmd queue
[    0.000000][ 0] GIC: using LPI property table @0x00000080c01d0000
[    0.000000][ 0] ITS: Allocated 1792 chunks for LPIs
[    0.000000][ 0] GICv3: CPU0: found redistributor 0 region 0:0x000008002a800000
[    0.000000][ 0] CPU0: using LPI pending table @0x00000080c01e0000
[    0.000000][ 0] GIC: using cache flushing for LPI property table
[    0.000000][ 0] Architected cp15 timer(s) running at 50.00MHz (phys).
[    0.000000][ 0] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0xb8812736b, max_idle_ns: 440795202655 ns
[    0.000001][ 0] sched_clock: 56 bits at 50MHz, resolution 20ns, wraps every 4398046511100ns
[    0.009101][ 0] Console: colour dummy device 80x25
[    0.014550][ 0] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
[    0.026776][ 0] Calibrating delay loop (skipped), value calculated using timer frequency.. 100.00 BogoMIPS (lpj=200000)
[    0.038509][ 0] pid_max: default: 65536 minimum: 512
[    0.044909][ 0] Security Framework initialized
[    0.049667][ 0] LSM: module capability registered, index 0
[    0.055523][ 0] Kysec:  Disabled.
[    0.059060][ 0] Box:  Disabled.
[    0.062417][ 0] AppArmor: AppArmor disabled by boot time parameter
[    0.069557][ 0] Dentry cache hash table entries: 4194304 (order: 9, 33554432 bytes)
[    0.082452][ 0] Inode-cache hash table entries: 2097152 (order: 8, 16777216 bytes)
[    0.093538][ 0] Mount-cache hash table entries: 65536 (order: 3, 524288 bytes)
[    0.101291][ 0] Mountpoint-cache hash table entries: 65536 (order: 3, 524288 bytes)
[    0.110490][ 0] Initializing cgroup subsys io
[    0.115161][ 0] Initializing cgroup subsys memory
[    0.120229][ 0] Initializing cgroup subsys devices
[    0.125343][ 0] Initializing cgroup subsys freezer
[    0.130466][ 0] Initializing cgroup subsys net_cls
[    0.135613][ 0] Initializing cgroup subsys perf_event
[    0.141035][ 0] Initializing cgroup subsys net_prio
[    0.146243][ 0] Initializing cgroup subsys hugetlb
[    0.151372][ 0] Initializing cgroup subsys pids
[    0.156378][ 0] ftrace: allocating 33654 entries in 9 pages
[    0.230134][ 0] EFI services will not be available.
[    0.235348][ 0] ASID allocator initialised with 65536 entries
[    0.242289][ 0] PCI/MSI: /interrupt-controller@8002a000000/gic-its@8002a020000 domain created
[    0.251479][ 0] Platform MSI: /interrupt-controller@8002a000000/gic-its@8002a020000 domain created
[    0.264334][ 0] Detected PIPT I-cache on CPU1
[    0.264344][ 0] GICv3: CPU1: found redistributor 1 region 0:0x000008002a820000
[    0.264354][ 0] CPU1: using LPI pending table @0x00000080c1560000
[    0.264372][ 0] CPU1: Booted secondary processor [701f6622]
[    0.266821][ 0] Detected PIPT I-cache on CPU2
[    0.266828][ 0] GICv3: CPU2: found redistributor 2 region 0:0x000008002a840000
[    0.266838][ 0] CPU2: using LPI pending table @0x00000080c1600000
[    0.266852][ 0] CPU2: Booted secondary processor [701f6622]
[    0.269281][ 0] Detected PIPT I-cache on CPU3
[    0.269288][ 0] GICv3: CPU3: found redistributor 3 region 0:0x000008002a860000
[    0.269298][ 0] CPU3: using LPI pending table @0x00000080c16c0000
[    0.269311][ 0] CPU3: Booted secondary processor [701f6622]
[    0.271716][ 0] Detected PIPT I-cache on CPU4
[    0.271725][ 0] GICv3: CPU4: found redistributor 100 region 0:0x000008002a880000
[    0.271735][ 0] CPU4: using LPI pending table @0x00000080c1760000
[    0.272206][ 0] CPU4: Booted secondary processor [701f6622]
[    0.275166][ 0] Detected PIPT I-cache on CPU5
[    0.275173][ 0] GICv3: CPU5: found redistributor 101 region 0:0x000008002a8a0000
[    0.275184][ 0] CPU5: using LPI pending table @0x00000080c1800000
[    0.275196][ 0] CPU5: Booted secondary processor [701f6622]
[    0.278144][ 0] Detected PIPT I-cache on CPU6
[    0.278151][ 0] GICv3: CPU6: found redistributor 102 region 0:0x000008002a8c0000
[    0.278161][ 0] CPU6: using LPI pending table @0x00000080c18a0000
[    0.278174][ 0] CPU6: Booted secondary processor [701f6622]
[    0.281112][ 0] Detected PIPT I-cache on CPU7
[    0.281119][ 0] GICv3: CPU7: found redistributor 103 region 0:0x000008002a8e0000
[    0.281129][ 0] CPU7: using LPI pending table @0x00000080c1950000
[    0.281142][ 0] CPU7: Booted secondary processor [701f6622]
[    0.284498][ 0] Detected PIPT I-cache on CPU8
[    0.284510][ 0] GICv3: CPU8: found redistributor 200 region 0:0x000008002a900000
[    0.284524][ 0] CPU8: using LPI pending table @0x00000080c1e20000
[    0.284957][ 0] CPU8: Booted secondary processor [701f6622]
[    0.288437][ 0] Detected PIPT I-cache on CPU9
[    0.288445][ 0] GICv3: CPU9: found redistributor 201 region 0:0x000008002a920000
[    0.288457][ 0] CPU9: using LPI pending table @0x00000080c23e0000
[    0.288470][ 0] CPU9: Booted secondary processor [701f6622]
[    0.291752][ 0] Detected PIPT I-cache on CPU10
[    0.291761][ 0] GICv3: CPU10: found redistributor 202 region 0:0x000008002a940000
[    0.291772][ 0] CPU10: using LPI pending table @0x00000080c28e0000
[    0.291786][ 0] CPU10: Booted secondary processor [701f6622]
[    0.295016][ 0] Detected PIPT I-cache on CPU11
[    0.295025][ 0] GICv3: CPU11: found redistributor 203 region 0:0x000008002a960000
[    0.295036][ 0] CPU11: using LPI pending table @0x00000080c2dd0000
[    0.295050][ 0] CPU11: Booted secondary processor [701f6622]
[    0.298365][ 0] Detected PIPT I-cache on CPU12
[    0.298379][ 0] GICv3: CPU12: found redistributor 300 region 0:0x000008002a980000
[    0.298392][ 0] CPU12: using LPI pending table @0x00000080c32a0000
[    0.298412][ 0] CPU12: Booted secondary processor [701f6622]
[    0.301575][ 0] Detected PIPT I-cache on CPU13
[    0.301584][ 0] GICv3: CPU13: found redistributor 301 region 0:0x000008002a9a0000
[    0.301596][ 0] CPU13: using LPI pending table @0x00000080c3770000
[    0.301609][ 0] CPU13: Booted secondary processor [701f6622]
[    0.304726][ 0] Detected PIPT I-cache on CPU14
[    0.304735][ 0] GICv3: CPU14: found redistributor 302 region 0:0x000008002a9c0000
[    0.304747][ 0] CPU14: using LPI pending table @0x00000080c3c40000
[    0.304761][ 0] CPU14: Booted secondary processor [701f6622]
[    0.307836][ 0] Detected PIPT I-cache on CPU15
[    0.307846][ 0] GICv3: CPU15: found redistributor 303 region 0:0x000008002a9e0000
[    0.307857][ 0] CPU15: using LPI pending table @0x00000080c4110000
[    0.307871][ 0] CPU15: Booted secondary processor [701f6622]
[    0.310643][ 0] Detected PIPT I-cache on CPU16
[    0.310659][ 0] GICv3: CPU16: found redistributor 400 region 0:0x000008002aa00000
[    0.310676][ 0] CPU16: using LPI pending table @0x00000080c4120000
[    0.311029][ 0] CPU16: Booted secondary processor [701f6622]
[    0.313715][ 0] Detected PIPT I-cache on CPU17
[    0.313726][ 0] GICv3: CPU17: found redistributor 401 region 0:0x000008002aa20000
[    0.313740][ 0] CPU17: using LPI pending table @0x00000080c4130000
[    0.313755][ 0] CPU17: Booted secondary processor [701f6622]
[    0.316337][ 0] Detected PIPT I-cache on CPU18
[    0.316349][ 0] GICv3: CPU18: found redistributor 402 region 0:0x000008002aa40000
[    0.316364][ 0] CPU18: using LPI pending table @0x00000080c4140000
[    0.316378][ 0] CPU18: Booted secondary processor [701f6622]
[    0.318950][ 0] Detected PIPT I-cache on CPU19
[    0.318963][ 0] GICv3: CPU19: found redistributor 403 region 0:0x000008002aa60000
[    0.318976][ 0] CPU19: using LPI pending table @0x00000080c4150000
[    0.318991][ 0] CPU19: Booted secondary processor [701f6622]
[    0.321525][ 0] Detected PIPT I-cache on CPU20
[    0.321543][ 0] GICv3: CPU20: found redistributor 500 region 0:0x000008002aa80000
[    0.321560][ 0] CPU20: using LPI pending table @0x00000080c4180000
[    0.321874][ 0] CPU20: Booted secondary processor [701f6622]
[    0.324382][ 0] Detected PIPT I-cache on CPU21
[    0.324395][ 0] GICv3: CPU21: found redistributor 501 region 0:0x000008002aaa0000
[    0.324409][ 0] CPU21: using LPI pending table @0x00000080c41a0000
[    0.324424][ 0] CPU21: Booted secondary processor [701f6622]
[    0.326881][ 0] Detected PIPT I-cache on CPU22
[    0.326894][ 0] GICv3: CPU22: found redistributor 502 region 0:0x000008002aac0000
[    0.326908][ 0] CPU22: using LPI pending table @0x00000080c41b0000
[    0.326923][ 0] CPU22: Booted secondary processor [701f6622]
[    0.329370][ 0] Detected PIPT I-cache on CPU23
[    0.329384][ 0] GICv3: CPU23: found redistributor 503 region 0:0x000008002aae0000
[    0.329398][ 0] CPU23: using LPI pending table @0x00000080c41e0000
[    0.329413][ 0] CPU23: Booted secondary processor [701f6622]
[    0.332110][ 0] Detected PIPT I-cache on CPU24
[    0.332129][ 0] GICv3: CPU24: found redistributor 600 region 0:0x000008002ab00000
[    0.332143][ 0] CPU24: using LPI pending table @0x00000080c41f0000
[    0.332414][ 0] CPU24: Booted secondary processor [701f6622]
[    0.335299][ 0] Detected PIPT I-cache on CPU25
[    0.335313][ 0] GICv3: CPU25: found redistributor 601 region 0:0x000008002ab20000
[    0.335325][ 0] CPU25: using LPI pending table @0x00000080c4200000
[    0.335340][ 0] CPU25: Booted secondary processor [701f6622]
[    0.338107][ 0] Detected PIPT I-cache on CPU26
[    0.338121][ 0] GICv3: CPU26: found redistributor 602 region 0:0x000008002ab40000
[    0.338134][ 0] CPU26: using LPI pending table @0x00000080c4210000
[    0.338148][ 0] CPU26: Booted secondary processor [701f6622]
[    0.340927][ 0] Detected PIPT I-cache on CPU27
[    0.340941][ 0] GICv3: CPU27: found redistributor 603 region 0:0x000008002ab60000
[    0.340954][ 0] CPU27: using LPI pending table @0x00000080c4220000
[    0.340968][ 0] CPU27: Booted secondary processor [701f6622]
[    0.343763][ 0] Detected PIPT I-cache on CPU28
[    0.343782][ 0] GICv3: CPU28: found redistributor 700 region 0:0x000008002ab80000
[    0.343796][ 0] CPU28: using LPI pending table @0x00000080c4230000
[    0.344025][ 0] CPU28: Booted secondary processor [701f6622]
[    0.346788][ 0] Detected PIPT I-cache on CPU29
[    0.346803][ 0] GICv3: CPU29: found redistributor 701 region 0:0x000008002aba0000
[    0.346816][ 0] CPU29: using LPI pending table @0x00000080c4260000
[    0.346830][ 0] CPU29: Booted secondary processor [701f6622]
[    0.349574][ 0] Detected PIPT I-cache on CPU30
[    0.349589][ 0] GICv3: CPU30: found redistributor 702 region 0:0x000008002abc0000
[    0.349602][ 0] CPU30: using LPI pending table @0x00000080c4270000
[    0.349617][ 0] CPU30: Booted secondary processor [701f6622]
[    0.352348][ 0] Detected PIPT I-cache on CPU31
[    0.352363][ 0] GICv3: CPU31: found redistributor 703 region 0:0x000008002abe0000
[    0.352376][ 0] CPU31: using LPI pending table @0x00000080c4280000
[    0.352390][ 0] CPU31: Booted secondary processor [701f6622]
[    0.354661][ 0] Detected PIPT I-cache on CPU32
[    0.354681][ 0] GICv3: CPU32: found redistributor 800 region 0:0x000008002ac00000
[    0.354695][ 0] CPU32: using LPI pending table @0x00000080c4290000
[    0.354881][ 0] CPU32: Booted secondary processor [701f6622]
[    0.357076][ 0] Detected PIPT I-cache on CPU33
[    0.357092][ 0] GICv3: CPU33: found redistributor 801 region 0:0x000008002ac20000
[    0.357104][ 0] CPU33: using LPI pending table @0x00000080c42b0000
[    0.357118][ 0] CPU33: Booted secondary processor [701f6622]
[    0.359221][ 0] Detected PIPT I-cache on CPU34
[    0.359237][ 0] GICv3: CPU34: found redistributor 802 region 0:0x000008002ac40000
[    0.359249][ 0] CPU34: using LPI pending table @0x00000080c42c0000
[    0.359263][ 0] CPU34: Booted secondary processor [701f6622]
[    0.361324][ 0] Detected PIPT I-cache on CPU35
[    0.361340][ 0] GICv3: CPU35: found redistributor 803 region 0:0x000008002ac60000
[    0.361352][ 0] CPU35: using LPI pending table @0x00000080c42d0000
[    0.361366][ 0] CPU35: Booted secondary processor [701f6622]
[    0.363409][ 0] Detected PIPT I-cache on CPU36
[    0.363430][ 0] GICv3: CPU36: found redistributor 900 region 0:0x000008002ac80000
[    0.363443][ 0] CPU36: using LPI pending table @0x00000080c4320000
[    0.363598][ 0] CPU36: Booted secondary processor [701f6622]
[    0.365597][ 0] Detected PIPT I-cache on CPU37
[    0.365613][ 0] GICv3: CPU37: found redistributor 901 region 0:0x000008002aca0000
[    0.365625][ 0] CPU37: using LPI pending table @0x00000080c4330000
[    0.365640][ 0] CPU37: Booted secondary processor [701f6622]
[    0.367608][ 0] Detected PIPT I-cache on CPU38
[    0.367625][ 0] GICv3: CPU38: found redistributor 902 region 0:0x000008002acc0000
[    0.367637][ 0] CPU38: using LPI pending table @0x00000080c4340000
[    0.367651][ 0] CPU38: Booted secondary processor [701f6622]
[    0.369525][ 0] Detected PIPT I-cache on CPU39
[    0.369543][ 0] GICv3: CPU39: found redistributor 903 region 0:0x000008002ace0000
[    0.369555][ 0] CPU39: using LPI pending table @0x00000080c4350000
[    0.369569][ 0] CPU39: Booted secondary processor [701f6622]
[    0.371924][ 0] Detected PIPT I-cache on CPU40
[    0.371947][ 0] GICv3: CPU40: found redistributor a00 region 0:0x000008002ad00000
[    0.371963][ 0] CPU40: using LPI pending table @0x00000080c4360000
[    0.372109][ 0] CPU40: Booted secondary processor [701f6622]
[    0.374673][ 0] Detected PIPT I-cache on CPU41
[    0.374692][ 0] GICv3: CPU41: found redistributor a01 region 0:0x000008002ad20000
[    0.374705][ 0] CPU41: using LPI pending table @0x00000080c4370000
[    0.374720][ 0] CPU41: Booted secondary processor [701f6622]
[    0.377171][ 0] Detected PIPT I-cache on CPU42
[    0.377190][ 0] GICv3: CPU42: found redistributor a02 region 0:0x000008002ad40000
[    0.377204][ 0] CPU42: using LPI pending table @0x00000080c4380000
[    0.377218][ 0] CPU42: Booted secondary processor [701f6622]
[    0.379671][ 0] Detected PIPT I-cache on CPU43
[    0.379691][ 0] GICv3: CPU43: found redistributor a03 region 0:0x000008002ad60000
[    0.379704][ 0] CPU43: using LPI pending table @0x00000080c4390000
[    0.379719][ 0] CPU43: Booted secondary processor [701f6622]
[    0.382173][ 0] Detected PIPT I-cache on CPU44
[    0.382199][ 0] GICv3: CPU44: found redistributor b00 region 0:0x000008002ad80000
[    0.382214][ 0] CPU44: using LPI pending table @0x00000080c43a0000
[    0.382351][ 0] CPU44: Booted secondary processor [701f6622]
[    0.384786][ 0] Detected PIPT I-cache on CPU45
[    0.384807][ 0] GICv3: CPU45: found redistributor b01 region 0:0x000008002ada0000
[    0.384821][ 0] CPU45: using LPI pending table @0x00000080c43e0000
[    0.384835][ 0] CPU45: Booted secondary processor [701f6622]
[    0.387245][ 0] Detected PIPT I-cache on CPU46
[    0.387265][ 0] GICv3: CPU46: found redistributor b02 region 0:0x000008002adc0000
[    0.387279][ 0] CPU46: using LPI pending table @0x00000080c43f0000
[    0.387294][ 0] CPU46: Booted secondary processor [701f6622]
[    0.389675][ 0] Detected PIPT I-cache on CPU47
[    0.389696][ 0] GICv3: CPU47: found redistributor b03 region 0:0x000008002ade0000
[    0.389710][ 0] CPU47: using LPI pending table @0x00000080c4420000
[    0.389725][ 0] CPU47: Booted secondary processor [701f6622]
[    0.391446][ 0] Detected PIPT I-cache on CPU48
[    0.391477][ 0] GICv3: CPU48: found redistributor c00 region 0:0x000008002ae00000
[    0.391496][ 0] CPU48: using LPI pending table @0x00000080c4430000
[    0.391636][ 0] CPU48: Booted secondary processor [701f6622]
[    0.393349][ 0] Detected PIPT I-cache on CPU49
[    0.393373][ 0] GICv3: CPU49: found redistributor c01 region 0:0x000008002ae20000
[    0.393391][ 0] CPU49: using LPI pending table @0x00000080c4440000
[    0.393407][ 0] CPU49: Booted secondary processor [701f6622]
[    0.395019][ 0] Detected PIPT I-cache on CPU50
[    0.395044][ 0] GICv3: CPU50: found redistributor c02 region 0:0x000008002ae40000
[    0.395060][ 0] CPU50: using LPI pending table @0x00000080c4450000
[    0.395076][ 0] CPU50: Booted secondary processor [701f6622]
[    0.396615][ 0] Detected PIPT I-cache on CPU51
[    0.396640][ 0] GICv3: CPU51: found redistributor c03 region 0:0x000008002ae60000
[    0.396653][ 0] CPU51: using LPI pending table @0x00000280c3e80000
[    0.396669][ 0] CPU51: Booted secondary processor [701f6622]
[    0.398224][ 0] Detected PIPT I-cache on CPU52
[    0.398258][ 0] GICv3: CPU52: found redistributor d00 region 0:0x000008002ae80000
[    0.398273][ 0] CPU52: using LPI pending table @0x00000280c3e90000
[    0.398395][ 0] CPU52: Booted secondary processor [701f6622]
[    0.399911][ 0] Detected PIPT I-cache on CPU53
[    0.399936][ 0] GICv3: CPU53: found redistributor d01 region 0:0x000008002aea0000
[    0.399948][ 0] CPU53: using LPI pending table @0x00000680c1600000
[    0.399964][ 0] CPU53: Booted secondary processor [701f6622]
[    0.401451][ 0] Detected PIPT I-cache on CPU54
[    0.401477][ 0] GICv3: CPU54: found redistributor d02 region 0:0x000008002aec0000
[    0.401488][ 0] CPU54: using LPI pending table @0x00000680c16a0000
[    0.401504][ 0] CPU54: Booted secondary processor [701f6622]
[    0.402940][ 0] Detected PIPT I-cache on CPU55
[    0.402966][ 0] GICv3: CPU55: found redistributor d03 region 0:0x000008002aee0000
[    0.402977][ 0] CPU55: using LPI pending table @0x00000680c1740000
[    0.402993][ 0] CPU55: Booted secondary processor [701f6622]
[    0.405083][ 0] Detected PIPT I-cache on CPU56
[    0.405115][ 0] GICv3: CPU56: found redistributor e00 region 0:0x000008002af00000
[    0.405130][ 0] CPU56: using LPI pending table @0x00000680c1c10000
[    0.405208][ 0] CPU56: Booted secondary processor [701f6622]
[    0.407505][ 0] Detected PIPT I-cache on CPU57
[    0.407531][ 0] GICv3: CPU57: found redistributor e01 region 0:0x000008002af20000
[    0.407543][ 0] CPU57: using LPI pending table @0x00000680c21d0000
[    0.407558][ 0] CPU57: Booted secondary processor [701f6622]
[    0.409695][ 0] Detected PIPT I-cache on CPU58
[    0.409720][ 0] GICv3: CPU58: found redistributor e02 region 0:0x000008002af40000
[    0.409733][ 0] CPU58: using LPI pending table @0x00000680c26a0000
[    0.409748][ 0] CPU58: Booted secondary processor [701f6622]
[    0.411895][ 0] Detected PIPT I-cache on CPU59
[    0.411922][ 0] GICv3: CPU59: found redistributor e03 region 0:0x000008002af60000
[    0.411934][ 0] CPU59: using LPI pending table @0x00000680c2b70000
[    0.411949][ 0] CPU59: Booted secondary processor [701f6622]
[    0.414127][ 0] Detected PIPT I-cache on CPU60
[    0.414160][ 0] GICv3: CPU60: found redistributor f00 region 0:0x000008002af80000
[    0.414175][ 0] CPU60: using LPI pending table @0x00000680c3040000
[    0.414232][ 0] CPU60: Booted secondary processor [701f6622]
[    0.416400][ 0] Detected PIPT I-cache on CPU61
[    0.416427][ 0] GICv3: CPU61: found redistributor f01 region 0:0x000008002afa0000
[    0.416439][ 0] CPU61: using LPI pending table @0x00000680c3510000
[    0.416455][ 0] CPU61: Booted secondary processor [701f6622]
[    0.418610][ 0] Detected PIPT I-cache on CPU62
[    0.418637][ 0] GICv3: CPU62: found redistributor f02 region 0:0x000008002afc0000
[    0.418650][ 0] CPU62: using LPI pending table @0x00000680c39e0000
[    0.418665][ 0] CPU62: Booted secondary processor [701f6622]
[    0.420797][ 0] Detected PIPT I-cache on CPU63
[    0.420825][ 0] GICv3: CPU63: found redistributor f03 region 0:0x000008002afe0000
[    0.420837][ 0] CPU63: using LPI pending table @0x00000680c3eb0000
[    0.420853][ 0] CPU63: Booted secondary processor [701f6622]
[    0.420922][ 0] Brought up 64 CPUs
[    2.022668][ 0] SMP: Total of 64 processors activated.
[    2.028169][ 0] CPU features: detected feature: GIC system register CPU interface
[    2.036185][ 0] CPU: All CPU(s) started at EL2
[    2.083391][ 0] devtmpfs: initialized
[    2.088741][ 0] evm: security.selinux
[    2.092658][ 0] evm: security.ima
[    2.096168][ 0] evm: security.capability
[    2.100766][ 0] SMBIOS 3.1 present.
[    2.104506][ 0] DMI: Byosoft FT2000+/FT2000+, BIOS 1.2.0 20211130
[    2.111516][ 0] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    2.122357][ 0] futex hash table entries: 16384 (order: 4, 1048576 bytes)
[    2.131103][ 2] NET: Registered protocol family 16
[    2.148258][ 3] cpuidle: using governor ladder
[    2.165020][ 0] cpuidle: using governor menu
[    2.169656][ 0] vdso: 2 pages (1 code @ ffff800001050000, 1 data @ ffff800001040000)
[    2.177989][ 0] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    2.185687][ 0] DMA: preallocated 256 KiB pool for atomic allocations
[    2.192665][ 0] Serial: AMBA PL011 UART driver
[    2.215943][ 2] ACPI: Interpreter disabled.
[    2.220495][ 2] vgaarb: loaded
[    2.224023][ 2] SCSI subsystem initialized
[    2.228482][ 2] usbcore: registered new interface driver usbfs
[    2.234731][ 2] usbcore: registered new interface driver hub
[    2.241090][ 2] usbcore: registered new device driver usb
[    2.247143][ 2] Linux video capture interface: v2.00
[    2.252465][ 2] pps_core: LinuxPPS API ver. 1 registered
[    2.258139][ 2] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    2.268292][ 2] PTP clock support registered
[    2.273178][ 2] NetLabel: Initializing
[    2.277188][ 2] NetLabel:  domain hash size = 128
[    2.282205][ 2] NetLabel:  protocols = UNLABELED CIPSOv4
[    2.287905][ 2] NetLabel:  unlabeled traffic allowed by default
[    2.294627][ 2] clocksource: Switched to clocksource arch_sys_counter
[    2.314259][ 2] Init kysecfs SUCCESS!
[    2.318188][ 2] Init box entries under sysfs SUCCESS!
[    2.323674][ 2] pnp: PnP ACPI: disabled
[    2.330965][ 2] NET: Registered protocol family 2
[    2.336817][ 2] TCP established hash table entries: 262144 (order: 5, 2097152 bytes)
[    2.345605][ 2] TCP bind hash table entries: 65536 (order: 4, 1048576 bytes)
[    2.353388][ 2] TCP: Hash tables configured (established 262144 bind 65536)
[    2.360910][ 2] UDP hash table entries: 16384 (order: 3, 524288 bytes)
[    2.368019][ 2] UDP-Lite hash table entries: 16384 (order: 3, 524288 bytes)
[    2.376182][ 2] NET: Registered protocol family 1
[    2.381330][ 1] Trying to unpack rootfs image as initramfs...
[    2.929469][ 1] Freeing initrd memory: 32192K
[    2.934890][ 1] kvm [1]: 8-bit VMID
[    2.938648][ 1] kvm [1]: Hyp mode initialized successfully
[    2.944542][ 1] kvm [1]: vgic-v2@80029c20000
[    2.949185][ 1] kvm [1]: GIC system register CPU interface enabled
[    2.956231][ 1] kvm [1]: vgic interrupt IRQ1
[    2.960926][ 0] kvm [1]: virtual timer IRQ4
[    2.967968][ 0] Initialise system trusted keyring
[    2.973613][ 0] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.980770][ 0] HugeTLB registered 512 MB page size, pre-allocated 0 pages
[    2.990631][ 0] zbud: loaded
[    2.994893][ 0] VFS: Disk quotas dquot_6.6.0
[    2.999707][ 0] VFS: Dquot-cache hash table entries: 8192 (order 0, 65536 bytes)
[    3.010184][ 0] fuse init (API version 7.23)
[    3.017508][ 0] Key type asymmetric registered
[    3.022258][ 0] Asymmetric key parser 'x509' registered
[    3.028090][ 0] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    3.036626][ 0] io scheduler noop registered
[    3.041199][ 0] io scheduler deadline registered
[    3.046329][ 0] io scheduler cfq registered (default)
[    3.051740][ 0] io scheduler bfq registered
[    3.056195][ 0] BFQ I/O-scheduler: v8r10 (with cgroups support)
[    3.062617][ 0] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.069137][ 0] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.076614][ 0] PCI: PROBE_ONLY enabled
[    3.080724][ 0] PCI host bridge /smb/motherboard/peu0-c0 ranges:
[    3.087135][ 0]    IO 0x80050000000..0x80050efffff -> 0x00000000
[    3.093549][ 0]   MEM 0x80060000000..0x8007fffffff -> 0x60000000
[    3.099942][ 0]   MEM 0x82000000000..0x83fffffffff -> 0x2000000000
[    3.106853][ 0] pci-host-generic 80040000000.peu0-c0: ECAM at [mem 0x80040000000-0x8004fffffff] for [bus 00-ff]
[    3.117720][ 0] pci-host-generic 80040000000.peu0-c0: PCI host bridge to bus 0000:00
[    3.125997][ 0] pci_bus 0000:00: root bus resource [bus 00-ff]
[    3.132216][ 0] pci_bus 0000:00: root bus resource [io  0x0000-0xefffff]
[    3.139376][ 0] pci_bus 0000:00: root bus resource [mem 0x80060000000-0x8007fffffff] (bus address [0x60000000-0x7fffffff])
[    3.151167][ 0] pci_bus 0000:00: root bus resource [mem 0x82000000000-0x83fffffffff] (bus address [0x2000000000-0x3fffffffff])
[    3.165545][ 0] pci 0000:01:00.0: VF(n) BAR0 space: [mem 0x82004800000-0x82004ffffff 64bit pref] (contains BAR0 for 8 VFs)
[    3.179747][ 0] pci 0000:01:00.1: VF(n) BAR0 space: [mem 0x82004000000-0x820047fffff 64bit pref] (contains BAR0 for 8 VFs)
[    3.192385][ 0] pci 0000:00:00.0: PCI bridge to [bus 01-02]
[    3.198426][ 0] pci 0000:00:01.0: PCI bridge to [bus 03]
[    3.204389][ 0] pci 0000:00:02.0: PCI bridge to [bus 04-0c]
[    3.211270][ 0] pci 0000:04:00.0: PCI bridge to [bus 05-0c]
[    3.217584][ 0] pci 0000:06:00.0: VF(n) BAR0 space: [mem 0x820060e0000-0x8200615ffff 64bit pref] (contains BAR0 for 8 VFs)
[    3.229421][ 0] pci 0000:06:00.0: VF(n) BAR3 space: [mem 0x820060c0000-0x8200613ffff 64bit pref] (contains BAR3 for 8 VFs)
[    3.241615][ 0] pci 0000:06:00.1: VF(n) BAR0 space: [mem 0x820060a0000-0x8200611ffff 64bit pref] (contains BAR0 for 8 VFs)
[    3.253434][ 0] pci 0000:06:00.1: VF(n) BAR3 space: [mem 0x82006080000-0x820060fffff 64bit pref] (contains BAR3 for 8 VFs)
[    3.265626][ 0] pci 0000:06:00.2: VF(n) BAR0 space: [mem 0x82006060000-0x820060dffff 64bit pref] (contains BAR0 for 8 VFs)
[    3.277420][ 0] pci 0000:06:00.2: VF(n) BAR3 space: [mem 0x82006040000-0x820060bffff 64bit pref] (contains BAR3 for 8 VFs)
[    3.289576][ 0] pci 0000:06:00.3: VF(n) BAR0 space: [mem 0x82006020000-0x8200609ffff 64bit pref] (contains BAR0 for 8 VFs)
[    3.301378][ 0] pci 0000:06:00.3: VF(n) BAR3 space: [mem 0x82006000000-0x8200607ffff 64bit pref] (contains BAR3 for 8 VFs)
[    3.313289][ 0] pci 0000:05:01.0: PCI bridge to [bus 06-07]
[    3.319359][ 0] pci 0000:05:03.0: PCI bridge to [bus 08]
[    3.325344][ 0] pci 0000:05:05.0: PCI bridge to [bus 09-0a]
[    3.331664][ 0] vgaarb: device added: PCI:0000:0a:00.0,decodes=io+mem,owns=none,locks=none
[    3.340561][ 0] pci 0000:09:00.0: PCI bridge to [bus 0a]
[    3.346562][ 0] pci 0000:05:08.0: PCI bridge to [bus 0b-0c]
[    3.354114][ 0] pci 0000:0b:00.0: PCI bridge to [bus 0c]
[    3.359913][ 0] pci 0000:00:03.0: PCI bridge to [bus 0d]
[    3.366063][ 0] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
[    3.373881][ 0] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    3.381240][ 0] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    3.388744][ 0] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    3.396685][ 0] pcieport 0000:00:02.0: Signaling PME through PCIe PME interrupt
[    3.404443][ 0] pci 0000:04:00.0: Signaling PME through PCIe PME interrupt
[    3.411784][ 0] pci 0000:05:01.0: Signaling PME through PCIe PME interrupt
[    3.419125][ 0] pci 0000:06:00.0: Signaling PME through PCIe PME interrupt
[    3.426483][ 0] pci 0000:06:00.1: Signaling PME through PCIe PME interrupt
[    3.433832][ 0] pci 0000:06:00.2: Signaling PME through PCIe PME interrupt
[    3.441172][ 0] pci 0000:06:00.3: Signaling PME through PCIe PME interrupt
[    3.448478][ 0] pci 0000:05:03.0: Signaling PME through PCIe PME interrupt
[    3.455828][ 0] pci 0000:05:05.0: Signaling PME through PCIe PME interrupt
[    3.463169][ 0] pci 0000:09:00.0: Signaling PME through PCIe PME interrupt
[    3.470528][ 0] pci 0000:0a:00.0: Signaling PME through PCIe PME interrupt
[    3.477894][ 0] pci 0000:05:08.0: Signaling PME through PCIe PME interrupt
[    3.485226][ 0] pci 0000:0b:00.0: Signaling PME through PCIe PME interrupt
[    3.492592][ 0] pci 0000:0c:0d.0: Signaling PME through PCIe PME interrupt
[    3.499950][ 0] pci 0000:0c:0f.0: Signaling PME through PCIe PME interrupt
[    3.507290][ 0] pci 0000:0c:10.0: Signaling PME through PCIe PME interrupt
[    3.514630][ 0] pci 0000:0c:10.1: Signaling PME through PCIe PME interrupt
[    3.521970][ 0] pci 0000:0c:10.2: Signaling PME through PCIe PME interrupt
[    3.529337][ 0] pci 0000:0c:10.7: Signaling PME through PCIe PME interrupt
[    3.536643][ 0] pci 0000:0c:12.0: Signaling PME through PCIe PME interrupt
[    3.544153][ 0] pcieport 0000:00:03.0: Signaling PME through PCIe PME interrupt
[    3.553523][ 0] PCI: enabling device 0000:0c:10.0 (0010 -> 0011)
[    3.559947][ 0] PCI: enabling device 0000:0c:10.1 (0010 -> 0011)
[    3.566401][ 0] PCI: enabling device 0000:0c:10.2 (0010 -> 0011)
[    3.572856][ 0] PCI: enabling device 0000:0c:10.7 (0010 -> 0012)
[    3.579287][ 0] PCI: enabling device 0000:0c:12.0 (0000 -> 0002)
[    3.585787][ 0] amdgpu_fb_driver_load_kms:Not Find AMD Video Device
[    3.593898][ 0] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled
[    3.602120][ 0] console [ttyS0] disabled
[    3.606338][ 0] 80028001000.uart: ttyS0 at MMIO 0x80028001000 (irq = 6, base_baud = 3125000) is a 16550A
[    3.616524][ 0] console [ttyS0] enabled
[    3.616524][ 0] console [ttyS0] enabled
[    3.624439][ 0] bootconsole [uart0] disabled
[    3.624439][ 0] bootconsole [uart0] disabled
[    3.633427][ 2] 80028000000.uart: ttyS1 at MMIO 0x80028000000 (irq = 7, base_baud = 3125000) is a 16550A
[    3.643021][ 3] 80028007000.uart: ttyS2 at MMIO 0x80028007000 (irq = 8, base_baud = 3125000) is a 16550A
[    3.652619][ 2] 80028008000.uart: ttyS3 at MMIO 0x80028008000 (irq = 9, base_baud = 3125000) is a 16550A
[    3.662218][ 2] [drm] Initialized
[    3.665589][ 2] usbcore: registered new interface driver udl
[    3.671329][ 2] PCI: enabling device 0000:0a:00.0 (0002 -> 0003)
[    3.677444][ 3] [drm] AST 2500 detected
[    3.681277][ 3] [drm] Analog VGA only
[    3.684943][ 3] [drm] dram -1094967296 8 16 01000000
[    3.689940][ 3] [TTM] Zone  kernel: Available graphics memory: 15619392 kiB
[    3.696872][ 3] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    3.703714][ 3] [TTM] Initializing pool allocator
[    3.708401][ 3] [TTM] Initializing DMA pool allocator
[    3.761514][ 3] Console: switching to colour frame buffer device 128x48
[    3.785425][ 1] ast 0000:0a:00.0: fb0: astdrmfb frame buffer device
[    3.806592][ 1] [drm] Initialized ast 0.1.0 20120228 for 0000:0a:00.0 on minor 0
[    3.814654][ 1] Unable to detect cache hierarchy for CPU 0
[    3.828443][ 0] brd: module loaded
[    3.838455][ 0] loop: module loaded
[    3.842396][ 0] ahci 0000:0c:0f.0: SSS flag set, parallel bus scan disabled
[    3.862650][ 0] ahci 0000:0c:0f.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[    3.871052][ 0] ahci 0000:0c:0f.0: flags: ncq sntf ilck stag pm led clo pio slum part ccc ems sxs sds apst boh
[    3.881095][ 0] ahci 0000:0c:0f.0: both AHCI_HFLAG_MULTI_MSI flag set                                 and custom irq handler implemented
[    4.011451][ 0] scsi host0: ahci
[    4.014838][ 0] scsi host1: ahci
[    4.018197][ 0] scsi host2: ahci
[    4.021585][ 0] scsi host3: ahci
[    4.024868][ 0] ata1: SATA max UDMA/133 abar m8192@0x80061100000 port 0x80061100100 irq 24
[    4.033095][ 0] ata2: SATA max UDMA/133 abar m8192@0x80061100000 port 0x80061100180 irq 25
[    4.041321][ 0] ata3: SATA max UDMA/133 abar m8192@0x80061100000 port 0x80061100200 irq 26
[    4.049546][ 0] ata4: SATA max UDMA/133 abar m8192@0x80061100000 port 0x80061100280 irq 27
[    4.057880][ 0] Loading iSCSI transport class v2.0-870.
[    4.063434][ 0] tun: Universal TUN/TAP device driver, 1.6
[    4.068811][ 0] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    4.075367][ 0] hinic: [COMM]Huawei(R) Intelligent Network Interface Card Driver - version 2.3.2.1
[    4.084286][ 0] hinic: [COMM]Register nic driver succeed
[    4.089625][ 0] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    4.096472][ 0] ehci-pci: EHCI PCI platform driver
[    4.101331][ 0] ehci-pci 0000:0c:10.7: EHCI Host Controller
[    4.106883][ 0] ehci-pci 0000:0c:10.7: new USB bus registered, assigned bus number 1
[    4.114604][ 0] ehci-pci 0000:0c:10.7: debug port 1
[    4.119543][ 0] ehci-pci 0000:0c:10.7: irq 14, io mem 0x80061105000
[    4.134595][ 0] ehci-pci 0000:0c:10.7: USB 2.0 started, EHCI 1.00
[    4.140770][ 3] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    4.147877][ 3] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.155410][ 3] usb usb1: Product: EHCI Host Controller
[    4.160611][ 3] usb usb1: Manufacturer: Linux 4.4.131-20200704.kylin.server-generic ehci_hcd
[    4.169007][ 3] usb usb1: SerialNumber: 0000:0c:10.7
[    4.174121][ 0] hub 1-0:1.0: USB hub found
[    4.178212][ 1] hub 1-0:1.0: 6 ports detected
[    4.182859][ 3] ehci-platform: EHCI generic platform driver
[    4.188435][ 3] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    4.194938][ 3] ohci-pci: OHCI PCI platform driver
[    4.199725][ 3] uhci_hcd: USB Universal Host Controller Interface driver
[    4.206455][ 3] uhci_hcd 0000:0c:10.0: UHCI Host Controller
[    4.212007][ 3] uhci_hcd 0000:0c:10.0: new USB bus registered, assigned bus number 2
[    4.219720][ 3] uhci_hcd 0000:0c:10.0: detected 2 ports
[    4.224921][ 3] uhci_hcd 0000:0c:10.0: Adjust the UHCI Controllers bit value patch V1.0.0
[    4.233087][ 3] uhci_hcd 0000:0c:10.0: irq 12, io base 0x00001040
[    4.239273][ 2] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    4.246379][ 2] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.253914][ 2] usb usb2: Product: UHCI Host Controller
[    4.259114][ 2] usb usb2: Manufacturer: Linux 4.4.131-20200704.kylin.server-generic uhci_hcd
[    4.267513][ 2] usb usb2: SerialNumber: 0000:0c:10.0
[    4.272619][ 3] hub 2-0:1.0: USB hub found
[    4.276717][ 0] hub 2-0:1.0: 2 ports detected
[    4.281249][ 0] uhci_hcd 0000:0c:10.1: UHCI Host Controller
[    4.286803][ 0] uhci_hcd 0000:0c:10.1: new USB bus registered, assigned bus number 3
[    4.294516][ 0] uhci_hcd 0000:0c:10.1: detected 2 ports
[    4.299717][ 0] uhci_hcd 0000:0c:10.1: Adjust the UHCI Controllers bit value patch V1.0.0
[    4.307882][ 0] uhci_hcd 0000:0c:10.1: irq 13, io base 0x00001020
[    4.314065][ 3] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    4.321174][ 2] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.321176][ 2] usb usb3: Product: UHCI Host Controller
[    4.321177][ 2] usb usb3: Manufacturer: Linux 4.4.131-20200704.kylin.server-generic uhci_hcd
[    4.321179][ 2] usb usb3: SerialNumber: 0000:0c:10.1
[    4.321381][ 2] hub 3-0:1.0: USB hub found
[    4.321393][ 2] hub 3-0:1.0: 2 ports detected
[    4.321604][ 2] uhci_hcd 0000:0c:10.2: UHCI Host Controller
[    4.321610][ 2] uhci_hcd 0000:0c:10.2: new USB bus registered, assigned bus number 4
[    4.321618][ 2] uhci_hcd 0000:0c:10.2: detected 2 ports
[    4.321619][ 2] uhci_hcd 0000:0c:10.2: Adjust the UHCI Controllers bit value patch V1.0.0
[    4.321650][ 2] uhci_hcd 0000:0c:10.2: irq 15, io base 0x00001000
[    4.321762][ 2] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    4.321764][ 2] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.321766][ 2] usb usb4: Product: UHCI Host Controller
[    4.321767][ 2] usb usb4: Manufacturer: Linux 4.4.131-20200704.kylin.server-generic uhci_hcd
[    4.321768][ 2] usb usb4: SerialNumber: 0000:0c:10.2
[    4.321958][ 2] hub 4-0:1.0: USB hub found
[    4.321970][ 2] hub 4-0:1.0: 2 ports detected
[    4.322217][ 2] xhci_hcd 0000:0c:12.0: xHCI Host Controller
[    4.322222][ 2] xhci_hcd 0000:0c:12.0: new USB bus registered, assigned bus number 5
[    4.322970][ 2] With Zhaoxin xHCI TRB prefetch patch V1.0.0
[    4.323376][ 2] xhci_hcd 0000:0c:12.0: hcc params 0x00205fe2 hci version 0x110 quirks 0x0000000000000010
[    4.323544][ 2] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002
[    4.323546][ 2] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.323548][ 2] usb usb5: Product: xHCI Host Controller
[    4.323549][ 2] usb usb5: Manufacturer: Linux 4.4.131-20200704.kylin.server-generic xhci-hcd
[    4.323551][ 2] usb usb5: SerialNumber: 0000:0c:12.0
[    4.323739][ 2] hub 5-0:1.0: USB hub found
[    4.323759][ 2] hub 5-0:1.0: 5 ports detected
[    4.323994][ 2] xhci_hcd 0000:0c:12.0: xHCI Host Controller
[    4.323998][ 2] xhci_hcd 0000:0c:12.0: new USB bus registered, assigned bus number 6
[    4.324001][ 2] xhci_hcd 0000:0c:12.0: Host supports USB 3.1 Enhanced SuperSpeed
[    4.324030][ 2] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    4.324073][ 2] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003
[    4.324075][ 2] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    4.324076][ 2] usb usb6: Product: xHCI Host Controller
[    4.324078][ 2] usb usb6: Manufacturer: Linux 4.4.131-20200704.kylin.server-generic xhci-hcd
[    4.324079][ 2] usb usb6: SerialNumber: 0000:0c:12.0
[    4.324219][ 2] hub 6-0:1.0: USB hub found
[    4.324238][ 2] hub 6-0:1.0: 5 ports detected
[    4.324545][ 2] usbcore: registered new interface driver cdc_acm
[    4.324546][ 2] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    4.324585][ 2] usbcore: registered new interface driver usb-storage
[    4.324612][ 2] usbcore: registered new interface driver usbserial
[    4.324622][ 2] usbcore: registered new interface driver usbserial_generic
[    4.324631][ 2] usbserial: USB Serial support registered for generic
[    4.324645][ 2] usbcore: registered new interface driver usb_serial_simple
[    4.324653][ 2] usbserial: USB Serial support registered for carelink
[    4.324660][ 2] usbserial: USB Serial support registered for zio
[    4.324668][ 2] usbserial: USB Serial support registered for funsoft
[    4.324676][ 2] usbserial: USB Serial support registered for flashloader
[    4.324683][ 2] usbserial: USB Serial support registered for google
[    4.324691][ 2] usbserial: USB Serial support registered for libtransistor
[    4.324698][ 2] usbserial: USB Serial support registered for vivopay
[    4.324706][ 2] usbserial: USB Serial support registered for moto_modem
[    4.324713][ 2] usbserial: USB Serial support registered for motorola_tetra
[    4.324720][ 2] usbserial: USB Serial support registered for novatel_gps
[    4.324728][ 2] usbserial: USB Serial support registered for hp4x
[    4.324735][ 2] usbserial: USB Serial support registered for suunto
[    4.324743][ 2] usbserial: USB Serial support registered for siemens_mpi
[    4.324909][ 2] mousedev: PS/2 mouse device common for all mice
[    4.328855][ 2] usbcore: registered new interface driver usbtouchscreen
[    4.329134][ 2] rtc-ds1307: probe of 0-0068 failed with error -5
[    4.329208][ 2] i2c /dev entries driver
[    4.329674][ 2] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
[    4.329854][ 2] device-mapper: uevent: version 1.0.3
[    4.330100][ 2] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    4.330124][ 2] hidraw: raw HID events driver (C) Jiri Kosina
[    4.330197][ 2] usbcore: registered new interface driver usbhid
[    4.330198][ 2] usbhid: USB HID core driver
[    4.330264][ 2] rtc_hym8563_init =====>
[    4.330433][ 2] Netfilter messages via NETLINK v0.30.
[    4.330445][ 2] nf_tables: (c) 2007-2009 Patrick McHardy <kaber@trash.net>
[    4.331292][ 2] NET: Registered protocol family 10
[    4.331788][ 2] NET: Registered protocol family 17
[    4.331814][ 2] Key type dns_resolver registered
[    4.332105][ 2] registered taskstats version 1
[    4.332123][ 2] Loading compiled-in X.509 certificates
[    4.333056][ 2] Loaded X.509 cert 'Build time autogenerated kernel key: b992c0292664f9ff32c185d19b5df4409e64c07c'
[    4.333164][ 2] zswap: loaded using pool lzo/zbud
[    4.337638][ 2] Key type encrypted registered
[    4.337649][ 2] evm: HMAC attrs: 0x1
[    4.337657][ 2] LSM: module kyextend registered, index 1
[    4.337667][ 2] KYEXTEND: Initialized successfully.
[    4.338391][ 2] hctosys: unable to open rtc device (rtc0)
[    4.378626][ 2] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    4.378850][ 2] ata1.00: ATA-11: HQ SSD 64GB, SBFM01.3, max UDMA/133
[    4.378852][ 2] ata1.00: 125045424 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    4.379076][ 2] ata1.00: configured for UDMA/133
[    4.379589][ 2] scsi 0:0:0:0: Direct-Access     ATA      HQ SSD 64GB      01.3 PQ: 0 ANSI: 5
[    4.379922][ 2] sd 0:0:0:0: [sda] 125045424 512-byte logical blocks: (64.0 GB/59.6 GiB)
[    4.379986][ 2] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    4.380031][ 2] sd 0:0:0:0: [sda] Write Protect is off
[    4.380063][ 2] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.381501][ 2]  sda: sda1 sda2 sda3 < sda5 >
[    4.382131][ 2] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.498592][ 2] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    4.631223][ 2] usb 1-1: New USB device found, idVendor=1a40, idProduct=0101
[    4.631225][ 2] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    4.631226][ 2] usb 1-1: Product: USB2.0 HUB
[    4.631515][ 2] hub 1-1:1.0: USB hub found
[    4.631597][ 2] hub 1-1:1.0: 4 ports detected
[    4.698617][ 2] ata2: SATA link down (SStatus 0 SControl 300)
[    5.018614][61] ata3: SATA link down (SStatus 0 SControl 300)
[    5.142591][ 2] usb 1-1.2: new low-speed USB device number 3 using ehci-pci
[    5.246534][ 2] usb 1-1.2: New USB device found, idVendor=17ef, idProduct=6099
[    5.253723][ 2] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.261342][ 2] usb 1-1.2: Product: Lenovo Traditional USB Keyboard
[    5.267581][ 2] usb 1-1.2: Manufacturer: LiteOn
[    5.275708][ 2] input: LiteOn Lenovo Traditional USB Keyboard as /devices/platform/smb/smb:motherboard/80040000000.peu0-c0/pci0000:00/0000:00:02.0/0000:04:00.0/0000:05:08.0/0000:0b:00.0/0000:0c:10.7/usb1/1-1/1-1.2/1-1.2:1.0/0003:17EF:6099.0001/input/input0
[    5.342613][59] ata4: SATA link down (SStatus 0 SControl 300)
[    5.348980][ 5] Freeing unused kernel memory: 1024K
[    5.350688][ 5] hid-generic 0003:17EF:6099.0001: input,hidraw0: USB HID v1.11 Keyboard [LiteOn Lenovo Traditional USB Keyboard] on usb-0000:0c:10.7-1.2/input0
[    5.356100][ 5] input: LiteOn Lenovo Traditional USB Keyboard as /devices/platform/smb/smb:motherboard/80040000000.peu0-c0/pci0000:00/0000:00:02.0/0000:04:00.0/0000:05:08.0/0000:0b:00.0/0000:0c:10.7/usb1/1-1/1-1.2/1-1.2:1.1/0003:17EF:6099.0002/input/input1
[    5.410712][ 2] hid-generic 0003:17EF:6099.0002: input,hidraw1: USB HID v1.11 Device [LiteOn Lenovo Traditional USB Keyboard] on usb-0000:0c:10.7-1.2/input1
[    5.440968][14] random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.441922][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.441955][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.457215][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.457320][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.457334][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.457475][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.457607][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.457739][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.457871][14] random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
[    5.494597][14] usb 1-1.3: new low-speed USB device number 4 using ehci-pci
[    5.590822][ 2] usb 1-1.3: New USB device found, idVendor=093a, idProduct=2510
[    5.598022][ 2] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    5.605646][ 2] usb 1-1.3: Product: Lenovo USB Optical Mouse
[    5.611281][ 2] usb 1-1.3: Manufacturer: PixArt
[    5.617940][ 2] input: PixArt Lenovo USB Optical Mouse as /devices/platform/smb/smb:motherboard/80040000000.peu0-c0/pci0000:00/0000:00:02.0/0000:04:00.0/0000:05:08.0/0000:0b:00.0/0000:0c:10.7/usb1/1-1/1-1.3/1-1.3:1.0/0003:093A:2510.0003/input/input2
[    5.640053][ 2] hid-generic 0003:093A:2510.0003: input,hidraw2: USB HID v1.11 Mouse [PixArt Lenovo USB Optical Mouse] on usb-0000:0c:10.7-1.3/input0
[    6.077721][ 0] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
[    6.207147][41] systemd[1]: System time before build time, advancing clock.
[    6.248151][41] systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
[    6.266944][41] systemd[1]: Detected architecture arm64.
[    6.272520][41] systemd[1]: Set hostname to <kylin-FT2000>.
[    6.389417][41] systemd[1]: Listening on Journal Socket (/dev/log).
[    6.395829][41] systemd[1]: Reached target User and Group Name Lookups.
[    6.402462][41] systemd[1]: Listening on LVM2 metadata daemon socket.
[    6.409126][41] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    6.418843][41] systemd[1]: Reached target Remote File Systems (Pre).
[    6.425265][41] systemd[1]: Reached target Remote File Systems.
[    6.431193][41] systemd[1]: Listening on Syslog Socket.
[    6.436429][41] systemd[1]: Listening on udev Kernel Socket.
[    6.442107][41] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    6.448985][41] systemd[1]: Listening on fsck to fsckd communication Socket.
[    6.456060][41] systemd[1]: Listening on LVM2 poll daemon socket.
[    6.462140][41] systemd[1]: Reached target Encrypted Volumes.
[    6.467955][41] systemd[1]: Listening on udev Control Socket.
[    6.478612][41] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    6.485966][41] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    6.495051][41] systemd[1]: Created slice User and Session Slice.
[    6.501207][41] systemd[1]: Listening on Journal Socket.
[    6.507602][41] systemd[1]: Created slice System Slice.
[    6.530722][41] systemd[1]: Mounting POSIX Message Queue File System...
[    6.539346][41] systemd[1]: Mounting Debug File System...
[    6.549716][41] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[    6.556338][41] systemd[1]: Reached target Slices.
[    6.562274][41] systemd[1]: Created slice system-serial\x2dgetty.slice.
[    6.570826][41] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    6.583363][41] systemd[1]: Mounting Huge Pages File System...
[    6.590319][41] systemd[1]: Created slice system-getty.slice.
[    6.598024][41] systemd[1]: Starting Remount Root and Kernel File Systems...
[    6.603483][41] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
[    6.613763][41] systemd[1]: Starting Load Kernel Modules...
[    6.621451][41] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    6.633042][41] systemd[1]: Started Read required files in advance.
[    6.642512][41] systemd[1]: Starting Journal Service...
[    6.651685][41] systemd[1]: Mounted Huge Pages File System.
[    6.657383][41] systemd[1]: Mounted Debug File System.
[    6.662574][41] systemd[1]: Mounted POSIX Message Queue File System.
[    6.670417][41] systemd[1]: Started Remount Root and Kernel File Systems.
[    6.678341][41] systemd[1]: Started Load Kernel Modules.
[    6.684808][41] systemd[1]: Started Create list of required static device nodes for the current kernel.
[    6.718827][41] systemd[1]: Started Journal Service.
 
Kylin 4.0.2 kylin-FT2000 ttyS0
 
kylin-FT2000 login: [   17.294592][ 0] mlx5_core 0000:01:00.0: device's health compromised - reached miss count
[   17.302664][ 0] mlx5_core 0000:01:00.0: assert_var[0] 0x00000000
[   17.308652][ 0] mlx5_core 0000:01:00.0: assert_var[1] 0x00000000
[   17.314641][ 0] mlx5_core 0000:01:00.0: assert_var[2] 0x00000000
[   17.320625][ 0] mlx5_core 0000:01:00.0: assert_var[3] 0x00000000
[   17.326608][ 0] mlx5_core 0000:01:00.0: assert_var[4] 0x00000000
[   17.332590][ 0] mlx5_core 0000:01:00.0: assert_exit_ptr 0x009afed8
[   17.338743][ 0] mlx5_core 0000:01:00.0: assert_callra 0x00a735d8
[   17.344722][ 0] mlx5_core 0000:01:00.0: fw_ver 1.22.4020
[   17.350012][ 0] mlx5_core 0000:01:00.0: hw_id 0x0000020d
[   17.355304][ 0] mlx5_core 0000:01:00.0: irisc_index 9
[   17.360339][ 0] mlx5_core 0000:01:00.0: synd 0x1: firmware internal error
[   17.367098][ 0] mlx5_core 0000:01:00.0: ext_synd 0x8a02
[   17.654588][ 0] mlx5_core 0000:01:00.1: device's health compromised - reached miss count
[   17.662651][ 0] mlx5_core 0000:01:00.1: assert_var[0] 0x00000000
[   17.668633][ 0] mlx5_core 0000:01:00.1: assert_var[1] 0x00000000
[   17.674614][ 0] mlx5_core 0000:01:00.1: assert_var[2] 0x00000000
[   17.680593][ 0] mlx5_core 0000:01:00.1: assert_var[3] 0x00000000
[   17.686573][ 0] mlx5_core 0000:01:00.1: assert_var[4] 0x00000000
[   17.692552][ 0] mlx5_core 0000:01:00.1: assert_exit_ptr 0x009afed8
[   17.698707][ 0] mlx5_core 0000:01:00.1: assert_callra 0x00a735d8
[   17.704686][ 0] mlx5_core 0000:01:00.1: fw_ver 1.22.4020
[   17.709973][ 0] mlx5_core 0000:01:00.1: hw_id 0x0000020d
[   17.715262][ 0] mlx5_core 0000:01:00.1: irisc_index 9
[   17.720297][ 0] mlx5_core 0000:01:00.1: synd 0x1: firmware internal error
[   17.727057][ 0] mlx5_core 0000:01:00.1: ext_synd 0x8a02
 
Kylin 4.0.2 kylin-FT2000 ttyS0
 
kylin-FT2000 login:
Kylin 4.0.2 kylin-FT2000 ttyS0
 
kylin-FT2000 login:
Kylin 4.0.2 kylin-FT2000 ttyS0
 
kylin-FT2000 login:

在串口中输入用户名和密码即可登录系统,然后就可以输入linux常用命令

kylin@kylin-FT2000:~$ ifconfig
enp12s13  Link encap:以太网  硬件地址 02:00:e0:2a:0f:42 
          UP BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
          中断:13 基本地址:0x1080 Memory:80061108000-80061108fff
 
enp1s0f0  Link encap:以太网  硬件地址 00:00:00:00:00:00 
          UP BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
 
enp1s0f1  Link encap:以太网  硬件地址 00:00:00:00:00:01 
          UP BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
 
enp6s0f0  Link encap:以太网  硬件地址 28:a0:c9:00:00:00 
          UP BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
          Memory:80061260000-8006127ffff
 
enp6s0f1  Link encap:以太网  硬件地址 00:a0:c9:00:00:01 
          UP BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
          Memory:80061240000-8006125ffff
 
enp6s0f2  Link encap:以太网  硬件地址 00:a0:c9:00:00:02 
          UP BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
          Memory:80061220000-8006123ffff
 
enp6s0f3  Link encap:以太网  硬件地址 00:a0:c9:00:00:03 
          UP BROADCAST MULTICAST  MTU:1500  跃点数:1
          接收数据包:0 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:0 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1000
          接收字节:0 (0.0 B)  发送字节:0 (0.0 B)
          Memory:80061200000-8006121ffff
 
lo        Link encap:本地环回 
          inet 地址:127.0.0.1  掩码:255.0.0.0
          inet6 地址: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  跃点数:1
          接收数据包:534 错误:0 丢弃:0 过载:0 帧数:0
          发送数据包:534 错误:0 丢弃:0 过载:0 载波:0
          碰撞:0 发送队列长度:1
          接收字节:39964 (39.9 KB)  发送字节:39964 (39.9 KB)

  • 1
    点赞
  • 17
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
飞腾FT1500A/16是一款采用飞腾V10处理器的计算机,可以运行麒麟操作系统。要安装麒麟系统,首先需要使用Uboot工具进行安装。 Uboot是一种用于嵌入式系统的引导加载程序,可以在正式运行操作系统之前加载并初始化硬件设备,从而保证操作系统正常启动。在使用Uboot进行安装时,需要按照以下步骤进行操作: Step 1:准备工作 在开始安装之前,需要准备一台电脑和一个USB接口的U盘。电脑需要安装TFTP服务器和串口工具,U盘需要格式化为FAT32格式。 Step 2:拷贝文件 将麒麟系统文件拷贝到TFTP服务器目录中,同时将Uboot工具拷贝到U盘中。 Step 3:配置串口 通过串口连接FT1500A/16并设置串口参数。 Step 4:启动Uboot 按下FT1500A/16上的Reset键,进入Uboot界面。 Step 5:设置网络参数 在Uboot命令行界面中输入以下命令: setenv ipaddr 192.168.1.100 setenv serverip 192.168.1.1 其中,ipaddr为FT1500A/16的IP地址,serverip为TFTP服务器的IP地址。设置完成后,保存并退出。 Step 6:下载并安装麒麟系统 在Uboot命令行界面中输入以下命令: tftpboot 0x82000000 openEuler-kunpeng-2.0-aarch64-minirootfs.img cp.b 0x82000000 0x5fc00000 0x800000 其中,第一个命令将麒麟系统文件下载到内存中,第二个命令将系统文件安装到FT1500A/16的Flash存储器中。安装完成后,重启计算机即可使用麒麟系统。 总结: 通过Uboot工具安装麒麟系统需要进行多个步骤,其中涉及到的命令较多,需要认真阅读和理解。此外,安装过程中需要注意参数设置和文件拷贝等细节问题,以确保安装过程顺利。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值