Jump to content

Search the Community

Showing results for 'realtime kernel'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Armbian
    • Armbian project administration
  • Community
    • Announcements
    • SBC News
    • Framework and userspace feature requests
    • Off-topic
  • Using Armbian
    • Beginners
    • Software, Applications, Userspace
    • Advanced users - Development
  • Standard support
    • Amlogic meson
    • Allwinner sunxi
    • Rockchip
    • Other families
  • Community maintained / Staging
    • TV boxes
    • Amlogic meson
    • Allwinner sunxi
    • Marvell mvebu
    • Rockchip
    • Other families
  • Support

Categories

  • Official giveaways
  • Community giveaways

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Matrix


Mastodon


IRC


Website URL


XMPP/Jabber


Skype


Github


Discord


Location


Interests

  1. Thank you ebin-dev. Works fine now ! For info, after moving the OS to emmc, the system failed starting for 3 times. It encountered Internal error: Oops - undefined instruction during Linux 6.6.8 startup. I still have an issue with rk3288-crypto. But it doesn't seem to impact the system a lot : Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: will run requests pump with realtime priority Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register ecb(aes) as ecb-aes-rk Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register cbc(aes) as cbc-aes-rk Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register ecb(des) as ecb-des-rk Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register cbc(des) as cbc-des-rk Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register ecb(des3_ede) as ecb-des3-ede-rk Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register cbc(des3_ede) as cbc-des3-ede-rk Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register sha1 as rk-sha1 Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register sha256 as rk-sha256 Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b0000.crypto: Register md5 as rk-md5 Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b8000.crypto: can't request region for resource [mem 0xff8b8000-0xff> Apr 01 14:18:12 helios64 kernel: rk3288-crypto ff8b8000.crypto: Crypto Accelerator not successfully registered Apr 01 14:18:12 helios64 kernel: rk3288-crypto: probe of ff8b8000.crypto failed with error -16
  2. Hey folks, im trying to compile a realtime kernel for mt orange pi 5. I plan to use it for djing. A fully preemptive kernel delivers better performance for this, as less xruns appear. I am following the official dev instructions and am using the docker method, Compiling only the kernel, not the entire armbian OS. I copied a realtime patch (actually I tried several sub versions of 5.10) from the kernel.org realtime project site into the userpatches directory (I looked up the correct orange pi 5 subfolder name but forgot it rn) but compiling throws me some errors. Has anyone succeeded in creating a kernel like this for the orange pi 5 and/or could give me any advice for doing so? I actually dont care much about the kernel version, I just need it to be fully preemptive .. Help is much apprecieated! Kenny
  3. Description There is an orbiting patch that adds True Random Number Generator (TRNG) completing the rockchip mainline crypto driver. This PR introduces the patch (which is in RFC condition, thus passible of changes) with these benefits: provides better entropy (see below) removes the memory region claim error in dmesg is almost in mainline Some caveats: the existing driver covers rk3288 (32 bit, not applicable in this context), rk3328 and rk3399, but only rk3399 seems to have working hardware. For the other two chips, the TRNG is just disabled. How Has This Been Tested? [x] Current 6.6 kernel packages built and installed on live system (rk3399) [x] Edge 6.7 kernel packages built and installed on live system (rk3399) dmesg can be used to verify if TRNG is enabled: [ 8.091984] rk3288-crypto ff8b0000.crypto: will run requests pump with realtime priority [ 8.092031] rk3288-crypto ff8b0000.crypto: Register ecb(aes) as ecb-aes-rk [ 8.092077] rk3288-crypto ff8b0000.crypto: Register cbc(aes) as cbc-aes-rk [ 8.092087] rk3288-crypto ff8b0000.crypto: Register ecb(des) as ecb-des-rk [ 8.092098] rk3288-crypto ff8b0000.crypto: Register cbc(des) as cbc-des-rk [ 8.092107] rk3288-crypto ff8b0000.crypto: Register ecb(des3_ede) as ecb-des3-ede-rk [ 8.092116] rk3288-crypto ff8b0000.crypto: Register cbc(des3_ede) as cbc-des3-ede-rk [ 8.092126] rk3288-crypto ff8b0000.crypto: Register sha1 as rk-sha1 [ 8.092137] rk3288-crypto ff8b0000.crypto: Register sha256 as rk-sha256 [ 8.092146] rk3288-crypto ff8b0000.crypto: Register md5 as rk-md5 [ 8.092156] rk3288-crypto ff8b0000.crypto: Register TRNG with sample=1200 The mail in the kernel mailing list provides some insight and instruction on how to prove effectiveness of the RNG. Testing existing driver provided by vendor kernel looks quite ineffective in providing decent randomness: root@orangepi4-lts:~# cat /sys/devices/virtual/misc/hw_random/rng_current rockchip root@orangepi4-lts:~# dd if=/dev/hwrng count=100 bs=2048 | rngtest rngtest 2.2 Copyright (c) 2004 by Henrique de Moraes Holschuh This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. rngtest: starting FIPS tests... rngtest: entropy source exhausted! rngtest: bits received from input: 1638400 100+0 records in 100+0 records out rngtest: FIPS 140-2 successes: 0 rngtest: FIPS 140-2 failures: 81 rngtest: FIPS 140-2(2001-10-10) Monobit: 3 rngtest: FIPS 140-2(2001-10-10) Poker: 81 rngtest: FIPS 140-2(2001-10-10) Runs: 81 rngtest: FIPS 140-2(2001-10-10) Long run: 0 rngtest: FIPS 140-2(2001-10-10) Continuous run: 0 rngtest: input channel speed: (min=528.429; avg=1086.773; max=1379.618)Kibits/s rngtest: FIPS tests speed: (min=14.341; avg=47.788; max=59.051)Mibits/s 204800 bytes (205 kB, 200 KiB) copied, 1.52111 s, 135 kB/srngtest: Program run time: 1522960 microseconds While the mainline patch adjusts the number of samples and, albeit being slower and not high quality, seems to be better: root@orangepi4-lts:~# dd if=/dev/hwrng count=100 bs=2048 | rngtest rngtest 2.2 Copyright (c) 2004 by Henrique de Moraes Holschuh This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. rngtest: starting FIPS tests... rngtest: entropy source exhausted! rngtest: bits received from input: 1638400 100+0 records in 100+0 records out rngtest: FIPS 140-2 successes: 28 rngtest: FIPS 140-2 failures: 53 rngtest: FIPS 140-2(2001-10-10) Monobit: 52 rngtest: FIPS 140-2(2001-10-10) Poker: 13 rngtest: FIPS 140-2(2001-10-10) Runs: 3 rngtest: FIPS 140-2(2001-10-10) Long run: 0 rngtest: FIPS 140-2(2001-10-10) Continuous run: 0 204800 bytes (205 kB, 200 KiB) copied, 7.31521 s, 28.0 kB/s rngtest: input channel speed: (min=131.364; avg=222.220; max=278.743)Kibits/s rngtest: FIPS tests speed: (min=17.628; avg=30.777; max=76.600)Mibits/s rngtest: Program run time: 7316184 microseconds Since the original driver from vendor kernel looks like quite useless, I would like to remove this and this soon from the patch archives, and perhaps adapt the mainline driver to provide RNG for rk3308 too, although it is probably useless since the hardware seems to be ineffective on rk3328 (see patch comments) and probably rk3308 is in the same league. @brentr what do you think about? Checklist: [x] My code follows the style guidelines of this project [x] I have performed a self-review of my own code [x] I have commented my code, particularly in hard-to-understand areas [x] I have made corresponding changes to the documentation [x] My changes generate no new warnings [x] Any dependent changes have been merged and published in downstream modules View the full article
  4. I installed "Armbian 23.8.3 bookworm" to Odroid HC1. Installation was OK, it boots. Armbian is installed on microSDHC card. I wanted to format SATA drive with XFS but I cannot mount it. 1) I installed xfsprogs (apt install xfsprogs) $ dpkg -la | grep xfs ii xfsprogs 6.1.0-1 armhf Utilities for managing the XFS filesystem 2) I created GPT partition table on SATA drive and I created one partition, /dev/sdb1 # fdisk -l /dev/sdb Disk /dev/sdb: 1.82 TiB, 2000398934016 bytes, 3907029168 sectors Disk model: Generic Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disklabel type: gpt Disk identifier: EF0AF689-AAD7-C443-B5AE-03EFFC99E02D Device Start End Sectors Size Type /dev/sdb1 2048 3907028991 3907026944 1.8T Linux filesystem 3) I formated partition with xfs: # mkfs.xfs /dev/sdb1 4) I checked partition with xfs_repair, no issues # xfs_repair /dev/sdb1 5) Info about filesystem: # xfs_info /dev/sdb1 meta-data=/dev/sdb1 isize=512 agcount=4, agsize=122094592 blks = sectsz=4096 attr=2, projid32bit=1 = crc=1 finobt=1, sparse=1, rmapbt=0 = reflink=1 bigtime=1 inobtcount=1 nrext64=0 data = bsize=4096 blocks=488378368, imaxpct=5 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 ascii-ci=0, ftype=1 log =internal log bsize=4096 blocks=238466, version=2 = sectsz=4096 sunit=1 blks, lazy-count=1 realtime =none extsz=4096 blocks=0, rtextents=0 6) The issue, I cannot mount the partition: # mount /dev/sdb1 /srv/ mount: /srv: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error. dmesg(1) may have more information after failed mount system call. # dmesg |grep XFS [ 7578.496569] SGI XFS with ACLs, security attributes, realtime, no debug enabled ... [ 7578.525167] XFS (sdb1): Superblock has unknown read-only compatible features (0x8) enabled. [ 7578.525175] XFS (sdb1): Attempted to mount read-only compatible filesystem read-write. [ 7578.525180] XFS (sdb1): Filesystem can only be safely mounted read only. [ 7578.525201] XFS (sdb1): SB validate failed with error -22. # uname -a Linux hc1 5.4.253-current-odroidxu4 #2 SMP PREEMPT Mon Aug 14 01:33:04 UTC 2023 armv7l GNU/Linux Any idea what is broken? Is it kernel??
  5. I tried to replicate this issue on i686 box running Debian Bookworm and it works there, no problem. 1) Create file for disk, 50GB # dd if=/dev/zero of=xfstest.bin bs=1M count=50000 2) Format disk with XFS # mkfs.xfs xfstest.bin 3) show XFS details # xfs_info xfstest.bin meta-data=/dev/loop0 isize=512 agcount=4, agsize=3276800 blks = sectsz=512 attr=2, projid32bit=1 = crc=1 finobt=1, sparse=1, rmapbt=0 = reflink=1 bigtime=1 inobtcount=1 nrext64=0 data = bsize=4096 blocks=13107200, imaxpct=25 = sunit=0 swidth=0 blks naming =version 2 bsize=4096 ascii-ci=0, ftype=1 log =internal log bsize=4096 blocks=16384, version=2 = sectsz=512 sunit=0 blks, lazy-count=1 realtime =none extsz=4096 blocks=0, rtextents=0 4) mount FS, no issue here! # mount -o loop xfstest.bin /srv # # mount | grep xfs /root/xfstest.bin on /srv type xfs (rw,relatime,attr2,inode64,logbufs=8,logbsize=32k,noquota) 5) check dmesg # dmesg | grep XFS [2992759.600513] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled [2992759.618175] XFS (loop0): Mounting V5 Filesystem [2992759.649994] XFS (loop0): Ending clean mount 6) system info, kernel is 6.1.0 # uname -a Linux worm 6.1.0-12-686-pae #1 SMP PREEMPT_DYNAMIC Debian 6.1.52-1 (2023-09-07) i686 GNU/Linux # # dpkg -l | grep xfsprogs ii xfsprogs 6.1.0-1 i386 Utilities for managing the XFS filesystem So, I assume that issue is really the kernel 5.x that is delivered with Armbian for Odroid XU4 (HC1/HC2)...
  6. Looks more like manually installed kernel, given that kernel is a realtime kernel. Ofcourse that does mean its not our issue as its not our kernel
  7. Im stubmeld accros armbian while search for a ARM distribution for my RockPi S. I started successful with writing it to a SD Card and run it from there. Now i want to write it to the internal storage and start it from there. So far so got, everything "worked". But it stucks in a boot loop. I attached a Serial/TTL to USB converter and noticed the same output over and over again. Willkommen zu minicom 2.7.1 Optionen: I18n Übersetzt am Aug 13 2017, 15:25:34. Port /dev/ttyUSB0, 15:37:49 Drücken Sie CTRL-A Z für Hilfe zu speziellen Tasten DDR Version V2.06 20211109 CHIP ID = 0x00003308 REG2C: 0x00000033, 0x00000034 In 589MHz DDR3 Col=10 Bank=3 Row=15 Size=512MB OUT: sdram_init finish. Boot1 Release Time: Mar 24 2022 08:28:57, version: 1.36 ROM VER:0x56323030, 19 chip_id:330800,0 ChipType = 0x13, 511 DPLL = 1300 MHz ...nandc_flash_init enter... No.1 FLASH ID:ff ff ff ff ff ff DPLL = 1300 MHz sfc nor id: ff ff ff DPLL = 1300 MHz sfc_nand id: ff ff ff NeedKHz=200KHz,clock=12000KHz NeedKHz=200KHz,clock=12000KHz NeedKHz=200KHz,clock=12000KHz mmc2:cmd5,20 DPLL = 1300 MHz NeedKHz=24000KHz,clock=650000KHz DPLL = 1300 MHz NeedKHz=40000KHz,clock=650000KHz SdmmcInit=2 0 BootCapSize=0 UserCapSize=3696MB FwPartOffset=2000 , 0 SdmmcInit=0 NOT PRESENT StorageInit ok = 19304 SecureMode = 0 Secure read PBA: 0x4 Secure read PBA: 0x404 Secure read PBA: 0x804 Secure read PBA: 0xc04 Secure read PBA: 0x1004 SecureInit ret = 0, SecureMode = 0 atags_set_bootdev: ret:(0) GPT 0x3306530 signature is wrong recovery gpt... GPT 0x3306530 signature is wrong recovery gpt fail! LoadTrust Addr:0x4000 No find bl30.bin No find bl32.bin Load uboot, ReadLba = 2000 Load OK, addr=0x600000, size=0x994c8 RunBL31 0x40000 @ 96576 us INFO: Preloader serial: 0 NOTICE: BL31: v1.3(release):30f1405 NOTICE: BL31: Built : 17:08:28, Sep 23 2019 INFO: Lastlog: last=0x100000, realtime=0x102000, size=0x2000 INFO: ARM GICv2 driver initialized INFO: Using opteed sec cpu_context! INFO: boot cpu mask: 1 INFO: plat_rockchip_pmu_init: pd status 0xe b INFO: BL31: Initializing runtime services WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE initialization. SMC`s destined for OPTEE will return SMC_UNK ERROR: Error initializing runtime service opteed_fast INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x600000 INFO: SPSR = 0x3c9 U-Boot 2022.04-armbian (May 27 2023 - 19:27:05 +0000) Model: Radxa ROCK Pi S DRAM: 510 MiB Core: 276 devices, 20 uclasses, devicetree: separate MMC: dwmmc@ff480000: 1, dwmmc@ff490000: 0 Loading Environment from nowhere... OK In: serial Out: serial Err: serial Model: Radxa ROCK Pi S rockchip_dnl_key_pressed read board id failed Net: eth0: ethernet@ff4e0000 Hit any key to stop autoboot: 0 Card did not respond to voltage select! : -110 switch to partitions #0, OK mmc0 is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 3045 bytes read in 5 ms (594.7 KiB/s) ## Executing script at 00500000 Boot script loaded from mmc 0 176 bytes read in 4 ms (43 KiB/s) 14086333 bytes read in 597 ms (22.5 MiB/s) 29331968 bytes read in 1238 ms (22.6 MiB/s) 54770 bytes read in 10 ms (5.2 MiB/s) Failed to load '/boot/dtb/rockchip/overlay/rk3308-fixup.scr' Moving Image from 0x680000 to 0x800000, end=2490000 ## Loading init Ramdisk from Legacy Image at 04000000 ... Image Name: uInitrd Image Type: AArch64 Linux RAMDisk Image (gzip compressed) Data Size: 14086269 Bytes = 13.4 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 02800000 Booting using the fdt blob at 0x2800000 Loading Ramdisk to 1d1b7000, end 1df2607d ... OK ERROR: reserving fdt memory region failed (addr=0 size=0 flags=0) Loading Device Tree to 000000001d141000, end 000000001d1b6fff ... OK Starting kernel ... Loading, please wait... Starting systemd-udevd version 252.6-1 Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... done. Begin: Will now check root file system ... fsck from util-linux 2.38.1 [/sbin/fsck.ext4 (1) -- /dev/mmcblk0p1] fsck.ext4 -a -C0 /dev/mmcblk0p1 armbi_root: clean, 29764/73296 files, 263864/292864 blocks done. done. Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/init-bottom ... done. Welcome to Armbian 23.05.1 bookworm! [ OK ] Created slice system-modpr��…lice - Slice /system/modprobe. [ OK ] Created slice system-seria��… - Slice /system/serial-getty. [ OK ] Created slice user.slice - User and Session Slice. [ OK ] Started systemd-ask-passwo��…quests to Console Directory Watch. [ OK ] Started systemd-ask-passwo��… Requests to Wall Directory Watch. [ OK ] Set up automount proc-sys-��…rmats File System Automount Point. [ OK ] Reached target cryptsetup.��…get - Local Encrypted Volumes. DDR Version V2.06 20211109 CHIP ID = 0x00003308 REG2C: 0x00000033, 0x00000034 In 589MHz DDR3 Col=10 Bank=3 Row=15 Size=512MB OUT: sdram_init finish. Boot1 Release Time: Mar 24 2022 08:28:57, version: 1.36 ROM VER:0x56323030, 19 chip_id:330800,0 ChipType = 0x13, 512 DPLL = 1300 MHz ...nandc_flash_init enter... No.1 FLASH ID:ff ff ff ff ff ff DPLL = 1300 MHz sfc nor id: ff ff ff DPLL = 1300 MHz sfc_nand id: ff ff ff NeedKHz=200KHz,clock=12000KHz NeedKHz=200KHz,clock=12000KHz NeedKHz=200KHz,clock=12000KHz mmc2:cmd5,20 DPLL = 1300 MHz NeedKHz=24000KHz,clock=650000KHz DPLL = 1300 MHz NeedKHz=40000KHz,clock=650000KHz SdmmcInit=2 0 BootCapSize=0 UserCapSize=3696MB FwPartOffset=2000 , 0 SdmmcInit=0 NOT PRESENT StorageInit ok = 19297 SecureMode = 0 Secure read PBA: 0x4 Secure read PBA: 0x404 Secure read PBA: 0x804 Secure read PBA: 0xc04 Secure read PBA: 0x1004 SecureInit ret = 0, SecureMode = 0 atags_set_bootdev: ret:(0) GPT 0x3306530 signature is wrong recovery gpt... GPT 0x3306530 signature is wrong recovery gpt fail! LoadTrust Addr:0x4000 No find bl30.bin No find bl32.bin Load uboot, ReadLba = 2000 Load OK, addr=0x600000, size=0x994c8 RunBL31 0x40000 @ 96630 us INFO: Preloader serial: 0 NOTICE: BL31: v1.3(release):30f1405 NOTICE: BL31: Built : 17:08:28, Sep 23 2019 INFO: Lastlog: last=0x100000, realtime=0x102000, size=0x2000 INFO: ARM GICv2 driver initialized INFO: Using opteed sec cpu_context! INFO: boot cpu mask: 1 INFO: plat_rockchip_pmu_init: pd status 0xe b INFO: BL31: Initializing runtime services WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE initialization. SMC`s destined for OPTEE will return SMC_UNK ERROR: Error initializing runtime service opteed_fast INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x600000 INFO: SPSR = 0x3c9 U-Boot 2022.04-armbian (May 27 2023 - 19:27:05 +0000) Model: Radxa ROCK Pi S DRAM: 510 MiB Core: 276 devices, 20 uclasses, devicetree: separate MMC: dwmmc@ff480000: 1, dwmmc@ff490000: 0 Loading Environment from nowhere... OK In: serial Out: serial Err: serial Model: Radxa ROCK Pi S rockchip_dnl_key_pressed read board id failed Net: eth0: ethernet@ff4e0000 Hit any key to stop autoboot: 0 Card did not respond to voltage select! : -110 switch to partitions #0, OK mmc0 is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 3045 bytes read in 5 ms (594.7 KiB/s) ## Executing script at 00500000 Boot script loaded from mmc 0 176 bytes read in 5 ms (34.2 KiB/s) 14086333 bytes read in 597 ms (22.5 MiB/s) 29331968 bytes read in 1238 ms (22.6 MiB/s) 54770 bytes read in 10 ms (5.2 MiB/s) Failed to load '/boot/dtb/rockchip/overlay/rk3308-fixup.scr' Moving Image from 0x680000 to 0x800000, end=2490000 ## Loading init Ramdisk from Legacy Image at 04000000 ... Image Name: uInitrd Image Type: AArch64 Linux RAMDisk Image (gzip compressed) Data Size: 14086269 Bytes = 13.4 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 02800000 Booting using the fdt blob at 0x2800000 Loading Ramdisk to 1d1b7000, end 1df2607d ... OK ERROR: reserving fdt memory region failed (addr=0 size=0 flags=0) Loading Device Tree to 000000001d141000, end 000000001d1b6fff ... OK Starting kernel ... Loading, please wait... Starting systemd-udevd version 252.6-1 Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... done. Begin: Will now check root file system ... fsck from util-linux 2.38.1 [/sbin/fsck.ext4 (1) -- /dev/mmcblk0p1] fsck.ext4 -a -C0 /dev/mmcblk0p1 armbi_root: clean, 29764/73296 files, 263864/292864 blocks done. done. Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/init-bottom ... done. Welcome to Armbian 23.05.1 bookworm! [ OK ] Created slice system-modpr��…lice - Slice /system/modprobe. [ OK ] Created slice system-seria��… - Slice /system/serial-getty. [ OK ] Created slice user.slice - User and Session Slice. [ OK ] Started systemd-ask-passwo��…quests to Console Directory Watch. [ OK ] Started systemd-ask-passwo��… Requests to Wall Directory Watch. DDR Version V2.06 20211109 CHIP ID = 0x00003308 REG2C: 0x00000033, 0x00000034 In 589MHz DDR3 Col=10 Bank=3 Row=15 Size=512MB OUT: sdram_init finish. Boot1 Release Time: Mar 24 2022 08:28:57, version: 1.36 ROM VER:0x56323030, 19 chip_id:330800,0 ChipType = 0x13, 511 DPLL = 1300 MHz ...nandc_flash_init enter... No.1 FLASH ID:ff ff ff ff ff ff DPLL = 1300 MHz sfc nor id: ff ff ff DPLL = 1300 MHz sfc_nand id: ff ff ff NeedKHz=200KHz,clock=12000KHz NeedKHz=200KHz,clock=12000KHz NeedKHz=200KHz,clock=12000KHz mmc2:cmd5,20 DPLL = 1300 MHz NeedKHz=24000KHz,clock=650000KHz DPLL = 1300 MHz NeedKHz=40000KHz,clock=650000KHz SdmmcInit=2 0 BootCapSize=0 UserCapSize=3696MB FwPartOffset=2000 , 0 SdmmcInit=0 NOT PRESENT StorageInit ok = 19338 SecureMode = 0 Secure read PBA: 0x4 Secure read PBA: 0x404 Secure read PBA: 0x804 Secure read PBA: 0xc04 Secure read PBA: 0x1004 SecureInit ret = 0, SecureMode = 0 atags_set_bootdev: ret:(0) GPT 0x3306530 signature is wrong recovery gpt... GPT 0x3306530 signature is wrong recovery gpt fail! LoadTrust Addr:0x4000 No find bl30.bin No find bl32.bin Load uboot, ReadLba = 2000 Load OK, addr=0x600000, size=0x994c8 RunBL31 0x40000 @ 96666 us INFO: Preloader serial: 0 NOTICE: BL31: v1.3(release):30f1405 NOTICE: BL31: Built : 17:08:28, Sep 23 2019 INFO: Lastlog: last=0x100000, realtime=0x102000, size=0x2000 INFO: ARM GICv2 driver initialized INFO: Using opteed sec cpu_context! INFO: boot cpu mask: 1 INFO: plat_rockchip_pmu_init: pd status 0xe b INFO: BL31: Initializing runtime services WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE initialization. SMC`s destined for OPTEE will return SMC_UNK ERROR: Error initializing runtime service opteed_fast INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x600000 INFO: SPSR = 0x3c9 U-Boot 2022.04-armbian (May 27 2023 - 19:27:05 +0000) Model: Radxa ROCK Pi S DRAM: 510 MiB Core: 276 devices, 20 uclasses, devicetree: separate MMC: dwmmc@ff480000: 1, dwmmc@ff490000: 0 Loading Environment from nowhere... OK In: serial Out: serial Err: serial Model: Radxa ROCK Pi S rockchip_dnl_key_pressed read board id failed Net: eth0: ethernet@ff4e0000 Hit any key to stop autoboot: 0 Card did not respond to voltage select! : -110 switch to partitions #0, OK mmc0 is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 3045 bytes read in 5 ms (594.7 KiB/s) ## Executing script at 00500000 Boot script loaded from mmc 0 176 bytes read in 4 ms (43 KiB/s) 14086333 bytes read in 597 ms (22.5 MiB/s) 29331968 bytes read in 1238 ms (22.6 MiB/s) 54770 bytes read in 10 ms (5.2 MiB/s) Failed to load '/boot/dtb/rockchip/overlay/rk3308-fixup.scr' Moving Image from 0x680000 to 0x800000, end=2490000 ## Loading init Ramdisk from Legacy Image at 04000000 ... Image Name: uInitrd Image Type: AArch64 Linux RAMDisk Image (gzip compressed) Data Size: 14086269 Bytes = 13.4 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 02800000 Booting using the fdt blob at 0x2800000 Loading Ramdisk to 1d1b7000, end 1df2607d ... OK ERROR: reserving fdt memory region failed (addr=0 size=0 flags=0) Loading Device Tree to 000000001d141000, end 000000001d1b6fff ... OK Starting kernel ... Loading, please wait... Starting systemd-udevd version 252.6-1 Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... done. Begin: Will now check root file system ... fsck from util-linux 2.38.1 [/sbin/fsck.ext4 (1) -- /dev/mmcblk0p1] fsck.ext4 -a -C0 /dev/mmcblk0p1 armbi_root: clean, 29764/73296 files, 263864/292864 blocks done. done. Begin: Running /scripts/local-bottom ... done. Begin: Running /scripts/init-bottom ... done. Welcome to Armbian 23.05.1 bookworm! I followed this tutorials: - https://www.armbian.com/rockpi-s - https://wiki.radxa.com/RockpiS/dev/sdnand-install - https://wiki.radxa.com/RockpiS/dev/serial-console Unfotunatly some of the links are broken and i need to find the file (rk3308_loader_uart0_m0_emmc_port_support_sd_20190717.bin) via google: https://forum.radxa.com/t/where-can-i-find-the-rk3308-loader-binary/2769 As i found it, i extracted the armbian image (Armbian_23.5.1_Rockpi-s_bookworm_current_6.1.30_minimal.img) and proceeded with the flasing progress. It worked, but as said, its stucks in a boot loop. Can any one help me and point out where to start debugging? Im not very familiar with embedded linux/hardware. Thanks in advance and for the awesome work!
  8. I'm trying to get OctoPrint to work on my Pine64 to control my Qidi i-mate(s) 3d printer. I've done a fresh install of Armbian on the Pine64 with no problems. I'm not sure where to go to troubleshoot the USB-ttl serial connection. I've double checked that the cable is installed right on the Qidi motherboard, this application doesn't need the vcc connected so the other three are. I've tried enabling the UART's in the armbian-config with no luck on the connection. While I've used Linux for quite some time, I'm not familiar with this sort of thing and I'm not even sure where to start the troublshooting. I can easily provide additional logs. This is on an orginal Pine64 from the Kickstarter Here's the output of armbian-release # PLEASE DO NOT EDIT THIS FILE BOARD=pine64 BOARD_NAME="Pine64" BOARDFAMILY=sun50iw1 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=1a8daf0 VERSION=23.02.2 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable Here's the output of dmesg: [ 0.073456] cryptd: max_cpu_qlen set to 1000 [ 0.144337] raid6: neonx8 gen() 1452 MB/s [ 0.212432] raid6: neonx8 xor() 1089 MB/s [ 0.280523] raid6: neonx4 gen() 1489 MB/s [ 0.348606] raid6: neonx4 xor() 1081 MB/s [ 0.416724] raid6: neonx2 gen() 1412 MB/s [ 0.484797] raid6: neonx2 xor() 993 MB/s [ 0.552899] raid6: neonx1 gen() 1229 MB/s [ 0.620990] raid6: neonx1 xor() 848 MB/s [ 0.689083] raid6: int64x8 gen() 1013 MB/s [ 0.757159] raid6: int64x8 xor() 533 MB/s [ 0.825270] raid6: int64x4 gen() 1126 MB/s [ 0.893349] raid6: int64x4 xor() 576 MB/s [ 0.961461] raid6: int64x2 gen() 962 MB/s [ 1.029567] raid6: int64x2 xor() 508 MB/s [ 1.097657] raid6: int64x1 gen() 716 MB/s [ 1.165763] raid6: int64x1 xor() 372 MB/s [ 1.165770] raid6: using algorithm neonx4 gen() 1489 MB/s [ 1.165776] raid6: .... xor() 1081 MB/s, rmw enabled [ 1.165782] raid6: using neon recovery algorithm [ 1.166436] iommu: Default domain type: Translated [ 1.166445] iommu: DMA domain TLB invalidation policy: strict mode [ 1.166766] SCSI subsystem initialized [ 1.166984] usbcore: registered new interface driver usbfs [ 1.167034] usbcore: registered new interface driver hub [ 1.167071] usbcore: registered new device driver usb [ 1.167401] pps_core: LinuxPPS API ver. 1 registered [ 1.167408] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.167436] PTP clock support registered [ 1.167912] ARM FF-A: FFA_VERSION returned not supported [ 1.168321] Advanced Linux Sound Architecture Driver Initialized. [ 1.169054] NetLabel: Initializing [ 1.169060] NetLabel: domain hash size = 128 [ 1.169065] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.169143] NetLabel: unlabeled traffic allowed by default [ 1.169635] clocksource: Switched to clocksource arch_sys_counter [ 1.169892] VFS: Disk quotas dquot_6.6.0 [ 1.169954] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.170603] AppArmor: AppArmor Filesystem Enabled [ 1.178146] NET: Registered PF_INET protocol family [ 1.178438] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 1.179812] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 1.179857] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.179874] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.180034] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 1.180363] TCP: Hash tables configured (established 16384 bind 16384) [ 1.180523] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.180587] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.180811] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.181372] Trying to unpack rootfs image as initramfs... [ 1.191475] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.198962] Initialise system trusted keyrings [ 1.199059] Key type blacklist registered [ 1.199243] workingset: timestamp_bits=44 max_order=19 bucket_order=0 [ 1.205860] zbud: loaded [ 1.207547] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.210150] integrity: Platform Keyring initialized [ 1.263627] xor: automatically using best checksumming function 32regs [ 1.263655] async_tx: api initialized (async) [ 1.263682] Key type asymmetric registered [ 1.263688] Asymmetric key parser 'x509' registered [ 1.263842] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 1.264025] io scheduler mq-deadline registered [ 1.264033] io scheduler kyber registered [ 1.264251] io scheduler bfq registered [ 1.268094] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver [ 1.278072] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled [ 1.289754] loop: module loaded [ 1.292254] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.292287] ehci-platform: EHCI generic platform driver [ 1.292448] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.292463] ohci-platform: OHCI generic platform driver [ 1.292936] usbcore: registered new interface driver usb-storage [ 1.293482] mousedev: PS/2 mouse device common for all mice [ 1.294632] sun6i-rtc 1f00000.rtc: registered as rtc0 [ 1.294685] sun6i-rtc 1f00000.rtc: setting system clock to 1970-01-01T00:00:05 UTC (5) [ 1.294807] sun6i-rtc 1f00000.rtc: RTC enabled [ 1.294911] i2c_dev: i2c /dev entries driver [ 1.295712] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.297913] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.298419] sdhci: Secure Digital Host Controller Interface driver [ 1.298429] sdhci: Copyright(c) Pierre Ossman [ 1.298457] Synopsys Designware Multimedia Card Interface Driver [ 1.299195] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.300421] ledtrig-cpu: registered to indicate activity on CPUs [ 1.300931] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 [ 1.301228] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.301523] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 1.301737] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 1.301858] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 1.301968] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 1.302060] sun8i-ce 1c15000.crypto: Register cbc(aes) [ 1.302247] sun8i-ce 1c15000.crypto: Register ecb(aes) [ 1.302389] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) [ 1.302514] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) [ 1.302660] sun8i-ce 1c15000.crypto: Register md5 [ 1.302802] sun8i-ce 1c15000.crypto: Register sha1 [ 1.302945] sun8i-ce 1c15000.crypto: Register sha224 [ 1.303083] sun8i-ce 1c15000.crypto: Register sha256 [ 1.303219] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported [ 1.303229] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported [ 1.303238] sun8i-ce 1c15000.crypto: Register stdrng [ 1.303391] sun8i-ce 1c15000.crypto: TRNG not supported [ 1.303401] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 [ 1.303987] hid: raw HID events driver (C) Jiri Kosina [ 1.304131] usbcore: registered new interface driver usbhid [ 1.304139] usbhid: USB HID core driver [ 1.310388] NET: Registered PF_INET6 protocol family [ 2.279612] Freeing initrd memory: 18248K [ 2.312900] Segment Routing with IPv6 [ 2.313017] In-situ OAM (IOAM) with IPv6 [ 2.313126] NET: Registered PF_PACKET protocol family [ 2.313279] 8021q: 802.1Q VLAN Support v1.8 [ 2.313457] 9pnet: Installing 9P2000 support [ 2.313555] Key type dns_resolver registered [ 2.314176] registered taskstats version 1 [ 2.314195] Loading compiled-in X.509 certificates [ 2.318473] Loaded X.509 cert 'Build time autogenerated kernel key: ce3f2802b386732a49448b8f150c1f6942e9e53e' [ 2.322817] zswap: loaded using pool zstd/z3fold [ 2.323555] Key type .fscrypt registered [ 2.323566] Key type fscrypt-provisioning registered [ 2.324703] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 2.340292] Key type encrypted registered [ 2.340325] AppArmor: AppArmor sha1 policy hashing enabled [ 2.340368] ima: No TPM chip found, activating TPM-bypass! [ 2.340418] ima: Allocated hash algorithm: sha1 [ 2.340455] ima: No architecture policies found [ 2.340508] evm: Initialising EVM extended attributes: [ 2.340513] evm: security.selinux [ 2.340519] evm: security.SMACK64 [ 2.340523] evm: security.SMACK64EXEC [ 2.340528] evm: security.SMACK64TRANSMUTE [ 2.340532] evm: security.SMACK64MMAP [ 2.340538] evm: security.apparmor [ 2.340542] evm: security.ima [ 2.340546] evm: security.capability [ 2.340551] evm: HMAC attrs: 0x1 [ 2.353102] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller [ 2.353195] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller [ 2.353983] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller [ 2.354056] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller [ 2.354919] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz [ 2.355315] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found [ 2.357508] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 [ 2.360520] vcc-3v3: supplied by regulator-dummy [ 2.361013] vdd-cpux: supplied by regulator-dummy [ 2.361724] dcdc4: supplied by regulator-dummy [ 2.361922] vcc-dram: supplied by regulator-dummy [ 2.362359] vdd-sys: supplied by regulator-dummy [ 2.362903] vcc-phy: supplied by regulator-dummy [ 2.363253] aldo1: supplied by regulator-dummy [ 2.363431] vcc-pl: supplied by regulator-dummy [ 2.363900] vcc-pll-avcc: supplied by regulator-dummy [ 2.364504] vcc-hdmi: supplied by regulator-dummy [ 2.364870] vcc-mipi: supplied by regulator-dummy [ 2.365254] dldo3: supplied by regulator-dummy [ 2.365665] vcc-wifi: supplied by regulator-dummy [ 2.366058] cpvdd: supplied by regulator-dummy [ 2.366434] eldo2: supplied by regulator-dummy [ 2.366807] eldo3: supplied by regulator-dummy [ 2.367217] vcc-1v2-hsic: supplied by regulator-dummy [ 2.367413] vdd-cpus: supplied by regulator-dummy [ 2.367824] vcc-rtc: supplied by regulator-dummy [ 2.368272] ldo-io0: supplied by regulator-dummy [ 2.368602] ldo-io1: supplied by regulator-dummy [ 2.368751] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded [ 2.373612] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver [ 2.374071] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.374651] printk: console [ttyS0] disabled [ 2.374738] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A [ 2.374953] printk: console [ttyS0] enabled [ 2.375611] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator [ 2.376064] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A [ 2.376215] serial serial0: tty port ttyS1 registered [ 2.376875] 1c28800.serial: ttyS2 at MMIO 0x1c28800 (irq = 43, base_baud = 1500000) is a 16550A [ 2.377485] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator [ 2.377951] 1c28c00.serial: ttyS3 at MMIO 0x1c28c00 (irq = 44, base_baud = 1500000) is a 16550A [ 2.378786] 1c29000.serial: ttyS4 at MMIO 0x1c29000 (irq = 45, base_baud = 1500000) is a 16550A [ 2.409435] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e07b80) [ 2.411206] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e07b80) [ 2.411689] sun4i-drm display-engine: No panel or bridge found... RGB output disabled [ 2.411707] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e02d90) [ 2.411950] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e02d90) [ 2.413100] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) [ 2.413652] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.414025] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e06eb8) [ 2.414622] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.414709] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes [ 2.415394] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator [ 2.415973] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes [ 2.416655] ehci-platform 1c1a000.usb: EHCI Host Controller [ 2.416685] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 [ 2.416813] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 [ 2.433638] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 [ 2.434050] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.434067] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.434078] usb usb1: Product: EHCI Host Controller [ 2.434087] usb usb1: Manufacturer: Linux 5.15.93-sunxi64 ehci_hcd [ 2.434096] usb usb1: SerialNumber: 1c1a000.usb [ 2.434662] hub 1-0:1.0: USB hub found [ 2.434717] hub 1-0:1.0: 1 port detected [ 2.435736] ehci-platform 1c1b000.usb: EHCI Host Controller [ 2.435761] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 [ 2.435900] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 [ 2.449654] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 [ 2.450003] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.450018] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.450030] usb usb2: Product: EHCI Host Controller [ 2.450039] usb usb2: Manufacturer: Linux 5.15.93-sunxi64 ehci_hcd [ 2.450048] usb usb2: SerialNumber: 1c1b000.usb [ 2.450562] hub 2-0:1.0: USB hub found [ 2.450613] hub 2-0:1.0: 1 port detected [ 2.625720] ohci-platform 1c1a400.usb: Generic Platform OHCI controller [ 2.625750] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 [ 2.625906] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 [ 2.689938] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.689954] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.689965] usb usb3: Product: Generic Platform OHCI controller [ 2.689974] usb usb3: Manufacturer: Linux 5.15.93-sunxi64 ohci_hcd [ 2.689983] usb usb3: SerialNumber: 1c1a400.usb [ 2.690517] hub 3-0:1.0: USB hub found [ 2.690574] hub 3-0:1.0: 1 port detected [ 2.691556] ohci-platform 1c1b400.usb: Generic Platform OHCI controller [ 2.691582] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 [ 2.691712] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 [ 2.705649] usb 2-1: new high-speed USB device number 2 using ehci-platform [ 2.753923] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.753939] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.753951] usb usb4: Product: Generic Platform OHCI controller [ 2.753960] usb usb4: Manufacturer: Linux 5.15.93-sunxi64 ohci_hcd [ 2.753970] usb usb4: SerialNumber: 1c1b400.usb [ 2.754491] hub 4-0:1.0: USB hub found [ 2.754544] hub 4-0:1.0: 1 port detected [ 2.755601] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator [ 2.755754] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests [ 2.833907] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver [ 2.833937] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 [ 2.834206] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.834223] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.834235] usb usb5: Product: MUSB HDRC host driver [ 2.834244] usb usb5: Manufacturer: Linux 5.15.93-sunxi64 musb-hcd [ 2.834254] usb usb5: SerialNumber: musb-hdrc.4.auto [ 2.834792] hub 5-0:1.0: USB hub found [ 2.834838] hub 5-0:1.0: 1 port detected [ 2.838186] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.838234] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 2.839285] sunxi-mmc 1c0f000.mmc: Got CD GPIO [ 2.839538] of_cfs_init [ 2.839611] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq [ 2.839660] of_cfs_init: OK [ 2.840074] ALSA device list: [ 2.840082] No soundcards found. [ 2.862214] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.862569] usb 2-1: New USB device found, idVendor=0bda, idProduct=8179, bcdDevice= 0.00 [ 2.862586] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 2.862598] usb 2-1: Product: 802.11n NIC [ 2.862607] usb 2-1: Manufacturer: Realtek [ 2.862616] usb 2-1: SerialNumber: 00E04C0001 [ 2.865057] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.866804] Freeing unused kernel memory: 2496K [ 2.866939] Run /init as init process [ 2.866946] with arguments: [ 2.866953] /init [ 2.866958] with environment: [ 2.866963] HOME=/ [ 2.866969] TERM=linux [ 2.866974] splash=verbose [ 2.866980] ubootpart=e8bec1b7-01 [ 2.866985] cgroup_enable=memory [ 2.898655] mmc0: new high speed SDXC card at address 59b4 [ 2.899737] mmcblk0: mmc0:59b4 USD00 60.1 GiB [ 2.901980] mmcblk0: p1 [ 2.993662] usb 3-1: new full-speed USB device number 2 using ohci-platform [ 3.230704] usb 3-1: New USB device found, idVendor=10c4, idProduct=ea60, bcdDevice= 1.00 [ 3.230737] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 3.230749] usb 3-1: Product: CP2102 USB to UART Bridge Controller [ 3.230759] usb 3-1: Manufacturer: Silicon Labs [ 3.230768] usb 3-1: SerialNumber: 0001 [ 3.405234] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator [ 3.406910] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found [ 3.406939] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found [ 3.407288] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator [ 3.407549] dwmac-sun8i 1c30000.ethernet: PTP uses main clock [ 3.407592] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) [ 3.409198] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported [ 3.409225] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported [ 3.409234] dwmac-sun8i 1c30000.ethernet: COE Type 2 [ 3.409243] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported [ 3.409251] dwmac-sun8i 1c30000.ethernet: Normal descriptors [ 3.409259] dwmac-sun8i 1c30000.ethernet: Chain mode enabled [ 3.431210] lima 1c40000.gpu: gp - mali400 version major 1 minor 1 [ 3.431285] lima 1c40000.gpu: pp0 - mali400 version major 1 minor 1 [ 3.431334] lima 1c40000.gpu: pp1 - mali400 version major 1 minor 1 [ 3.431377] lima 1c40000.gpu: l2 cache 64K, 4-way, 64byte cache line, 64bit external bus [ 3.432026] lima 1c40000.gpu: bus rate = 200000000 [ 3.432041] lima 1c40000.gpu: mod rate = 432000000 [ 3.434320] [drm] Initialized lima 1.2.0 20200215 for 1c40000.gpu on minor 1 [ 3.447151] axp20x-gpio axp20x-gpio: DMA mask not set [ 3.447756] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded [ 5.016889] dw-apb-uart 1c28000.serial: forbid DMA for kernel console [ 5.501696] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 6.546919] systemd[1]: System time before build time, advancing clock. [ 6.583261] systemd[1]: systemd 249.11-0ubuntu3.7 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 6.583976] systemd[1]: Detected architecture arm64. [ 6.587437] systemd[1]: Hostname set to <OctoPrint64>. [ 7.574500] systemd[1]: Configuration file /etc/systemd/system/octoprint.service is marked executable. Please remove executable permission bits. Proceeding anyway. [ 7.574545] systemd[1]: Configuration file /etc/systemd/system/octoprint.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway. [ 7.638306] systemd[1]: Queued start job for default target Graphical Interface. [ 7.640176] random: systemd: uninitialized urandom read (16 bytes read) [ 7.644222] systemd[1]: Created slice Slice /system/modprobe. [ 7.644856] random: systemd: uninitialized urandom read (16 bytes read) [ 7.647038] systemd[1]: Created slice Slice /system/serial-getty. [ 7.647306] random: systemd: uninitialized urandom read (16 bytes read) [ 7.649042] systemd[1]: Created slice User and Session Slice. [ 7.649834] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 7.651164] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 7.651897] systemd[1]: Reached target Remote File Systems. [ 7.652134] systemd[1]: Reached target Slice Units. [ 7.652401] systemd[1]: Reached target Swaps. [ 7.652636] systemd[1]: Reached target System Time Set. [ 7.653042] systemd[1]: Reached target Local Verity Protected Volumes. [ 7.654353] systemd[1]: Listening on Syslog Socket. [ 7.655349] systemd[1]: Listening on fsck to fsckd communication Socket. [ 7.655921] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 7.657335] systemd[1]: Listening on Journal Audit Socket. [ 7.658269] systemd[1]: Listening on Journal Socket (/dev/log). [ 7.659215] systemd[1]: Listening on Journal Socket. [ 7.661474] systemd[1]: Listening on udev Control Socket. [ 7.662523] systemd[1]: Listening on udev Kernel Socket. [ 7.662795] systemd[1]: Reached target Socket Units. [ 7.667674] systemd[1]: Mounting Huge Pages File System... [ 7.673181] systemd[1]: Mounting POSIX Message Queue File System... [ 7.679193] systemd[1]: Mounting Kernel Debug File System... [ 7.680224] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 7.687740] systemd[1]: Starting Restore / save the current clock... [ 7.693771] systemd[1]: Starting Set the console keyboard layout... [ 7.700980] systemd[1]: Starting Create List of Static Device Nodes... [ 7.708436] systemd[1]: Starting Load Kernel Module chromeos_pstore... [ 7.715882] systemd[1]: Starting Load Kernel Module configfs... [ 7.723856] systemd[1]: Starting Load Kernel Module drm... [ 7.731703] systemd[1]: Starting Load Kernel Module efi_pstore... [ 7.739003] systemd[1]: Starting Load Kernel Module fuse... [ 7.747095] systemd[1]: Starting Load Kernel Module pstore_blk... [ 7.754697] systemd[1]: Starting Load Kernel Module pstore_zone... [ 7.762443] systemd[1]: Starting Load Kernel Module ramoops... [ 7.769693] systemd[1]: Started Nameserver information manager. [ 7.771406] systemd[1]: Reached target Preparation for Network. [ 7.772463] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 7.793526] systemd[1]: Starting Load Kernel Modules... [ 7.801814] systemd[1]: Starting Remount Root and Kernel File Systems... [ 7.811420] fuse: init (API version 7.34) [ 7.818470] systemd[1]: Starting Coldplug All udev Devices... [ 7.841463] systemd[1]: Mounted Huge Pages File System. [ 7.842971] systemd[1]: Mounted POSIX Message Queue File System. [ 7.844454] systemd[1]: Mounted Kernel Debug File System. [ 7.847571] systemd[1]: Finished Restore / save the current clock. [ 7.850394] systemd[1]: Finished Create List of Static Device Nodes. [ 7.852761] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. [ 7.854319] systemd[1]: Finished Load Kernel Module chromeos_pstore. [ 7.856412] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 7.857723] systemd[1]: Finished Load Kernel Module configfs. [ 7.859772] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 7.861004] systemd[1]: Finished Load Kernel Module drm. [ 7.863414] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 7.864676] systemd[1]: Finished Load Kernel Module efi_pstore. [ 7.866712] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 7.867942] systemd[1]: Finished Load Kernel Module fuse. [ 7.869956] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. [ 7.871245] systemd[1]: Finished Load Kernel Module pstore_blk. [ 7.873170] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. [ 7.874562] systemd[1]: Finished Load Kernel Module pstore_zone. [ 7.876576] systemd[1]: modprobe@ramoops.service: Deactivated successfully. [ 7.877866] systemd[1]: Finished Load Kernel Module ramoops. [ 7.882922] systemd[1]: Finished Load Kernel Modules. [ 7.889437] systemd[1]: Mounting FUSE Control File System... [ 7.894108] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 7.895761] systemd[1]: Mounting Kernel Configuration File System... [ 7.902541] systemd[1]: Starting Apply Kernel Variables... [ 7.911705] systemd[1]: Finished Remount Root and Kernel File Systems. [ 7.916305] systemd[1]: Mounted FUSE Control File System. [ 7.917590] systemd[1]: Mounted Kernel Configuration File System. [ 7.918982] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 7.924848] systemd[1]: Starting Load/Save Random Seed... [ 7.931431] systemd[1]: Starting Create System Users... [ 8.098410] systemd[1]: Finished Set the console keyboard layout. [ 8.167865] systemd[1]: Finished Create System Users. [ 8.175402] systemd[1]: Starting Create Static Device Nodes in /dev... [ 8.178430] systemd[1]: Finished Apply Kernel Variables. [ 8.230328] systemd[1]: Finished Create Static Device Nodes in /dev. [ 8.231649] systemd[1]: Reached target Preparation for Local File Systems. [ 8.237703] systemd[1]: Mounting /tmp... [ 8.247042] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 8.252016] systemd[1]: Mounted /tmp. [ 8.253056] systemd[1]: Reached target Local File Systems. [ 8.259255] systemd[1]: Starting Armbian leds state... [ 8.265390] systemd[1]: Starting Armbian ZRAM config... [ 8.272265] systemd[1]: Starting Set console font and keymap... [ 8.281728] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 8.286524] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 8.329560] systemd[1]: Finished Set console font and keymap. [ 8.330828] systemd[1]: Received SIGRTMIN+20 from PID 276 (plymouthd). [ 8.341464] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 8.352355] systemd[1]: Finished Coldplug All udev Devices. [ 8.361592] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 8.402751] systemd[1]: Finished Armbian leds state. [ 8.406698] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 8.415038] systemd[1]: Starting Raise network interfaces... [ 8.629160] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 8.636427] systemd[1]: Starting Show Plymouth Boot Screen... [ 8.662521] random: systemd: uninitialized urandom read (16 bytes read) [ 8.755211] systemd[1]: Started Show Plymouth Boot Screen. [ 8.756525] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 8.757181] random: systemd: uninitialized urandom read (16 bytes read) [ 8.757702] systemd[1]: Started Forward Password Requests to Plymouth Directory Watch. [ 8.758079] random: systemd: uninitialized urandom read (16 bytes read) [ 8.758174] systemd[1]: Reached target Local Encrypted Volumes. [ 8.799747] zram: Added device: zram0 [ 8.800488] zram: Added device: zram1 [ 8.801164] zram: Added device: zram2 [ 9.026951] mc: Linux media interface: v0.10 [ 9.090462] videodev: Linux video capture interface: v2.00 [ 9.143350] zram0: detected capacity change from 0 to 2037288 [ 9.163514] systemd[1]: Finished Raise network interfaces. [ 9.208085] systemd[1]: Found device /dev/ttyS0. [ 9.363901] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 9.369895] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 9.440917] Bluetooth: Core ver 2.22 [ 9.441214] NET: Registered PF_BLUETOOTH protocol family [ 9.441223] Bluetooth: HCI device and connection manager initialized [ 9.441270] Bluetooth: HCI socket layer initialized [ 9.441285] Bluetooth: L2CAP socket layer initialized [ 9.441327] Bluetooth: SCO socket layer initialized [ 9.441352] axp20x-adc axp813-adc: DMA mask not set [ 9.452198] hwmon hwmon3: temp1_input not attached to any thermal zone [ 9.455042] usbcore: registered new interface driver usbserial_generic [ 9.455177] usbserial: USB Serial support registered for generic [ 9.471186] axp20x-ac-power-supply axp20x-ac-power-supply: DMA mask not set [ 9.484126] jack: irq plug-in [ 9.498416] r8188eu: module is from the staging directory, the quality is unknown, you have been warned. [ 9.499187] input: sun50i-a64-audio Headset Jack as /devices/platform/sound/sound/card1/input1 [ 9.541436] usbcore: registered new interface driver cp210x [ 9.541561] usbserial: USB Serial support registered for cp210x [ 9.544564] Chip Version Info: CHIP_8188E_Normal_Chip_TSMC_D_CUT_1T1R_RomVer(0) [ 9.545412] cp210x 3-1:1.0: cp210x converter detected [ 9.545571] axp20x-battery-power-supply axp20x-battery-power-supply: DMA mask not set [ 9.568297] usb 3-1: cp210x converter now attached to ttyUSB0 [ 9.590447] EEPROM ID = 0x8129 [ 9.670356] usbcore: registered new interface driver r8188eu [ 9.724707] Bluetooth: HCI UART driver ver 2.3 [ 9.724769] Bluetooth: HCI UART protocol H4 registered [ 9.724777] Bluetooth: HCI UART protocol BCSP registered [ 9.724924] Bluetooth: HCI UART protocol LL registered [ 9.724930] Bluetooth: HCI UART protocol ATH3K registered [ 9.725032] Bluetooth: HCI UART protocol Three-wire (H5) registered [ 9.725446] Bluetooth: HCI UART protocol Intel registered [ 9.725749] Bluetooth: HCI UART protocol Broadcom registered [ 9.725817] Bluetooth: HCI UART protocol QCA registered [ 9.725823] Bluetooth: HCI UART protocol AG6XX registered [ 9.726653] dw-apb-uart 1c28400.serial: failed to request DMA [ 9.728486] Bluetooth: HCI UART protocol Marvell registered [ 9.848725] random: systemd: uninitialized urandom read (16 bytes read) [ 9.848920] random: systemd: uninitialized urandom read (16 bytes read) [ 9.853049] random: systemd: uninitialized urandom read (16 bytes read) [ 9.906415] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 9.956130] systemd[1]: Reached target Sound Card. [ 9.972543] r8188eu 2-1:1.0 wlx984827e765bb: renamed from wlan0 [ 10.153653] random: crng init done [ 10.153698] random: 98 urandom warning(s) missed due to ratelimiting [ 10.298724] Adding 1018640k swap on /dev/zram0. Priority:5 extents:1 across:1018640k SSFS [ 10.437953] systemd[1]: Finished Load/Save Random Seed. [ 10.440093] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 10.440296] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 10.440483] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 10.839376] zram1: detected capacity change from 0 to 102400 [ 10.937904] systemd[1]: Finished Armbian ZRAM config. [ 10.949347] systemd[1]: Starting Armbian memory supported logging... [ 11.095527] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 14.001843] systemd[1]: Finished Armbian memory supported logging. [ 14.008905] systemd[1]: Starting Journal Service... [ 14.238286] systemd[1]: Started Journal Service. [ 14.263055] systemd-journald[575]: Received client request to flush runtime journal. [ 15.848235] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 15.887170] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 17.323801] phy_rtl8211e_led_fixup in [ 17.325535] dwmac-sun8i 1c30000.ethernet eth0: PHY [stmmac-0:01] driver [RTL8211E Gigabit Ethernet] (irq=POLL) [ 17.326902] dwmac-sun8i 1c30000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0 [ 17.327717] dwmac-sun8i 1c30000.ethernet eth0: No Safety Features support found [ 17.327739] dwmac-sun8i 1c30000.ethernet eth0: No MAC Management Counters available [ 17.327751] dwmac-sun8i 1c30000.ethernet eth0: PTP not supported by HW [ 17.328615] dwmac-sun8i 1c30000.ethernet eth0: configuring for phy/rgmii-txid link mode [ 17.395550] R8188EU: Firmware Version 11, SubVersion 1, Signature 0x88e1 [ 17.790060] MAC Address = 98:48:27:e7:65:bb [ 19.162736] R8188EU: INFO indicate disassoc [ 19.530608] R8188EU: INFO assoc success [ 19.568805] IPv6: ADDRCONF(NETDEV_CHANGE): wlx984827e765bb: link becomes ready [ 33.767267] vcc-mipi: disabling [ 33.767521] vcc-1v2-hsic: disabling [36614.114171] dw-apb-uart 1c29000.serial: failed to request DMA [36626.260279] dw-apb-uart 1c28c00.serial: failed to request DMA [36638.389607] dw-apb-uart 1c28800.serial: failed to request DMA
  9. Hello Armbian team. 1st I would like to thank everyone for your great work. I've been using a Minix TV box with Armbian 5.41 (kernel 3.14) for many years. Recently I have decide to try Mr. balbes150 build. The system works perfectly from SD, but after installing to emmc the boot process fails to load OS. I would be thankful if someone could point to the right direction. [1] Hardware: Minix Neo U1 ... S905, 2GB RAM / 16GB Flash. Emmc is Toshiba THGBMFG7C1LBAIL (AFAIK same as Samsung KLMAG2GEND-B031). [2] Software: Armbian_20.10_Arm-64_bullseye_current_5.9.0.img.xz Using DTB meson-gxbb-vega-s95-meta.dtb Here is my extlinux.conf: LABEL Armbian LINUX /zImage INITRD /uInitrd FDT /dtb/amlogic/meson-gxbb-vega-s95-meta.dtb APPEND root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 To install I run the install-aml-s905-emmc.sh. The only change I made is to replace u-boot.ext in /boot on SD, and the one installed in emmc (/dev/mmcblk1p1) with the one from Mr. hexdump which has serial support enabled, so I could capture the u-boot process info. Both versions - the one in distro from Mr. balbes150, and the one from Mr. hexdump are the same but the later has the serial enabled. Both version produce the same error. [3] The problem: Booting from SD has no problems. The process uses the original Amlogic U-Boot "2015". During booting from EMMC the Amlogic U-BOOT correctly transitions to the new U-BOOT "2020", but that one fails to load the rest of the system,. This where I need some help. Here is the serial log og a good boot from SD: Boot from SD: -------------- exit_reason:0x06 set vddee to 0x03e8mv Enter ddr resume pub training time: 2630 ddr resume done store restore gp0 pll cfg15 3b0d000 cfg15 63b0d000 GXBB:BL1:08dafd:0a8993;FEAT:EDFC318C;POC:3;RCY:0;EMMC:0;READ:0;CHK:0; no sdio debug board detected TE: 71706 BL2 Built : 12:06:06, Jun 13 2016. gxb g176ecdb - laiyin.mo@droid12-sz set vcck to 1100 mv set vddee to 1000 mv Board ID = 1 CPU clk: 1536MHz DDR chl: Rank0+1 same @ 792MHz DDR0: 1024MB(auto)-2T-11 DataBus test pass! AddrBus test pass! -s Load fip header from eMMC, src: 0x0000c000, des: 0x01400000, size: 0x00004000 New fip structure! Load bl30 from eMMC, src: 0x00010000, des: 0x01000000, size: 0x0000d460 Sending bl30......................................................OK. Run bl30... Load bl31 from eMMC, src: 0x00020000, des: 0x1010[0000, size: 0x00013140 Image: gxb_v1.1.3134-b387442 2016-06-16 14:48:44 yun.cai@droid06] OPS=0x13 d4 13 d6 d1 28 0 66 3 d 34 7f 3b [0.15Load bl33 from eMMC, src: 0x00034000, des: 0x01000000, size: 0x0006af00 8213 Inits done] secure task start! high task start! low task start! NOTICE: BL3-1: v1.0(debug):c813a61 NOTICE: BL3-1: Built : 14:47:05, Jun 16 2016 INFO: BL3-1: Initializing runtime services WARNING: No OPTEE provided by BL2 boot loader ERROR: Error initializing runtime service opteed_fast INFO: BL3-1: Preparing for EL3 exit to normal world INFO: BL3-1: Next image address = 0x1000000 INFO: BL3-1: Next image spsr = 0x3c9 U-Boot 2015.01-00018-g6c5824b-dirty (Oct 12 2017 - 18:36:33) DRAM: 1 GiB Relocation Offset is: 36f3b000 register usb cfg[1][0] = 0000000037f96ac0 register usb cfg[0][1] = 0000000037f96ae0 register usb cfg[2][0] = 0000000037f96b00 vpu: error: vpu: check dts: FDT_ERR_BADMAGIC, load default parameters vpu: clk_level = 7 vpu: set clk: 666667000Hz, readback: 666660000Hz(0x300) MMC: SDIO Port C: 0, SDIO Port B: 1 emmc/sd response timeout, cmd8, status=0x3ff2800 emmc/sd response timeout, cmd55, status=0x3ff2800 [mmc_startup] mmc refix success [mmc_init] mmc init success In: serial Out: serial Err: serial reboot_mode=watchdog_reboot hpd_state=1 [1080p60hz] is invalid for cvbs. set hdmitx VIC = 16 config HPLL = 2970 HPLL: 0xc800023d config HPLL done j = 4 vid_clk_div = 1 hdmitx phy setting done hdmitx: set enc for VIC: 16 enc_vpu_bridge_reset[1162] rx version is 1.4 or below div=10 Net: Meson_Ethernet Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** libfdt fdt_check_header(): FDT_ERR_BADMAGIC [OSD]check dts: FDT_ERR_BADMAGIC, load default fb_addr parameters [OSD]fb_addr for logo: 0x3d800000 [OSD]check dts: FDT_ERR_BADMAGIC, load default fb_addr parameters [OSD]fb_addr for logo: 0x3d800000 [CANVAS]addr=0x3d800000 width=5760, height=2160 Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** There is no valid bmp file at the given address Hit Enter or space or Ctrl+C key to stop autoboot -- : 0 Device: SDIO Port C Manufacturer ID: 11 OEM: 100 Name: 016G7 Tran Speed: 52000000 Rd Block Len: 512 MMC version 5.0 High Capacity: Yes Capacity: 14.7 GiB mmc clock: 40000000 Bus Width: 8-bit DDR reading s905_autoscript 537 bytes read in 2 ms (261.7 KiB/s) ## Executing script at 01020000 start amlogic old u-boot ## Error: "bootfromsd" not defined reading boot_android ** Unable to read file boot_android ** ** Bad device usb 0 ** reading u-boot.ext 609247 bytes read in 11 ms (52.8 MiB/s) ## Starting application at 0x01000000 ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.9.0-arm-64 (root@vbox) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #20.10 SMP PREEMPT Wed Oct 14 12:04:42 MSK 2020 [ 0.000000] Machine model: Tronsmart Vega S95 Pro [ 0.000000] efi: UEFI not found. [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! [ 0.000000] Reserved memory: created CMA memory pool at 0x000000002b400000, size 256 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000001000000-0x000000003f934fff] [ 0.000000] NUMA: NODE_DATA [mem 0x3f72b100-0x3f72cfff] [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000001000000-0x000000003f934fff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000001000000-0x0000000004ffffff] [ 0.000000] node 0: [mem 0x0000000007300000-0x000000000fffffff] [ 0.000000] node 0: [mem 0x0000000010200000-0x000000003f934fff] [ 0.000000] Zeroed struct page in unavailable ranges: 203 pages [ 0.000000] Initmem setup node 0 [mem 0x0000000001000000-0x000000003f934fff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv0.2 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: Trusted OS migration not required [ 0.000000] percpu: Embedded 22 pages/cpu s51480 r8192 d30440 u90112 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] CPU features: detected: ARM erratum 843419 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 242832 [ 0.000000] Policy zone: DMA [ 0.000000] Kernel command line: root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 666780K/987348K available (16188K kernel code, 1308K rwdata, 6464K rodata, 3392K init, 927K bss, 58424K reserved, 262144K cma-reserved) [ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x80/0x150 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] irq_meson_gpio: 133 to 8 gpio interrupt mux initialized [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000243] Console: colour dummy device 80x25 [ 0.000570] printk: console [tty0] enabled [ 0.000640] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000656] pid_max: default: 32768 minimum: 301 [ 0.000739] LSM: Security Framework initializing [ 0.000817] AppArmor: AppArmor initialized [ 0.000863] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.000881] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.002078] rcu: Hierarchical SRCU implementation. [ 0.002795] EFI services will not be available. [ 0.002955] smp: Bringing up secondary CPUs ... [ 0.003365] Detected VIPT I-cache on CPU1 [ 0.003417] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.003812] Detected VIPT I-cache on CPU2 [ 0.003839] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.004277] Detected VIPT I-cache on CPU3 [ 0.004296] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.004340] smp: Brought up 1 node, 4 CPUs [ 0.004361] SMP: Total of 4 processors activated. [ 0.004369] CPU features: detected: 32-bit EL0 Support [ 0.004378] CPU features: detected: CRC32 instructions [ 0.012620] CPU: All CPU(s) started at EL2 [ 0.012669] alternatives: patching kernel code [ 0.013518] devtmpfs: initialized [ 0.017907] Registered cp15_barrier emulation handler [ 0.017933] Registered setend emulation handler [ 0.017944] KASLR disabled due to lack of seed [ 0.018167] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.018189] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.024086] xor: measuring software checksum speed [ 0.064108] 8regs : 3037.000 MB/sec [ 0.104134] 32regs : 3486.000 MB/sec [ 0.144166] arm64_neon: 2957.000 MB/sec [ 0.144174] xor: using function: 32regs (3486.000 MB/sec) [ 0.144223] pinctrl core: initialized pinctrl subsystem [ 0.144681] DMI not present or invalid. [ 0.145064] NET: Registered protocol family 16 [ 0.146296] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.146369] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.146450] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.146526] audit: initializing netlink subsys (disabled) [ 0.146655] audit: type=2000 audit(0.144:1): state=initialized audit_enabled=0 res=1 [ 0.147474] thermal_sys: Registered thermal governor 'step_wise' [ 0.147670] cpuidle: using governor ladder [ 0.147697] cpuidle: using governor menu [ 0.147958] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.148029] ASID allocator initialised with 65536 entries [ 0.148587] Serial: AMBA PL011 UART driver [ 0.168526] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.168549] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.168559] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.168568] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.169999] cryptd: max_cpu_qlen set to 1000 [ 0.240277] raid6: neonx8 gen() 2746 MB/s [ 0.308318] raid6: neonx8 xor() 2058 MB/s [ 0.376360] raid6: neonx4 gen() 2812 MB/s [ 0.444408] raid6: neonx4 xor() 2035 MB/s [ 0.512450] raid6: neonx2 gen() 2666 MB/s [ 0.580495] raid6: neonx2 xor() 1894 MB/s [ 0.648543] raid6: neonx1 gen() 2330 MB/s [ 0.716586] raid6: neonx1 xor() 1599 MB/s [ 0.784631] raid6: int64x8 gen() 1908 MB/s [ 0.852694] raid6: int64x8 xor() 1004 MB/s [ 0.920722] raid6: int64x4 gen() 2126 MB/s [ 0.988772] raid6: int64x4 xor() 1073 MB/s [ 1.056819] raid6: int64x2 gen() 1811 MB/s [ 1.124853] raid6: int64x2 xor() 935 MB/s [ 1.192903] raid6: int64x1 gen() 1354 MB/s [ 1.260941] raid6: int64x1 xor() 716 MB/s [ 1.260949] raid6: using algorithm neonx4 gen() 2812 MB/s [ 1.260956] raid6: .... xor() 2035 MB/s, rmw enabled [ 1.260964] raid6: using neon recovery algorithm [ 1.261389] ACPI: Interpreter disabled. [ 1.261809] HDMI_P5V0: supplied by P5V0 [ 1.262590] iommu: Default domain type: Translated [ 1.262775] vgaarb: loaded [ 1.263237] SCSI subsystem initialized [ 1.263544] usbcore: registered new interface driver usbfs [ 1.263577] usbcore: registered new interface driver hub [ 1.263628] usbcore: registered new device driver usb [ 1.263885] pps_core: LinuxPPS API ver. 1 registered [ 1.263894] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.263913] PTP clock support registered [ 1.263943] EDAC MC: Ver: 3.0.0 [ 1.264443] FPGA manager framework [ 1.264509] Advanced Linux Sound Architecture Driver Initialized. [ 1.264937] NetLabel: Initializing [ 1.264946] NetLabel: domain hash size = 128 [ 1.264952] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.264997] NetLabel: unlabeled traffic allowed by default [ 1.265367] clocksource: Switched to clocksource arch_sys_counter [ 1.265556] VFS: Disk quotas dquot_6.6.0 [ 1.265600] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.265680] FS-Cache: Loaded [ 1.266087] AppArmor: AppArmor Filesystem Enabled [ 1.266637] pnp: PnP ACPI: disabled [ 1.270756] NET: Registered protocol family 2 [ 1.271179] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [ 1.271209] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 1.271263] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 1.271362] TCP: Hash tables configured (established 8192 bind 8192) [ 1.271475] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.271504] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.271635] NET: Registered protocol family 1 [ 1.271946] RPC: Registered named UNIX socket transport module. [ 1.271956] RPC: Registered udp transport module. [ 1.271964] RPC: Registered tcp transport module. [ 1.271971] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.271983] NET: Registered protocol family 44 [ 1.271996] PCI: CLS 0 bytes, default 64 [ 1.272152] Trying to unpack rootfs image as initramfs... [ 1.591979] Freeing initrd memory: 9608K [ 1.592768] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.594415] Initialise system trusted keyrings [ 1.594547] workingset: timestamp_bits=44 max_order=18 bucket_order=0 [ 1.598396] zbud: loaded [ 1.599443] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.599673] FS-Cache: Netfs 'nfs' registered for caching [ 1.600094] NFS: Registering the id_resolver key type [ 1.600122] Key type id_resolver registered [ 1.600130] Key type id_legacy registered [ 1.600200] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.600211] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 1.600959] FS-Cache: Netfs 'cifs' registered for caching [ 1.601154] Key type cifs.spnego registered [ 1.601168] Key type cifs.idmap registered [ 1.601180] ntfs: driver 2.1.32 [Flags: R/W]. [ 1.601644] JFS: nTxBlock = 7332, nTxLock = 58658 [ 1.606689] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled [ 1.607912] ocfs2: Registered cluster interface o2cb [ 1.608036] OCFS2 User DLM kernel interface loaded [ 1.609294] gfs2: GFS2 installed [ 1.638756] NET: Registered protocol family 38 [ 1.638779] Key type asymmetric registered [ 1.638788] Asymmetric key parser 'x509' registered [ 1.638796] Asymmetric key parser 'pkcs8' registered [ 1.638832] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 1.638943] io scheduler mq-deadline registered [ 1.638952] io scheduler kyber registered [ 1.639041] io scheduler bfq registered [ 1.649796] soc soc0: Amlogic Meson GXBB (S905) Revision 1f:c (13:1) Detected [ 1.652917] Serial: 8250/16550 driver, 5 ports, IRQ sharing enabled [ 1.654366] Serial: AMBA driver [ 1.654679] c11084c0.serial: ttyAML6 at MMIO 0xc11084c0 (irq = 12, base_baud = 1500000) is a meson_uart [ 1.654794] serial serial0: tty port ttyAML6 registered [ 1.655077] c81004c0.serial: ttyAML0 at MMIO 0xc81004c0 (irq = 15, base_baud = 1500000) is a meson_uart [ 2.723248] printk: console [ttyAML0] enabled [ 2.737247] brd: module loaded [ 2.743064] loop: module loaded [ 2.743720] Loading iSCSI transport class v2.0-870. [ 2.745936] iscsi: registered transport (tcp) [ 2.752547] libphy: Fixed MDIO Bus: probed [ 2.755832] VFIO - User Level meta-driver version: 0.3 [ 2.759842] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.765383] ehci-pci: EHCI PCI platform driver [ 2.769780] ehci-platform: EHCI generic platform driver [ 2.775022] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.781064] ohci-pci: OHCI PCI platform driver [ 2.785472] ohci-platform: OHCI generic platform driver [ 2.790966] usbcore: registered new interface driver usb-storage [ 2.796716] mousedev: PS/2 mouse device common for all mice [ 2.802705] i2c /dev entries driver [ 2.808475] sdhci: Secure Digital Host Controller Interface driver [ 2.811677] sdhci: Copyright(c) Pierre Ossman [ 2.816097] Synopsys Designware Multimedia Card Interface Driver [ 2.826042] meson-gx-mmc d0072000.mmc: Got CD GPIO [ 2.853688] meson-gx-mmc d0074000.mmc: allocated mmc-pwrseq [ 2.881014] sdhci-pltfm: SDHCI platform and OF driver helper [ 2.881911] ledtrig-cpu: registered to indicate activity on CPUs [ 2.887410] meson-sm: secure-monitor enabled [ 2.891706] hid: raw HID events driver (C) Jiri Kosina [ 2.894108] mmc0: new high speed SDHC card at address aaaa [ 2.896689] usbcore: registered new interface driver usbhid [ 2.902546] mmcblk0: mmc0:aaaa SC16G 14.8 GiB [ 2.907285] usbhid: USB HID core driver [ 2.916300] platform-mhu c883c404.mailbox: Platform MHU Mailbox registered [ 2.916837] mmcblk0: p1 p2 [ 2.927740] no UART detected at 0x1 [ 2.931337] NET: Registered protocol family 17 [ 2.933081] Key type dns_resolver registered [ 2.937569] registered taskstats version 1 [ 2.941164] Loading compiled-in X.509 certificates [ 2.946021] zswap: loaded using pool lzo/zbud [ 2.950428] Key type ._fscrypt registered [ 2.954192] Key type .fscrypt registered [ 2.958068] Key type fscrypt-provisioning registered [ 2.963580] Btrfs loaded, crc32c=crc32c-generic [ 2.980342] Key type encrypted registered [ 2.980388] AppArmor: AppArmor sha1 policy hashing enabled [ 2.998283] meson-drm d0100000.vpu: Queued 2 outputs on vpu [ 2.998779] meson-drm d0100000.vpu: CVBS Output connector not available [ 3.028822] mmc1: new HS200 MMC card at address 0001 [ 3.029424] meson-dw-hdmi c883a000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) [ 3.029516] mmcblk1: mmc1:0001 016G70 14.7 GiB [ 3.038358] meson-dw-hdmi c883a000.hdmi-tx: registered DesignWare HDMI I2C bus driver [ 3.042757] mmcblk1boot0: mmc1:0001 016G70 partition 1 4.00 MiB [ 3.050951] meson-drm d0100000.vpu: bound c883a000.hdmi-tx (ops meson_dw_hdmi_ops) [ 3.056395] mmcblk1boot1: mmc1:0001 016G70 partition 2 4.00 MiB [ 3.063966] [drm] Initialized meson 1.0.0 20161109 for d0100000.vpu on minor 0 [ 3.069502] mmcblk1rpmb: mmc1:0001 016G70 partition 3 4.00 MiB, chardev (241:0) [ 3.085792] mmcblk1: p1 p2 [ 3.150936] random: fast init done [ 3.386060] Console: switching to colour frame buffer device 210x65 [ 3.402543] meson-drm d0100000.vpu: [drm] fb0: mesondrmfb frame buffer device [ 3.410712] meson8b-dwmac c9410000.ethernet: IRQ eth_wake_irq not found [ 3.416180] meson8b-dwmac c9410000.ethernet: IRQ eth_lpi not found [ 3.422427] meson8b-dwmac c9410000.ethernet: PTP uses main clock [ 3.428250] meson8b-dwmac c9410000.ethernet: no reset control found [ 3.435138] meson8b-dwmac c9410000.ethernet: User ID: 0x11, Synopsys ID: 0x37 [ 3.441548] meson8b-dwmac c9410000.ethernet: DWMAC1000 [ 3.446705] meson8b-dwmac c9410000.ethernet: DMA HW capability register supported [ 3.454120] meson8b-dwmac c9410000.ethernet: RX Checksum Offload Engine supported [ 3.461541] meson8b-dwmac c9410000.ethernet: COE Type 2 [ 3.466712] meson8b-dwmac c9410000.ethernet: TX Checksum insertion supported [ 3.473704] meson8b-dwmac c9410000.ethernet: Wake-Up On Lan supported [ 3.480136] meson8b-dwmac c9410000.ethernet: Normal descriptors [ 3.485947] meson8b-dwmac c9410000.ethernet: Ring mode enabled [ 3.491728] meson8b-dwmac c9410000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 3.499662] meson8b-dwmac c9410000.ethernet: device MAC address 32:b2:a9:c7:f4:e6 [ 3.507470] libphy: stmmac: probed [ 3.614802] dwc2 c9000000.usb: supply vusb_d not found, using dummy regulator [ 3.616495] dwc2 c9000000.usb: supply vusb_a not found, using dummy regulator [ 3.624723] phy phy-c0000000.phy.0: USB ID detect failed! [ 3.628827] phy phy-c0000000.phy.0: phy poweron failed --> -22 [ 3.634670] ------------[ cut here ]------------ [ 3.639175] WARNING: CPU: 0 PID: 34 at drivers/regulator/core.c:2089 _regulator_put.part.0+0x154/0x160 [ 3.648391] Modules linked in: [ 3.651413] CPU: 0 PID: 34 Comm: kworker/0:1 Not tainted 5.9.0-arm-64 #20.10 [ 3.658396] Hardware name: Tronsmart Vega S95 Pro (DT) [ 3.663494] Workqueue: events deferred_probe_work_func [ 3.668576] pstate: 80000005 (Nzcv daif -PAN -UAO BTYPE=--) [ 3.674095] pc : _regulator_put.part.0+0x154/0x160 [ 3.678838] lr : regulator_put+0x38/0x50 [ 3.682718] sp : ffff80001014bae0 [ 3.685995] x29: ffff80001014bae0 x28: ffff800012a07000 [ 3.691257] x27: ffff80001004bcd8 x26: ffff00003dd528c8 [ 3.696518] x25: ffff800012aeb700 x24: ffff00003ddf2c00 [ 3.701779] x23: 0000000000000008 x22: ffff80001014bbb8 [ 3.707041] x21: ffff00003dd15400 x20: ffff800012ad7150 [ 3.712302] x19: ffff000029e75f00 x18: 0000000000000010 [ 3.717563] x17: 0000000000000001 x16: 0000000000000000 [ 3.722824] x15: 0000000000aaaaaa x14: 0000000000000020 [ 3.728086] x13: 00000000ffffffff x12: ffffffffffffffff [ 3.733347] x11: 0000000000000040 x10: 0000000000000007 [ 3.738608] x9 : 00000000ffffffff x8 : ffffffffffffffe0 [ 3.743869] x7 : ffffffffffffffff x6 : ffffffffffffffff [ 3.749131] x5 : 0000000000000000 x4 : 0000000000000000 [ 3.754392] x3 : ffff800012ad7520 x2 : ffff00003dd15400 [ 3.759653] x1 : 0000000000000000 x0 : 0000000000000001 [ 3.764915] Call trace: [ 3.768099] _regulator_put.part.0+0x154/0x160 [ 3.771730] regulator_put+0x38/0x50 [ 3.775267] regulator_bulk_free+0x38/0x58 [ 3.779321] devm_regulator_bulk_release+0x1c/0x28 [ 3.784065] release_nodes+0x1b0/0x228 [ 3.787773] devres_release_all+0x38/0x60 [ 3.791740] really_probe+0x1d8/0x3b0 [ 3.795363] driver_probe_device+0x58/0xb8 [ 3.799416] __device_attach_driver+0x84/0xc8 [ 3.803730] bus_for_each_drv+0x78/0xc8 [ 3.807524] __device_attach+0xf0/0x150 [ 3.811319] device_initial_probe+0x14/0x20 [ 3.815459] bus_probe_device+0x9c/0xa8 [ 3.819255] deferred_probe_work_func+0x74/0xb0 [ 3.823742] process_one_work+0x1a0/0x328 [ 3.827706] worker_thread+0x1f8/0x420 [ 3.831416] kthread+0x140/0x160 [ 3.834608] ret_from_fork+0x10/0x34 [ 3.838142] ---[ end trace 53dcfd993148bc4f ]--- [ 3.842869] ------------[ cut here ]------------ [ 3.847287] WARNING: CPU: 0 PID: 34 at drivers/regulator/core.c:2089 _regulator_put.part.0+0x154/0x160 [ 3.856511] Modules linked in: [ 3.859534] CPU: 0 PID: 34 Comm: kworker/0:1 Tainted: G W 5.9.0-arm-64 #20.10 [ 3.867897] Hardware name: Tronsmart Vega S95 Pro (DT) [ 3.872990] Workqueue: events deferred_probe_work_func [ 3.878076] pstate: 80000005 (Nzcv daif -PAN -UAO BTYPE=--) [ 3.883597] pc : _regulator_put.part.0+0x154/0x160 [ 3.888340] lr : regulator_put+0x38/0x50 [ 3.892219] sp : ffff80001014bae0 [ 3.895497] x29: ffff80001014bae0 x28: ffff800012a07000 [ 3.900758] x27: ffff80001004bcd8 x26: ffff00003dd528c8 [ 3.906019] x25: ffff800012aeb700 x24: ffff00003ddf2c00 [ 3.911281] x23: 0000000000000008 x22: ffff80001014bbb8 [ 3.916542] x21: ffff00003dd15400 x20: ffff800012ad7150 [ 3.921803] x19: ffff000029e75000 x18: 0000000000000010 [ 3.927064] x17: 0000000000000001 x16: 0000000000000000 [ 3.932325] x15: 0000000000000004 x14: 0000000000000020 [ 3.937587] x13: 0000000000000000 x12: ffff00003f0ada38 [ 3.942848] x11: ffff00003f0ad918 x10: ffff00000733b698 [ 3.948109] x9 : ffff00000733b690 x8 : 0000000000000001 [ 3.953370] x7 : 0000000000000001 x6 : ffff00003f058900 [ 3.958632] x5 : ffff00000732c8f8 x4 : 0000000000000000 [ 3.963893] x3 : ffff800012ad7520 x2 : ffff00003dd15400 [ 3.969154] x1 : 0000000000000000 x0 : 0000000000000001 [ 3.974415] Call trace: [ 3.976971] _regulator_put.part.0+0x154/0x160 [ 3.981231] regulator_put+0x38/0x50 [ 3.984768] regulator_bulk_free+0x38/0x58 [ 3.988822] devm_regulator_bulk_release+0x1c/0x28 [ 3.993565] release_nodes+0x1b0/0x228 [ 3.997274] devres_release_all+0x38/0x60 [ 4.001241] really_probe+0x1d8/0x3b0 [ 4.004863] driver_probe_device+0x58/0xb8 [ 4.008917] __device_attach_driver+0x84/0xc8 [ 4.013231] bus_for_each_drv+0x78/0xc8 [ 4.017025] __device_attach+0xf0/0x150 [ 4.020820] device_initial_probe+0x14/0x20 [ 4.024961] bus_probe_device+0x9c/0xa8 [ 4.028756] deferred_probe_work_func+0x74/0xb0 [ 4.033241] process_one_work+0x1a0/0x328 [ 4.037207] worker_thread+0x1f8/0x420 [ 4.040917] kthread+0x140/0x160 [ 4.044109] ret_from_fork+0x10/0x34 [ 4.047642] ---[ end trace 53dcfd993148bc50 ]--- [ 4.052391] dwc2: probe of c9000000.usb failed with error -22 [ 4.058865] dwc2 c9100000.usb: supply vusb_d not found, using dummy regulator [ 4.065085] dwc2 c9100000.usb: supply vusb_a not found, using dummy regulator [ 4.129604] dwc2 c9100000.usb: DWC OTG Controller [ 4.132332] dwc2 c9100000.usb: new USB bus registered, assigned bus number 1 [ 4.138380] dwc2 c9100000.usb: irq 39, io mem 0xc9100000 [ 4.143740] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.09 [ 4.151807] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.158969] usb usb1: Product: DWC OTG Controller [ 4.163622] usb usb1: Manufacturer: Linux 5.9.0-arm-64 dwc2_hsotg [ 4.169662] usb usb1: SerialNumber: c9100000.usb [ 4.174641] hub 1-0:1.0: USB hub found [ 4.177959] hub 1-0:1.0: 1 port detected [ 4.183835] meson-gx-mmc d0070000.mmc: allocated mmc-pwrseq [ 4.214759] scpi_protocol scpi: SCP Protocol legacy pre-1.0 firmware [ 4.225686] simple-framebuffer 3f935000.framebuffer: framebuffer at 0x3f935000, 0x6baa80 bytes, mapped to 0x(____ptrval____) [ 4.234465] simple-framebuffer 3f935000.framebuffer: format=x8r8g8b8, mode=1680x1050x32, linelength=6720 [ 4.244038] simple-framebuffer 3f935000.framebuffer: fb1: simplefb registered! [ 4.253465] printk: console [netcon0] enabled [ 4.257599] netconsole: network logging started [ 4.261865] ALSA device list: [ 4.262870] mmc2: queuing unknown CIS tuple 0x80 (2 bytes) [ 4.264975] No soundcards found. [ 4.271289] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ 4.280134] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ 4.280212] Freeing unused kernel memory: 3392K [ 4.287238] mmc2: queuing unknown CIS tuple 0x80 (7 bytes) [ 4.287943] Run /init as init process [ 4.371901] mmc2: new high speed SDIO card at address 0001 [ 4.577431] usb 1-1: new high-speed USB device number 2 using dwc2 [ 4.790899] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=32.98 [ 4.800919] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 4.807792] usb 1-1: Product: USB2.0 Hub [ 4.812757] hub 1-1:1.0: USB hub found [ 4.816332] hub 1-1:1.0: 4 ports detected [ 5.248354] EXT4-fs (mmcblk0p2): mounted filesystem with writeback data mode. Opts: data=writeback [ 6.128347] systemd[1]: System time before build time, advancing clock. [ 6.233703] NET: Registered protocol family 10 [ 6.265211] Segment Routing with IPv6 [ 6.311618] systemd[1]: systemd 246.2-1 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) [ 6.338737] systemd[1]: Detected architecture arm64. [ 6.411481] systemd[1]: Set hostname to <arm-64>. [ 6.952530] systemd[1]: Queued start job for default target Graphical Interface. [ 6.959474] random: systemd: uninitialized urandom read (16 bytes read) [ 6.967577] systemd[1]: Created slice system-getty.slice. [ 6.976499] random: systemd: uninitialized urandom read (16 bytes read) [ 6.982608] systemd[1]: Created slice system-modprobe.slice. [ 6.991717] random: systemd: uninitialized urandom read (16 bytes read) [ 6.997905] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 7.008755] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 7.019089] systemd[1]: Created slice User and Session Slice. [ 7.028025] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 7.040173] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 7.052107] systemd[1]: Condition check resulted in Arbitrary Executable File Formats File System Automount Point being skipped. [ 7.062732] systemd[1]: Reached target Local Encrypted Volumes. [ 7.073296] systemd[1]: Reached target Paths. [ 7.082598] systemd[1]: Reached target Remote File Systems. [ 7.092033] systemd[1]: Reached target Slices. [ 7.101479] systemd[1]: Reached target Swap. [ 7.110943] systemd[1]: Reached target System Time Set. [ 7.120943] systemd[1]: Listening on Syslog Socket. [ 7.130926] systemd[1]: Listening on fsck to fsckd communication Socket. [ 7.141888] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 7.153227] systemd[1]: Listening on Journal Audit Socket. [ 7.163596] systemd[1]: Listening on Journal Socket (/dev/log). [ 7.174266] systemd[1]: Listening on Journal Socket. [ 7.184690] systemd[1]: Listening on udev Control Socket. [ 7.194873] systemd[1]: Listening on udev Kernel Socket. [ 7.208111] systemd[1]: Mounting Huge Pages File System... [ 7.221735] systemd[1]: Mounting POSIX Message Queue File System... [ 7.235892] systemd[1]: Mounting Kernel Debug File System... [ 7.246474] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 7.258577] systemd[1]: Starting Restore / save the current clock... [ 7.273114] systemd[1]: Starting Set the console keyboard layout... [ 7.287363] systemd[1]: Starting Create list of static device nodes for the current kernel... [ 7.300527] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped. [ 7.312037] systemd[1]: Started Nameserver information manager. [ 7.323459] systemd[1]: Reached target Network (Pre). [ 7.338640] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 7.350066] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 7.364266] systemd[1]: Starting Load Kernel Modules... [ 7.378189] systemd[1]: Starting Remount Root and Kernel File Systems... [ 7.393197] systemd[1]: Starting Coldplug All udev Devices... [ 7.408859] systemd[1]: Mounted Huge Pages File System. [ 7.413986] EXT4-fs (mmcblk0p2): re-mounted. Opts: commit=600,errors=remount-ro [ 7.428475] systemd[1]: Mounted POSIX Message Queue File System. [ 7.439127] systemd[1]: Mounted Kernel Debug File System. [ 7.450342] systemd[1]: Finished Restore / save the current clock. [ 7.462559] systemd[1]: Finished Create list of static device nodes for the current kernel. [ 7.479294] systemd[1]: Finished Load Kernel Modules. [ 7.491408] systemd[1]: Finished Remount Root and Kernel File Systems. [ 7.504192] systemd[1]: Condition check resulted in FUSE Control File System being skipped. [ 7.515752] systemd[1]: Mounting Kernel Configuration File System... [ 7.530618] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ 7.538817] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 7.551243] systemd[1]: Starting Load/Save Random Seed... [ 7.565096] systemd[1]: Starting Apply Kernel Variables... [ 7.579180] systemd[1]: Starting Create System Users... [ 7.594236] systemd[1]: Finished Set the console keyboard layout. [ 7.608111] systemd[1]: Mounted Kernel Configuration File System. Armbian 20.10 Bullseye ttyAML0 arm-64 login: root Password: _ ____ __ __ __ _ _ / \ | _ \| \/ | / /_ | || | / _ \ | |_) | |\/| |_____| '_ \| || |_ / ___ \| _ <| | | |_____| (_) |__ _| /_/ \_\_| \_\_| |_| \___/ |_| Welcome to Armbian 20.10 Bullseye with Linux 5.9.0-arm-64 No end-user support: built from trunk & unsupported (bullseye) userspace! System load: 2% Up time: 22 min Memory usage: 11% of 919M IP: 192.168.2.121 192.168.2.251 192.168.2.240 CPU temp: 44°C Usage of /: 11% of 14G [ General system configuration (beta): armbian-config ] root@arm-64:~# shutdown now [ 1384.266963] reboot: Power down INFO: PSCI Affinity Map: INFO: AffInst: Level 0, MPID 0x0, State ON INFO: AffInst: Level 0, MPID 0x1, State ON INFO: AffInst: Level 0, MPID 0x2, State ON INFO: AffInst: Level 0, MPID 0x3, State ON bl31 reboot reason: 0xd bl31 reboot reason: 0xd system cmd 0. bl30 get wakeup sources! process command 00000006 bl30 enter suspend! store restore gp0 pll cpu clk suspend rate 1536000000 suspend_counter: 1 Enter ddr suspend first time suspend process command 00000001 CEC cfg:0x0000 set vddee to 0x0352mv 0891 Here is the log of the failed boot from EMMC: Boot from eMMC: --------------- GXBB:BL1:08dafd:0a8993;FEAT:EDFC318C;POC:3;RCY:0;EMMC:0;READ:0;CHK:0; no sdio debug board detected TE: 83807 BL2 Built : 12:06:06, Jun 13 2016. gxb g176ecdb - laiyin.mo@droid12-sz set vcck to 1100 mv set vddee to 1000 mv Board ID = 1 CPU clk: 1536MHz DDR chl: Rank0+1 same @ 792MHz DDR0: 1024MB(auto)-2T-11 DataBus test pass! AddrBus test pass! -s Load fip header from eMMC, src: 0x0000c000, des: 0x01400000, size: 0x00004000 New fip structure! Load bl30 from eMMC, src: 0x00010000, des: 0x01000000, size: 0x0000d460 Sending bl30......................................................OK. Run bl30... Load bl31 from eMMC, src: 0x00020000, des: 0x1010[000, size: 0x00013140 Image: gxb_v1.1.3134-b387442 2016-06-16 14:48:44 yun.cai@droid06] OPS=0x13 d4 13 d6 d1 28 0 66 3 d 34 7f 3b [0.17Load bl33 from eMMC, src: 0x00034000, des: 0x01000000, size: 0x0006af00 0236 Inits done] secure task start! high task start! low task start! NOTICE: BL3-1: v1.0(debug):c813a61 NOTICE: BL3-1: Built : 14:47:05, Jun 16 2016 INFO: BL3-1: Initializing runtime services WARNING: No OPTEE provided by BL2 boot loader ERROR: Error initializing runtime service opteed_fast INFO: BL3-1: Preparing for EL3 exit to normal world INFO: BL3-1: Next image address = 0x1000000 INFO: BL3-1: Next image spsr = 0x3c9 U-Boot 2015.01-00018-g6c5824b-dirty (Oct 12 2017 - 18:36:33) DRAM: 1 GiB Relocation Offset is: 36f3b000 register usb cfg[1][0] = 0000000037f96ac0 register usb cfg[0][1] = 0000000037f96ae0 register usb cfg[2][0] = 0000000037f96b00 vpu: error: vpu: check dts: FDT_ERR_BADMAGIC, load default parameters vpu: clk_level = 7 vpu: set clk: 666667000Hz, readback: 666660000Hz(0x300) MMC: SDIO Port C: 0, SDIO Port B: 1 emmc/sd response timeout, cmd8, status=0x3ff2800 emmc/sd response timeout, cmd55, status=0x3ff2800 [mmc_startup] mmc refix success [mmc_init] mmc init success In: serial Out: serial Err: serial reboot_mode=cold_boot hpd_state=1 [1080p60hz] is invalid for cvbs. set hdmitx VIC = 16 config HPLL = 2970 HPLL: 0xc800023d config HPLL done j = 4 vid_clk_div = 1 hdmitx phy setting done hdmitx: set enc for VIC: 16 enc_vpu_bridge_reset[1162] rx version is 1.4 or below div=10 Net: Meson_Ethernet Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** libfdt fdt_check_header(): FDT_ERR_BADMAGIC [OSD]check dts: FDT_ERR_BADMAGIC, load default fb_addr parameters [OSD]fb_addr for logo: 0x3d800000 [OSD]check dts: FDT_ERR_BADMAGIC, load default fb_addr parameters [OSD]fb_addr for logo: 0x3d800000 [CANVAS]addr=0x3d800000 width=5760, height=2160 Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** There is no valid bmp file at the given address Hit Enter or space or Ctrl+C key to stop autoboot -- : 0 Device: SDIO Port C Manufacturer ID: 11 OEM: 100 Name: 016G7 Tran Speed: 52000000 Rd Block Len: 512 MMC version 5.0 High Capacity: Yes Capacity: 14.7 GiB mmc clock: 40000000 Bus Width: 8-bit DDR reading s905_autoscript 537 bytes read in 3 ms (174.8 KiB/s) ## Executing script at 01020000 start amlogic old u-boot ## Error: "bootfromsd" not defined reading boot_android ** Unable to read file boot_android ** ** Bad device usb 0 ** reading u-boot.ext 521171 bytes read in 10 ms (49.7 MiB/s) ## Starting application at 0x01000000 ... U-Boot 2020.07-dirty (Oct 24 2020 - 21:14:30 +0200) hexdump-gxbb Model: hexdump serial u-boot gxbb SoC: Amlogic Meson GXBB (S905) Revision 1f:c (13:1) DRAM: 1 GiB MMC: mmc@70000: 0, mmc@72000: 1, mmc@74000: 2 In: serial@4c0 Out: serial@4c0 Err: serial@4c0 Net: Warning: ethernet@c9410000 (eth0) using random MAC address - 1a:69:e8:d0:6c:88 eth0: ethernet@c9410000 Hit any key to stop autoboot: 0 Card did not respond to voltage select! switch to partitions #0, OK mmc2 is current device ** No partition table - mmc 2 ** Speed: 1000, full duplex BOOTP broadcast 1 BOOTP broadcast 2 BOOTP broadcast 3 BOOTP broadcast 4 BOOTP broadcast 5 BOOTP broadcast 6 BOOTP broadcast 7 BOOTP broadcast 8 BOOTP broadcast 9 BOOTP broadcast 10 Here is some info about /dev/mmcblk1: root@arm-64:~# fdisk -l /dev/mmcblk1 Disk /dev/mmcblk1: 14.68 GiB, 15758000128 bytes, 30777344 sectors Units: sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disklabel type: dos Disk identifier: 0x8509a0e7 Device Boot Start End Sectors Size Id Type /dev/mmcblk1p1 16384 1196031 1179648 576M b W95 FAT32 /dev/mmcblk1p2 1196032 15235071 14039040 6.7G 83 Linux root@arm-64:~# e2label /dev/mmcblk1p2 ROOT_EMMC root@arm-64:~# ls -1 /dev/mmcblk1* /dev/mmcblk1 /dev/mmcblk1boot0 /dev/mmcblk1boot1 /dev/mmcblk1p1 /dev/mmcblk1p2 /dev/mmcblk1rpmb root@arm-64:~# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT mmcblk0 179:0 0 14.8G 0 disk ├─mmcblk0p1 179:1 0 512M 0 part /boot └─mmcblk0p2 179:2 0 14.2G 0 part / mmcblk1 179:32 0 14.7G 0 disk ├─mmcblk1p1 179:33 0 576M 0 part └─mmcblk1p2 179:34 0 6.7G 0 part mmcblk1boot0 179:64 0 4M 1 disk mmcblk1boot1 179:96 0 4M 1 disk zram0 254:0 0 50M 0 disk /var/log zram1 254:1 0 459.9M 0 disk [SWAP] root@arm-64:~# mount /dev/mmcblk1p1 /mnt/p1 root@arm-64:~# ls -l /mnt/p1 total 55808 -rwxr-xr-x 1 root root 1536 Sep 4 20:16 armbian_first_run.txt.template -rwxr-xr-x 1 root root 38518 Sep 4 20:16 boot.bmp -rwxr-xr-x 1 root root 216810 Sep 4 20:16 config-5.9.0-arm-64 drwxr-xr-x 5 root root 4096 Sep 4 20:16 dtb -rwxr-xr-x 1 root root 174 Sep 4 20:16 emmc_autoscript drwxr-xr-x 2 root root 4096 Sep 4 20:16 extlinux -rwxr-xr-x 1 root root 9882610 Sep 4 20:16 initrd.img-5.9.0-arm-64 -rwxr-xr-x 1 root root 537 Sep 4 20:16 s905_autoscript -rwxr-xr-x 1 root root 5794743 Sep 4 20:16 System.map-5.9.0-arm-64 -rwxr-xr-x 1 root root 609247 Sep 4 20:16 u-boot.emmc -rwxr-xr-x 1 root root 609247 Sep 4 20:16 u-boot.ext -rwxr-xr-x 1 root root 609247 Sep 4 20:16 u-boot-s905 -rwxr-xr-x 1 root root 740080 Sep 4 20:16 u-boot-s905x2-s922 -rwxr-xr-x 1 root root 650183 Sep 4 20:16 u-boot-s905x-s912 -rwxr-xr-x 1 root root 9882674 Sep 4 20:16 uInitrd -rwxr-xr-x 1 root root 28078592 Sep 4 20:16 zImage root@arm-64:~# mount /dev/mmcblk1p2 /mnt/p2 root@arm-64:~# ls -l /mnt/p2 total 80 lrwxrwxrwx 1 root root 7 Aug 30 2020 bin -> usr/bin drwxr-xr-x 2 root root 4096 Sep 4 20:17 dev drwxr-xr-x 86 root root 4096 Sep 4 20:18 etc drwxr-xr-x 3 root root 4096 Sep 3 13:24 home lrwxrwxrwx 1 root root 7 Aug 30 2020 lib -> usr/lib drwxr-xr-x 2 root root 4096 Oct 14 2020 lib64 drwx------ 2 root root 16384 Sep 4 20:16 lost+found drwxr-xr-x 2 root root 4096 Sep 4 20:17 media drwxr-xr-x 2 root root 4096 Sep 4 20:17 mnt drwxr-xr-x 2 root root 4096 Aug 30 2020 opt drwxr-xr-x 2 root root 4096 Sep 4 20:17 proc drwx------ 6 root root 4096 Sep 4 20:18 root drwxr-xr-x 2 root root 4096 Sep 4 20:17 run lrwxrwxrwx 1 root root 8 Aug 30 2020 sbin -> usr/sbin drwxrwxr-x 2 root root 4096 Oct 14 2020 selinux drwxr-xr-x 2 root root 4096 Aug 30 2020 srv drwxr-xr-x 2 root root 4096 Sep 4 20:17 sys drwxr-xr-x 2 root root 4096 Sep 4 20:17 tmp drwxr-xr-x 11 root root 4096 Aug 30 2020 usr drwxr-xr-x 12 root root 4096 Oct 14 2020 var I apologize if this is not the correct forum for this. Pls let me know and will move it. Thank you, Pista
  10. @jock just restarted after manually updating and upgrading, typed in sudo dmesg, and I got : [sudo] password for fred: [ 0.000000] Booting Linux on physical CPU 0x500 [ 0.000000] Linux version 5.15.74-rockchip (root@b0213a356260) (arm-linux-gnueabihf-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 2.32.0.20190321) #22.08.6 SMP PREEMPT Tue Oct 18 06:40:37 UTC 2022 [ 0.000000] CPU: ARMv7 Processor [410fc0d1] revision 1 (ARMv7), cr=10c5387d [ 0.000000] CPU: div instructions available: patching division code [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] OF: fdt: Machine model: Rockchip RK3288 Asus Tinker Board S [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] cma: Reserved 16 MiB at 0x7f000000 [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x000000002fffffff] [ 0.000000] HighMem [mem 0x0000000030000000-0x000000007fffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x000000007fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000007fffffff] [ 0.000000] percpu: Embedded 16 pages/cpu s35864 r8192 d21480 u65536 [ 0.000000] pcpu-alloc: s35864 r8192 d21480 u65536 alloc=16*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 522560 [ 0.000000] Kernel command line: earlyprintk root=UUID=f9fb36c8-4f0d-4244-ac3a-88a7f7768e83 rootwait rootfstype=ext4 splash=verbose console=ttyS2,115200n8 console=tty1 consoleblank=0 loglevel=1 ubootpart=bbb7cd32-01 usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 [ 0.000000] Unknown kernel command line parameters "earlyprintk splash=verbose ubootpart=bbb7cd32-01 cgroup_enable=memory cgroup_memory=1", will be passed to user space. [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] allocated 2097152 bytes of page_ext [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 2015788K/2097152K available (15360K kernel code, 1956K rwdata, 3128K rodata, 1024K init, 557K bss, 64980K reserved, 16384K cma-reserved, 1294336K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] ftrace: allocating 46824 entries in 138 pages [ 0.000000] ftrace: allocated 138 pages with 3 groups [ 0.000000] trace event string verifier disabled [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Rude variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000024] Switching to timer-based delay loop, resolution 41ns [ 0.002010] Console: colour dummy device 80x30 [ 0.002078] printk: console [tty1] enabled [ 0.002137] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.002160] pid_max: default: 32768 minimum: 301 [ 0.002316] LSM: Security Framework initializing [ 0.002340] Yama: becoming mindful. [ 0.002490] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.002516] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.003810] CPU: Testing write buffer coherency: ok [ 0.003876] CPU0: Spectre v2: using BPIALL workaround [ 0.004239] CPU0: thread -1, cpu 0, socket 5, mpidr 80000500 [ 0.006503] Setting up static identity map for 0x100000 - 0x100060 [ 0.006730] rcu: Hierarchical SRCU implementation. [ 0.007909] smp: Bringing up secondary CPUs ... [ 0.010155] CPU1: thread -1, cpu 1, socket 5, mpidr 80000501 [ 0.010177] CPU1: Spectre v2: using BPIALL workaround [ 0.012576] CPU2: thread -1, cpu 2, socket 5, mpidr 80000502 [ 0.012598] CPU2: Spectre v2: using BPIALL workaround [ 0.014975] CPU3: thread -1, cpu 3, socket 5, mpidr 80000503 [ 0.014997] CPU3: Spectre v2: using BPIALL workaround [ 0.015227] smp: Brought up 1 node, 4 CPUs [ 0.015248] SMP: Total of 4 processors activated (192.00 BogoMIPS). [ 0.015264] CPU: All CPU(s) started in SVC mode. [ 0.016288] devtmpfs: initialized [ 0.032824] VFP support v0.3: implementor 41 architecture 3 part 30 variant d rev 0 [ 0.033151] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.033183] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.034144] pinctrl core: initialized pinctrl subsystem [ 0.036110] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.039585] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.040518] audit: initializing netlink subsys (disabled) [ 0.040788] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 [ 0.042215] thermal_sys: Registered thermal governor 'step_wise' [ 0.043072] cpuidle: using governor ladder [ 0.043133] cpuidle: using governor menu [ 0.044430] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.044450] hw-breakpoint: maximum watchpoint size is 4 bytes. [ 0.078847] platform ff980000.hdmi: Fixing up cyclic dependency with ff930000.vop [ 0.126130] Kprobes globally optimized [ 0.209053] raid6: neonx8 gen() 975 MB/s [ 0.277274] raid6: neonx8 xor() 615 MB/s [ 0.345503] raid6: neonx4 gen() 1100 MB/s [ 0.413723] raid6: neonx4 xor() 721 MB/s [ 0.482001] raid6: neonx2 gen() 1077 MB/s [ 0.550218] raid6: neonx2 xor() 839 MB/s [ 0.618481] raid6: neonx1 gen() 769 MB/s [ 0.686715] raid6: neonx1 xor() 710 MB/s [ 0.755021] raid6: int32x8 gen() 236 MB/s [ 0.823202] raid6: int32x8 xor() 135 MB/s [ 0.891600] raid6: int32x4 gen() 248 MB/s [ 0.959760] raid6: int32x4 xor() 150 MB/s [ 1.028028] raid6: int32x2 gen() 250 MB/s [ 1.096230] raid6: int32x2 xor() 119 MB/s [ 1.164541] raid6: int32x1 gen() 240 MB/s [ 1.232763] raid6: int32x1 xor() 94 MB/s [ 1.232777] raid6: using algorithm neonx4 gen() 1100 MB/s [ 1.232788] raid6: .... xor() 721 MB/s, rmw enabled [ 1.232797] raid6: using neon recovery algorithm [ 1.234485] iommu: Default domain type: Translated [ 1.234503] iommu: DMA domain TLB invalidation policy: strict mode [ 1.240068] SCSI subsystem initialized [ 1.240389] usbcore: registered new interface driver usbfs [ 1.240475] usbcore: registered new interface driver hub [ 1.240545] usbcore: registered new device driver usb [ 1.240729] mc: Linux media interface: v0.10 [ 1.240784] videodev: Linux video capture interface: v2.00 [ 1.240945] pps_core: LinuxPPS API ver. 1 registered [ 1.240957] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.240986] PTP clock support registered [ 1.242514] Bluetooth: Core ver 2.22 [ 1.242584] NET: Registered PF_BLUETOOTH protocol family [ 1.242596] Bluetooth: HCI device and connection manager initialized [ 1.242617] Bluetooth: HCI socket layer initialized [ 1.242635] Bluetooth: L2CAP socket layer initialized [ 1.242671] Bluetooth: SCO socket layer initialized [ 1.242723] NetLabel: Initializing [ 1.242732] NetLabel: domain hash size = 128 [ 1.242742] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.242852] NetLabel: unlabeled traffic allowed by default [ 1.244094] clocksource: Switched to clocksource arch_sys_counter [ 1.392670] VFS: Disk quotas dquot_6.6.0 [ 1.392778] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 1.393011] FS-Cache: Loaded [ 1.393303] CacheFiles: Loaded [ 1.409892] NET: Registered PF_INET protocol family [ 1.410185] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.412127] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 12288 bytes, linear) [ 1.412188] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.412216] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 1.412346] TCP bind hash table entries: 8192 (order: 5, 163840 bytes, linear) [ 1.412641] TCP: Hash tables configured (established 8192 bind 8192) [ 1.412796] UDP hash table entries: 512 (order: 2, 24576 bytes, linear) [ 1.412867] UDP-Lite hash table entries: 512 (order: 2, 24576 bytes, linear) [ 1.413252] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.415231] Trying to unpack rootfs image as initramfs... [ 1.420364] hw perfevents: enabled with armv7_cortex_a12 PMU driver, 7 counters available [ 1.672494] Initialise system trusted keyrings [ 1.672920] workingset: timestamp_bits=14 max_order=19 bucket_order=5 [ 1.681994] zbud: loaded [ 1.684188] SGI XFS with ACLs, security attributes, realtime, scrub, quota, no debug enabled [ 1.846493] xor: measuring software checksum speed [ 1.855632] arm4regs : 1086 MB/sec [ 1.867742] 8regs : 813 MB/sec [ 1.879895] 32regs : 811 MB/sec [ 1.886740] neon : 1447 MB/sec [ 1.886754] xor: using function: neon (1447 MB/sec) [ 1.886773] Key type asymmetric registered [ 1.886784] Asymmetric key parser 'x509' registered [ 1.886962] bounce: pool size: 64 pages [ 1.887054] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242) [ 1.887362] io scheduler mq-deadline registered [ 1.887378] io scheduler kyber registered [ 1.898584] dma-pl330 ff250000.dma-controller: Loaded driver for PL330 DMAC-241330 [ 1.898612] dma-pl330 ff250000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16 [ 1.899979] dma-pl330 ffb20000.dma-controller: Loaded driver for PL330 DMAC-241330 [ 1.900002] dma-pl330 ffb20000.dma-controller: DBUFF-64x8bytes Num_Chans-5 Num_Peri-6 Num_Events-10 [ 1.902075] Serial: 8250/16550 driver, 5 ports, IRQ sharing disabled [ 1.905970] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 42, base_baud = 1500000) is a 16550A [ 1.906293] serial serial0: tty port ttyS0 registered [ 1.907711] ff190000.serial: ttyS1 at MMIO 0xff190000 (irq = 43, base_baud = 1500000) is a 16550A [ 1.909382] ff690000.serial: ttyS2 at MMIO 0xff690000 (irq = 44, base_baud = 1500000) is a 16550A [ 1.909753] printk: console [ttyS2] enabled [ 1.911323] ff1b0000.serial: ttyS3 at MMIO 0xff1b0000 (irq = 45, base_baud = 1500000) is a 16550A [ 1.912928] ff1c0000.serial: ttyS4 at MMIO 0xff1c0000 (irq = 46, base_baud = 1500000) is a 16550A [ 1.916312] rockchip-vop ff930000.vop: Adding to iommu group 1 [ 1.917498] rockchip-vop ff940000.vop: Adding to iommu group 2 [ 1.923468] rockchip-drm display-subsystem: bound ff930000.vop (ops 0xc106e0b8) [ 1.924209] rockchip-drm display-subsystem: bound ff940000.vop (ops 0xc106e0b8) [ 1.925116] usbcore: registered new interface driver udl [ 1.934015] brd: module loaded [ 1.947513] loop: module loaded [ 1.950092] rockchip-spi ff130000.spi: cs1 >= max 1 [ 1.950115] spi_master spi2: spi_device register error /spi@ff130000/spidev@1 [ 1.950158] spi_master spi2: Failed to create SPI device for /spi@ff130000/spidev@1 [ 1.953472] tun: Universal TUN/TAP device driver, 1.6 [ 1.953751] CAN device driver interface [ 1.956477] usbcore: registered new interface driver rt2500usb [ 1.956553] usbcore: registered new interface driver rt73usb [ 1.956650] usbcore: registered new interface driver rt2800usb [ 1.956744] usbcore: registered new interface driver rtl8xxxu [ 1.956824] usbcore: registered new interface driver rndis_wlan [ 1.956888] usbcore: registered new interface driver cdc_ether [ 1.956948] usbcore: registered new interface driver rndis_host [ 1.957585] dwc2 ff540000.usb: supply vusb_d not found, using dummy regulator [ 1.957820] dwc2 ff540000.usb: supply vusb_a not found, using dummy regulator [ 2.016744] dwc2 ff540000.usb: DWC OTG Controller [ 2.016793] dwc2 ff540000.usb: new USB bus registered, assigned bus number 1 [ 2.016856] dwc2 ff540000.usb: irq 53, io mem 0xff540000 [ 2.017222] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.017247] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.017263] usb usb1: Product: DWC OTG Controller [ 2.017276] usb usb1: Manufacturer: Linux 5.15.74-rockchip dwc2_hsotg [ 2.017289] usb usb1: SerialNumber: ff540000.usb [ 2.018184] hub 1-0:1.0: USB hub found [ 2.018264] hub 1-0:1.0: 1 port detected [ 2.019415] dwc2 ff580000.usb: supply vusb_d not found, using dummy regulator [ 2.019657] dwc2 ff580000.usb: supply vusb_a not found, using dummy regulator [ 2.148204] dwc2 ff580000.usb: EPs: 10, dedicated fifos, 972 entries in SPRAM [ 2.149135] dwc2 ff580000.usb: DWC OTG Controller [ 2.149179] dwc2 ff580000.usb: new USB bus registered, assigned bus number 2 [ 2.149235] dwc2 ff580000.usb: irq 54, io mem 0xff580000 [ 2.149587] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.149610] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.149627] usb usb2: Product: DWC OTG Controller [ 2.149640] usb usb2: Manufacturer: Linux 5.15.74-rockchip dwc2_hsotg [ 2.149653] usb usb2: SerialNumber: ff580000.usb [ 2.150509] hub 2-0:1.0: USB hub found [ 2.150588] hub 2-0:1.0: 1 port detected [ 2.153547] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.153566] ehci-platform: EHCI generic platform driver [ 2.154068] ehci-platform ff500000.usb: EHCI Host Controller [ 2.154390] ehci-platform ff500000.usb: new USB bus registered, assigned bus number 3 [ 2.155027] ehci-platform ff500000.usb: irq 52, io mem 0xff500000 [ 2.320165] usb 1-1: new high-speed USB device number 2 using dwc2 [ 2.336192] ehci-platform ff500000.usb: USB 2.0 started, EHCI 1.00 [ 2.336542] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.336567] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.336584] usb usb3: Product: EHCI Host Controller [ 2.336598] usb usb3: Manufacturer: Linux 5.15.74-rockchip ehci_hcd [ 2.336611] usb usb3: SerialNumber: ff500000.usb [ 2.337476] hub 3-0:1.0: USB hub found [ 2.337551] hub 3-0:1.0: 1 port detected [ 2.338804] usbcore: registered new interface driver usb-storage [ 2.339679] usbcore: registered new interface driver iforce [ 2.339804] usbcore: registered new interface driver xpad [ 2.339966] usbcore: registered new interface driver usbtouchscreen [ 2.340726] i2c_dev: i2c /dev entries driver [ 2.351041] usbcore: registered new interface driver bfusb [ 2.351141] usbcore: registered new interface driver btusb [ 2.351948] sdhci: Secure Digital Host Controller Interface driver [ 2.351960] sdhci: Copyright(c) Pierre Ossman [ 2.351967] Synopsys Designware Multimedia Card Interface Driver [ 2.353332] dwmmc_rockchip ff0f0000.mmc: IDMAC supports 32-bit address mode. [ 2.353623] dwmmc_rockchip ff0f0000.mmc: Using internal DMA controller. [ 2.353647] dwmmc_rockchip ff0f0000.mmc: Version ID is 270a [ 2.353740] dwmmc_rockchip ff0f0000.mmc: DW MMC controller at irq 36,32 bit host data width,256 deep fifo [ 2.354026] mmc_host mmc0: card is non-removable. [ 2.354581] sdhci-pltfm: SDHCI platform and OF driver helper [ 2.355285] ledtrig-cpu: registered to indicate activity on CPUs [ 2.355396] hid: raw HID events driver (C) Jiri Kosina [ 2.355803] usbcore: registered new interface driver usbhid [ 2.355819] usbhid: USB HID core driver [ 2.356256] ashmem: initialized [ 2.359656] NET: Registered PF_INET6 protocol family [ 2.362122] Segment Routing with IPv6 [ 2.362203] In-situ OAM (IOAM) with IPv6 [ 2.362334] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 2.364192] NET: Registered PF_PACKET protocol family [ 2.364281] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 2.364295] can: controller area network core [ 2.364391] NET: Registered PF_CAN protocol family [ 2.364632] Bluetooth: RFCOMM TTY layer initialized [ 2.364659] Bluetooth: RFCOMM socket layer initialized [ 2.364697] Bluetooth: RFCOMM ver 1.11 [ 2.364726] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [ 2.364749] Bluetooth: HIDP socket layer initialized [ 2.364982] 8021q: 802.1Q VLAN Support v1.8 [ 2.365038] lib80211: common routines for IEEE802.11 drivers [ 2.365051] lib80211_crypt: registered algorithm 'NULL' [ 2.365062] lib80211_crypt: registered algorithm 'WEP' [ 2.365072] lib80211_crypt: registered algorithm 'CCMP' [ 2.365082] lib80211_crypt: registered algorithm 'TKIP' [ 2.365132] Key type dns_resolver registered [ 2.365636] ThumbEE CPU extension supported. [ 2.365659] Registering SWP/SWPB emulation handler [ 2.366886] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 2.367054] Loading compiled-in X.509 certificates [ 2.375806] zswap: loaded using pool zstd/z3fold [ 2.377135] Key type ._fscrypt registered [ 2.377154] Key type .fscrypt registered [ 2.377163] Key type fscrypt-provisioning registered [ 2.378980] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no [ 2.435365] rockchip-drm display-subsystem: bound ff930000.vop (ops 0xc106e0b8) [ 2.435972] rockchip-drm display-subsystem: bound ff940000.vop (ops 0xc106e0b8) [ 2.436349] dwhdmi-rockchip ff980000.hdmi: Detected HDMI TX controller v2.00a with HDCP (DWC MHL PHY) [ 2.437445] rockchip-drm display-subsystem: bound ff980000.hdmi (ops 0xc10717e4) [ 2.437972] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes [ 2.438908] [drm] Initialized rockchip 1.0.0 20140818 for display-subsystem on minor 0 [ 2.455758] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 2.557687] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=32.98 [ 2.557721] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 2.557737] usb 1-1: Product: USB2.0 Hub [ 2.558778] hub 1-1:1.0: USB hub found [ 2.559145] hub 1-1:1.0: 4 ports detected [ 2.912142] dwmmc_rockchip ff0f0000.mmc: Busy; trying anyway [ 3.154054] Freeing initrd memory: 20216K [ 3.185382] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 3.203043] Freeing unused kernel image (initmem) memory: 1024K [ 3.220586] Run /init as init process [ 3.220601] with arguments: [ 3.220608] /init [ 3.220616] earlyprintk [ 3.220624] with environment: [ 3.220631] HOME=/ [ 3.220638] TERM=linux [ 3.220646] splash=verbose [ 3.220653] ubootpart=bbb7cd32-01 [ 3.220660] cgroup_enable=memory [ 3.220667] cgroup_memory=1 [ 3.412172] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000) [ 3.426087] mmc_host mmc0: Bus speed (slot 0) = 300000Hz (slot req 300000Hz, actual 300000HZ div = 0) [ 3.460290] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes [ 3.544157] usb 3-1: new high-speed USB device number 2 using ehci-platform [ 3.918006] usb 3-1: config 1 has an invalid interface number: 255 but max is 6 [ 3.918039] usb 3-1: config 1 has no interface number 6 [ 3.919472] usb 3-1: New USB device found, idVendor=0bda, idProduct=481a, bcdDevice= 0.00 [ 3.919498] usb 3-1: New USB device strings: Mfr=3, Product=1, SerialNumber=2 [ 3.919515] usb 3-1: Product: USB Audio [ 3.919529] usb 3-1: Manufacturer: Generic [ 3.919541] usb 3-1: SerialNumber: 201405280001 [ 3.972905] dwmmc_rockchip ff0f0000.mmc: Busy; trying anyway [ 4.297113] rockchip-gpio ff750000.gpio0: probed /pinctrl/gpio0@ff750000 [ 4.298183] rockchip-gpio ff780000.gpio1: probed /pinctrl/gpio1@ff780000 [ 4.306698] rk808 0-001b: chip id: 0x0 [ 4.323622] rockchip-gpio ff790000.gpio2: probed /pinctrl/gpio2@ff790000 [ 4.324745] rockchip-gpio ff7a0000.gpio3: probed /pinctrl/gpio3@ff7a0000 [ 4.325581] rockchip-gpio ff7b0000.gpio4: probed /pinctrl/gpio4@ff7b0000 [ 4.328021] rockchip-gpio ff7c0000.gpio5: probed /pinctrl/gpio5@ff7c0000 [ 4.328566] input: gpio-keys as /devices/platform/gpio-keys/input/input0 [ 4.333046] rockchip-gpio ff7d0000.gpio6: probed /pinctrl/gpio6@ff7d0000 [ 4.333524] vdd_arm: supplied by vcc_sys [ 4.334882] rockchip-gpio ff7e0000.gpio7: probed /pinctrl/gpio7@ff7e0000 [ 4.335459] vdd_gpu: supplied by vcc_sys [ 4.336058] vcc_ddr: supplied by vcc_sys [ 4.339092] vcc_io: supplied by vcc_sys [ 4.340299] vcc18_ldo1: supplied by vcc_sys [ 4.340788] rockchip-gpio ff7f0000.gpio8: probed /pinctrl/gpio8@ff7f0000 [ 4.342520] vcc33_mipi: supplied by vcc_sys [ 4.344115] vdd_10: supplied by vcc_sys [ 4.348447] vcc18_codec: supplied by vcc_io [ 4.349957] vccio_sd: supplied by vcc_io [ 4.351531] vdd10_lcd: supplied by vcc_io [ 4.352984] vcc_18: supplied by vcc_sys [ 4.354661] vcc18_lcd: supplied by vcc_sys [ 4.355931] vcc33_sd: supplied by vcc_io [ 4.356809] vcc33_lan: supplied by vcc_io [ 4.361860] rk808-rtc rk808-rtc: registered as rtc0 [ 4.362531] rk808-rtc rk808-rtc: setting system clock to 2022-12-31T12:08:53 UTC (1672488533) [ 4.365427] dwmmc_rockchip ff0c0000.mmc: IDMAC supports 32-bit address mode. [ 4.367236] dwmmc_rockchip ff0d0000.mmc: IDMAC supports 32-bit address mode. [ 4.371289] vcc_sd: supplied by vcc_io [ 4.377722] panfrost ffa30000.gpu: clock rate = 400000000 [ 4.382191] panfrost ffa30000.gpu: [drm:panfrost_devfreq_init [panfrost]] Failed to register cooling device [ 4.382308] panfrost ffa30000.gpu: mali-t760 id 0x750 major 0x0 minor 0x0 status 0x1 [ 4.382332] panfrost ffa30000.gpu: features: 00000000,100277bf, issues: 00000000,24040400 [ 4.382350] panfrost ffa30000.gpu: Features: L2:0x07120206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7 [ 4.382373] panfrost ffa30000.gpu: shader_present=0xf l2_present=0x1 [ 4.384934] [drm] Initialized panfrost 1.2.0 20180908 for ffa30000.gpu on minor 1 [ 4.386233] rk_gmac-dwmac ff290000.ethernet: IRQ eth_lpi not found [ 4.386419] rk_gmac-dwmac ff290000.ethernet: PTP uses main clock [ 4.386806] rk_gmac-dwmac ff290000.ethernet: clock input or output? (input). [ 4.386831] rk_gmac-dwmac ff290000.ethernet: TX delay(0x30). [ 4.386848] rk_gmac-dwmac ff290000.ethernet: RX delay(0x10). [ 4.386872] rk_gmac-dwmac ff290000.ethernet: integrated PHY? (no). [ 4.386986] rk_gmac-dwmac ff290000.ethernet: cannot get clock clk_mac_speed [ 4.387001] rk_gmac-dwmac ff290000.ethernet: clock input from PHY [ 4.392031] rk_gmac-dwmac ff290000.ethernet: init for RGMII [ 4.392477] rk_gmac-dwmac ff290000.ethernet: User ID: 0x10, Synopsys ID: 0x35 [ 4.392506] rk_gmac-dwmac ff290000.ethernet: DWMAC1000 [ 4.392520] rk_gmac-dwmac ff290000.ethernet: DMA HW capability register supported [ 4.392533] rk_gmac-dwmac ff290000.ethernet: RX Checksum Offload Engine supported [ 4.392545] rk_gmac-dwmac ff290000.ethernet: COE Type 2 [ 4.392557] rk_gmac-dwmac ff290000.ethernet: TX Checksum insertion supported [ 4.392569] rk_gmac-dwmac ff290000.ethernet: Wake-Up On Lan supported [ 4.392847] rk_gmac-dwmac ff290000.ethernet: Normal descriptors [ 4.392866] rk_gmac-dwmac ff290000.ethernet: Ring mode enabled [ 4.392878] rk_gmac-dwmac ff290000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 4.472936] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000) [ 4.476893] input: Generic USB Audio Consumer Control as /devices/platform/ff500000.usb/usb3/3-1/3-1:1.255/0003:0BDA:481A.0001/input/input1 [ 4.477178] dwmmc_rockchip ff0c0000.mmc: Using internal DMA controller. [ 4.477224] dwmmc_rockchip ff0c0000.mmc: Version ID is 270a [ 4.477332] dwmmc_rockchip ff0c0000.mmc: DW MMC controller at irq 34,32 bit host data width,256 deep fifo [ 4.478250] dwmmc_rockchip ff0d0000.mmc: Using internal DMA controller. [ 4.478277] dwmmc_rockchip ff0d0000.mmc: Version ID is 270a [ 4.478372] dwmmc_rockchip ff0d0000.mmc: DW MMC controller at irq 35,32 bit host data width,256 deep fifo [ 4.478719] mmc_host mmc1: card is polling. [ 4.479611] dwmmc_rockchip ff0d0000.mmc: allocated mmc-pwrseq [ 4.479635] mmc_host mmc2: card is non-removable. [ 4.486873] mmc_host mmc0: Bus speed (slot 0) = 200000Hz (slot req 200000Hz, actual 200000HZ div = 0) [ 4.491769] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 4.492275] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ 4.522634] mmc_host mmc2: Bus speed (slot 0) = 50000000Hz (slot req 50000000Hz, actual 50000000HZ div = 0) [ 4.530297] mmc2: new high speed SDIO card at address 0001 [ 4.544675] input: Generic USB Audio as /devices/platform/ff500000.usb/usb3/3-1/3-1:1.255/0003:0BDA:481A.0001/input/input2 [ 4.545590] hid-generic 0003:0BDA:481A.0001: input,hiddev96,hidraw0: USB HID v1.11 Device [Generic USB Audio] on usb-ff500000.usb-1/input255 [ 4.556132] usb 1-1.1: new high-speed USB device number 3 using dwc2 [ 4.557912] mmc_host mmc1: Bus speed (slot 0) = 148500000Hz (slot req 150000000Hz, actual 148500000HZ div = 0) [ 4.681128] usb 1-1.1: New USB device found, idVendor=0781, idProduct=5583, bcdDevice= 1.00 [ 4.681186] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 4.681230] usb 1-1.1: Product: Ultra Fit [ 4.681260] usb 1-1.1: Manufacturer: SanDisk [ 4.681274] usb 1-1.1: SerialNumber: 0101ba1cebf0c39bfa3ef8ad7e1961a7309ebb034173d2c222c7034510eff437c28b00000000000000000000dacbae6500954a00835581079b270e20 [ 4.682730] usb-storage 1-1.1:1.0: USB Mass Storage device detected [ 5.036193] dwmmc_rockchip ff0f0000.mmc: Busy; trying anyway [ 5.297852] dwmmc_rockchip ff0c0000.mmc: Successfully tuned phase to 270 [ 5.297897] mmc1: new ultra high speed SDR104 SDHC card at address 0001 [ 5.299694] mmcblk1: mmc1:0001 SD16G 29.2 GiB [ 5.304784] mmcblk1: p1 [ 5.508239] RTL8211E Gigabit Ethernet stmmac-0:00: attached PHY driver (mii_bus:phy_addr=stmmac-0:00, irq=POLL) [ 5.508272] RTL8211E Gigabit Ethernet stmmac-0:01: attached PHY driver (mii_bus:phy_addr=stmmac-0:01, irq=POLL) [ 5.536224] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000) [ 5.536926] scsi host0: usb-storage 1-1.1:1.0 [ 5.550690] mmc_host mmc0: Bus speed (slot 0) = 187500Hz (slot req 100000Hz, actual 93750HZ div = 1) [ 5.552733] usbcore: registered new interface driver uas [ 5.616120] usb 1-1.2: new high-speed USB device number 4 using dwc2 [ 5.734063] usb 1-1.2: New USB device found, idVendor=0781, idProduct=5583, bcdDevice= 1.00 [ 5.734089] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 5.734106] usb 1-1.2: Product: Ultra Fit [ 5.734119] usb 1-1.2: Manufacturer: SanDisk [ 5.734132] usb 1-1.2: SerialNumber: 01011eacc9793e9e3b06499bd8aa9c2104f564eec2f1289bc8fd59a5665636be3feb000000000000000000002c6e897c0091630083558107ba2761db [ 5.735302] usb-storage 1-1.2:1.0: USB Mass Storage device detected [ 5.736361] scsi host1: usb-storage 1-1.2:1.0 [ 5.816108] usb 1-1.3: new high-speed USB device number 5 using dwc2 [ 5.933684] usb 1-1.3: New USB device found, idVendor=0781, idProduct=5583, bcdDevice= 1.00 [ 5.933710] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 5.933727] usb 1-1.3: Product: Ultra Fit [ 5.933740] usb 1-1.3: Manufacturer: SanDisk [ 5.933752] usb 1-1.3: SerialNumber: 0101275af3c5d40dee8a788755124894cdafd86d0e8c93943c4d23f5c8711c79ed1800000000000000000000a43fd618009b4a00835581079b270e39 [ 5.934882] usb-storage 1-1.3:1.0: USB Mass Storage device detected [ 5.935752] scsi host2: usb-storage 1-1.3:1.0 [ 6.016110] usb 1-1.4: new high-speed USB device number 6 using dwc2 [ 6.108656] dwmmc_rockchip ff0f0000.mmc: Busy; trying anyway [ 6.133997] usb 1-1.4: New USB device found, idVendor=0781, idProduct=5583, bcdDevice= 1.00 [ 6.134023] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 6.134040] usb 1-1.4: Product: Ultra Fit [ 6.134053] usb 1-1.4: Manufacturer: SanDisk [ 6.134065] usb 1-1.4: SerialNumber: 0101459b01e535921d4221661fde51aeadad5e51ee4c523312507cd4c48f5bd54a2b00000000000000000000989a0326000c630083558107ba2763fa [ 6.135305] usb-storage 1-1.4:1.0: USB Mass Storage device detected [ 6.136416] scsi host3: usb-storage 1-1.4:1.0 [ 6.193977] dwmmc_rockchip ff0c0000.mmc: Successfully tuned phase to 269 [ 6.312128] random: crng init done [ 6.608678] mmc_host mmc0: Timeout sending command (cmd 0x202000 arg 0x0 status 0x80202000) [ 6.609943] scsi 0:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6 [ 6.612433] sd 0:0:0:0: [sda] 240353280 512-byte logical blocks: (123 GB/115 GiB) [ 6.614277] sd 0:0:0:0: [sda] Write Protect is off [ 6.614301] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00 [ 6.615138] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 6.632920] sda: sda1 [ 6.638285] sd 0:0:0:0: [sda] Attached SCSI removable disk [ 6.757455] scsi 1:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6 [ 6.759706] sd 1:0:0:0: [sdb] 240353280 512-byte logical blocks: (123 GB/115 GiB) [ 6.761412] sd 1:0:0:0: [sdb] Write Protect is off [ 6.761435] sd 1:0:0:0: [sdb] Mode Sense: 43 00 00 00 [ 6.762161] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 6.779575] sdb: sdb1 [ 6.784672] sd 1:0:0:0: [sdb] Attached SCSI removable disk [ 6.952552] scsi 2:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6 [ 6.957172] sd 2:0:0:0: [sdc] 240353280 512-byte logical blocks: (123 GB/115 GiB) [ 6.958919] sd 2:0:0:0: [sdc] Write Protect is off [ 6.958944] sd 2:0:0:0: [sdc] Mode Sense: 43 00 00 00 [ 6.959657] sd 2:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 6.976462] sdc: sdc1 [ 6.980567] sd 2:0:0:0: [sdc] Attached SCSI removable disk [ 7.141205] scsi 3:0:0:0: Direct-Access SanDisk Ultra Fit 1.00 PQ: 0 ANSI: 6 [ 7.143717] sd 3:0:0:0: [sdd] 240353280 512-byte logical blocks: (123 GB/115 GiB) [ 7.145687] sd 3:0:0:0: [sdd] Write Protect is off [ 7.145710] sd 3:0:0:0: [sdd] Mode Sense: 43 00 00 00 [ 7.146950] sd 3:0:0:0: [sdd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 7.164226] sdd: sdd1 [ 7.168776] sd 3:0:0:0: [sdd] Attached SCSI removable disk [ 7.463839] md: kicking non-fresh sdb1 from array! [ 7.491056] async_tx: api initialized (async) [ 7.505565] md/raid:md0: device sdd1 operational as raid disk 3 [ 7.505590] md/raid:md0: device sdc1 operational as raid disk 2 [ 7.505602] md/raid:md0: device sda1 operational as raid disk 0 [ 7.509506] md/raid:md0: raid level 5 active with 3 out of 4 devices, algorithm 2 [ 7.522674] md0: detected capacity change from 0 to 720654336 [ 8.762459] dw-apb-uart ff690000.serial: forbid DMA for kernel console [ 9.288430] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 10.027322] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 10.028985] systemd[1]: Detected architecture arm. [ 10.033291] systemd[1]: Hostname set to <tinkerboard>. [ 11.718271] systemd[1]: Queued start job for default target Graphical Interface. [ 11.728207] systemd[1]: Created slice Slice /system/modprobe. [ 11.732775] systemd[1]: Created slice Slice /system/serial-getty. [ 11.735742] systemd[1]: Created slice User and Session Slice. [ 11.736990] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 11.739447] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 11.740836] systemd[1]: Reached target Remote File Systems. [ 11.741156] systemd[1]: Reached target Slice Units. [ 11.741621] systemd[1]: Reached target Swaps. [ 11.742037] systemd[1]: Reached target System Time Set. [ 11.743072] systemd[1]: Reached target Local Verity Protected Volumes. [ 11.744986] systemd[1]: Listening on Syslog Socket. [ 11.746406] systemd[1]: Listening on fsck to fsckd communication Socket. [ 11.747243] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 11.749448] systemd[1]: Listening on Journal Audit Socket. [ 11.750803] systemd[1]: Listening on Journal Socket (/dev/log). [ 11.752560] systemd[1]: Listening on Journal Socket. [ 11.754523] systemd[1]: Listening on udev Control Socket. [ 11.755877] systemd[1]: Listening on udev Kernel Socket. [ 11.757293] systemd[1]: Condition check resulted in Huge Pages File System being skipped. [ 11.764580] systemd[1]: Mounting POSIX Message Queue File System... [ 11.774015] systemd[1]: Mounting Kernel Debug File System... [ 11.784749] systemd[1]: Mounting Kernel Trace File System... [ 11.800380] systemd[1]: Starting Restore / save the current clock... [ 11.811702] systemd[1]: Starting Set the console keyboard layout... [ 11.823240] systemd[1]: Starting Create List of Static Device Nodes... [ 11.837152] systemd[1]: Starting Load Kernel Module chromeos_pstore... [ 11.851265] systemd[1]: Starting Load Kernel Module configfs... [ 11.868756] systemd[1]: Starting Load Kernel Module drm... [ 11.880992] systemd[1]: Starting Load Kernel Module efi_pstore... [ 11.900267] systemd[1]: Starting Load Kernel Module fuse... [ 11.913314] systemd[1]: Starting Load Kernel Module pstore_blk... [ 11.926665] systemd[1]: Starting Load Kernel Module pstore_zone... [ 11.939417] systemd[1]: Starting Load Kernel Module ramoops... [ 11.952233] systemd[1]: Started Nameserver information manager. [ 11.955773] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 11.970491] systemd[1]: Starting Load Kernel Modules... [ 11.973005] fuse: init (API version 7.34) [ 11.981813] systemd[1]: Starting Remount Root and Kernel File Systems... [ 11.995955] systemd[1]: Starting Coldplug All udev Devices... [ 12.025450] systemd[1]: Mounted POSIX Message Queue File System. [ 12.027126] systemd[1]: Mounted Kernel Debug File System. [ 12.029092] systemd[1]: Mounted Kernel Trace File System. [ 12.034786] systemd[1]: Finished Restore / save the current clock. [ 12.040051] systemd[1]: Finished Create List of Static Device Nodes. [ 12.044495] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. [ 12.047522] systemd[1]: Finished Load Kernel Module chromeos_pstore. [ 12.051829] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 12.055482] systemd[1]: Finished Load Kernel Module configfs. [ 12.059830] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 12.063525] systemd[1]: Finished Load Kernel Module drm. [ 12.067141] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 12.069193] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 12.071039] systemd[1]: Finished Load Kernel Module efi_pstore. [ 12.083772] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 12.086648] systemd[1]: Finished Load Kernel Module fuse. [ 12.090857] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. [ 12.093637] systemd[1]: Finished Load Kernel Module pstore_blk. [ 12.097189] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. [ 12.099867] systemd[1]: Finished Load Kernel Module pstore_zone. [ 12.103417] systemd[1]: modprobe@ramoops.service: Deactivated successfully. [ 12.106820] systemd[1]: Finished Load Kernel Module ramoops. [ 12.113958] systemd[1]: Finished Load Kernel Modules. [ 12.118006] systemd[1]: Finished Remount Root and Kernel File Systems. [ 12.130171] systemd[1]: Mounting FUSE Control File System... [ 12.139536] systemd[1]: Mounting Kernel Configuration File System... [ 12.140950] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 12.153674] systemd[1]: Starting Load/Save Random Seed... [ 12.164279] systemd[1]: Starting Apply Kernel Variables... [ 12.176206] systemd[1]: Starting Create System Users... [ 12.192880] systemd[1]: Mounted FUSE Control File System. [ 12.194641] systemd[1]: Mounted Kernel Configuration File System. [ 12.257318] systemd[1]: Finished Load/Save Random Seed. [ 12.259124] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 12.305178] systemd[1]: Finished Create System Users. [ 12.315181] systemd[1]: Starting Create Static Device Nodes in /dev... [ 12.331279] systemd[1]: Finished Apply Kernel Variables. [ 12.429076] systemd[1]: Finished Create Static Device Nodes in /dev. [ 12.432431] systemd[1]: systemd-udevd.service: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling. [ 12.432471] systemd[1]: (This warning is only shown for the first unit using IP firewalling.) [ 12.438905] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 12.446090] systemd[1]: Finished Set the console keyboard layout. [ 12.447885] systemd[1]: Reached target Preparation for Local File Systems. [ 12.458788] systemd[1]: Mounting /tmp... [ 12.481962] systemd[1]: Mounted /tmp. [ 12.483332] systemd[1]: Reached target Local File Systems. [ 12.484511] systemd[1]: Condition check resulted in Load AppArmor profiles being skipped. [ 12.494038] systemd[1]: Starting Armbian leds state... [ 12.504812] systemd[1]: Starting Armbian ZRAM config... [ 12.515298] systemd[1]: Starting Set console font and keymap... [ 12.530067] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 12.530871] systemd[1]: Condition check resulted in Load AppArmor profiles managed internally by snapd being skipped. [ 12.536769] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 12.537304] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 12.538201] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 12.556249] systemd[1]: Starting Uncomplicated firewall... [ 12.581851] systemd[1]: Received SIGRTMIN+20 from PID 280 (plymouthd). [ 12.597535] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 12.613501] systemd[1]: Finished Set console font and keymap. [ 12.628151] systemd[1]: Finished Uncomplicated firewall. [ 12.629658] systemd[1]: Reached target Preparation for Network. [ 12.640423] systemd[1]: Finished Armbian leds state. [ 13.021967] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 13.129047] zram: Added device: zram0 [ 13.139496] zram: Added device: zram1 [ 13.140784] zram: Added device: zram2 [ 13.422198] zram0: detected capacity change from 0 to 2053416 [ 13.440207] systemd[1]: Finished Coldplug All udev Devices. [ 13.466012] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 13.485969] systemd[1]: Starting Show Plymouth Boot Screen... [ 13.521915] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 13.527159] Adding 1026704k swap on /dev/zram0. Priority:5 extents:1 across:1026704k SSFS [ 13.538609] systemd[1]: Starting Raise network interfaces... [ 13.626513] systemd[1]: Started Show Plymouth Boot Screen. [ 13.628142] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 13.630061] systemd[1]: Started Forward Password Requests to Plymouth Directory Watch. [ 13.630473] systemd[1]: Reached target Local Encrypted Volumes. [ 13.814142] core: _opp_supported_by_regulators: OPP minuV: 1475000 maxuV: 1475000, not supported by regulator [ 13.814179] cpu cpu0: _opp_add: OPP not supported by regulators (2016000000) [ 13.814642] core: _opp_supported_by_regulators: OPP minuV: 1475000 maxuV: 1475000, not supported by regulator [ 13.814666] cpu cpu0: _opp_add: OPP not supported by regulators (2040000000) [ 13.815040] core: _opp_supported_by_regulators: OPP minuV: 1475000 maxuV: 1475000, not supported by regulator [ 13.815062] cpu cpu0: _opp_add: OPP not supported by regulators (2064000000) [ 13.815425] core: _opp_supported_by_regulators: OPP minuV: 1500000 maxuV: 1500000, not supported by regulator [ 13.815446] cpu cpu0: _opp_add: OPP not supported by regulators (2088000000) [ 13.815899] core: _opp_supported_by_regulators: OPP minuV: 1500000 maxuV: 1500000, not supported by regulator [ 13.815923] cpu cpu0: _opp_add: OPP not supported by regulators (2112000000) [ 13.816472] core: _opp_supported_by_regulators: OPP minuV: 1500000 maxuV: 1500000, not supported by regulator [ 13.816509] cpu cpu0: _opp_add: OPP not supported by regulators (2136000000) [ 13.816988] core: _opp_supported_by_regulators: OPP minuV: 1500000 maxuV: 1500000, not supported by regulator [ 13.817011] cpu cpu0: _opp_add: OPP not supported by regulators (2160000000) [ 13.817362] core: _opp_supported_by_regulators: OPP minuV: 1500000 maxuV: 1500000, not supported by regulator [ 13.817381] cpu cpu0: _opp_add: OPP not supported by regulators (2184000000) [ 13.817740] core: _opp_supported_by_regulators: OPP minuV: 1500000 maxuV: 1500000, not supported by regulator [ 13.817761] cpu cpu0: _opp_add: OPP not supported by regulators (2208000000) [ 13.817800] cpu cpu0: _opp_is_duplicate: duplicate OPPs detected. Existing: freq: 1704000000, volt: 1350000, enabled: 1. New: freq: 1704000000, volt: 1350000, enabled: 1 [ 13.817861] cpu cpu0: _opp_is_duplicate: duplicate OPPs detected. Existing: freq: 1800000000, volt: 1400000, enabled: 1. New: freq: 1800000000, volt: 1400000, enabled: 1 [ 13.838529] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 500000 KHz, changing to: 600000 KHz [ 13.879835] Bluetooth: HCI UART driver ver 2.3 [ 13.879852] Bluetooth: HCI UART protocol H4 registered [ 13.879857] Bluetooth: HCI UART protocol ATH3K registered [ 13.880257] dw-apb-uart ff180000.serial: failed to request DMA [ 13.880717] Bluetooth: HCI UART protocol Three-wire (H5) registered [ 13.880872] Bluetooth: HCI UART protocol Broadcom registered [ 13.938148] zram1: detected capacity change from 0 to 102400 [ 13.975502] systemd[1]: Reached target Hardware activated USB gadget. [ 13.990590] r8723bs: module is from the staging directory, the quality is unknown, you have been warned. [ 14.010268] r8723bs: unknown parameter 'rtw_enusbss' ignored [ 14.015105] pnetdev = 1cdb6091 [ 14.044159] systemd[1]: Finished Armbian ZRAM config. [ 14.060051] systemd[1]: Starting Armbian memory supported logging... [ 14.112449] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:5 [ 14.146982] systemd[1]: Found device /dev/ttyS2. [ 14.150234] gpiomem-rk3288 ff750000.rk3288-gpiomem: Initialised: Registers at 0xff750000 [ 14.168624] dw_wdt ff800000.watchdog: No valid TOPs array specified [ 14.181069] rk3288-crypto ff8a0000.crypto: Crypto Accelerator successfully registered [ 14.209770] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 14.474041] systemd[1]: Finished Raise network interfaces. [ 14.536546] rockchip-iep ff900000.iep: Adding to iommu group 0 [ 14.537789] rockchip-iep ff900000.iep: Device rockchip-iep registered as /dev/video0 [ 14.542572] rockchip-rga ff920000.rga: HW Version: 0x00.00 [ 14.549652] rockchip-rga ff920000.rga: Registered rockchip-rga as /dev/video1 [ 14.557139] rockchip_vdec: module is from the staging directory, the quality is unknown, you have been warned. [ 14.563278] hantro_vpu: module is from the staging directory, the quality is unknown, you have been warned. [ 14.569703] rkvdec ff9c0000.hevc: Adding to iommu group 4 [ 14.571459] hantro-vpu ff9a0000.video-codec: Adding to iommu group 3 [ 14.575042] hantro-vpu ff9a0000.video-codec: registered rockchip,rk3288-vpu-enc as /dev/video2 [ 14.575226] hantro-vpu ff9a0000.video-codec: registered rockchip,rk3288-vpu-dec as /dev/video3 [ 14.639367] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723 [ 14.643093] Bluetooth: hci0: RTL: rom_version status=0 version=1 [ 14.643112] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723bs_fw.bin [ 14.676798] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723bs_config.bin [ 14.704593] Bluetooth: hci0: RTL: cfg_sz 68, total sz 24088 [ 14.823461] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 14.835250] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 15.047154] systemd[1]: Started Load/Save RF Kill Switch Status. [ 15.047661] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 15.048185] systemd[1]: Condition check resulted in Huge Pages File System being skipped. [ 15.048360] systemd[1]: Condition check resulted in Load AppArmor profiles being skipped. [ 15.052490] systemd[1]: Starting Load Kernel Module chromeos_pstore... [ 15.056644] systemd[1]: Starting Load Kernel Module efi_pstore... [ 15.061312] systemd[1]: Starting Load Kernel Module pstore_blk... [ 15.066164] systemd[1]: Starting Load Kernel Module pstore_zone... [ 15.070649] systemd[1]: Starting Load Kernel Module ramoops... [ 15.071237] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 15.071479] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 15.071754] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 15.074159] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. [ 15.076055] systemd[1]: Finished Load Kernel Module chromeos_pstore. [ 15.078046] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 15.079148] systemd[1]: Finished Load Kernel Module efi_pstore. [ 15.080691] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. [ 15.081723] systemd[1]: Finished Load Kernel Module pstore_blk. [ 15.083271] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. [ 15.084519] systemd[1]: Finished Load Kernel Module pstore_zone. [ 15.090781] systemd[1]: modprobe@ramoops.service: Deactivated successfully. [ 15.091614] systemd[1]: Finished Load Kernel Module ramoops. [ 15.092688] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 15.269532] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 15.270072] systemd[1]: Condition check resulted in Huge Pages File System being skipped. [ 15.270218] systemd[1]: Condition check resulted in Load AppArmor profiles being skipped. [ 15.273647] systemd[1]: Started MD array monitor. [ 15.278382] systemd[1]: Starting Load Kernel Module chromeos_pstore... [ 15.282371] systemd[1]: Starting Load Kernel Module efi_pstore... [ 15.286327] systemd[1]: Starting Load Kernel Module pstore_blk... [ 15.290227] systemd[1]: Starting Load Kernel Module pstore_zone... [ 15.294775] systemd[1]: Starting Load Kernel Module ramoops... [ 15.295316] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 15.295480] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 15.295699] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 15.297930] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. [ 15.298851] systemd[1]: Finished Load Kernel Module chromeos_pstore. [ 15.300416] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 15.301278] systemd[1]: Finished Load Kernel Module efi_pstore. [ 15.302750] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. [ 15.303650] systemd[1]: Finished Load Kernel Module pstore_blk. [ 15.305259] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. [ 15.306195] systemd[1]: Finished Load Kernel Module pstore_zone. [ 15.343594] systemd[1]: modprobe@ramoops.service: Deactivated successfully. [ 15.344437] systemd[1]: Finished Load Kernel Module ramoops. [ 15.344979] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 15.345453] systemd[1]: Condition check resulted in Huge Pages File System being skipped. [ 15.345665] systemd[1]: Condition check resulted in Load AppArmor profiles being skipped. [ 15.349623] systemd[1]: Starting Load Kernel Module chromeos_pstore... [ 15.354419] systemd[1]: Starting Load Kernel Module efi_pstore... [ 15.358956] systemd[1]: Starting Load Kernel Module pstore_blk... [ 15.363217] systemd[1]: Starting Load Kernel Module pstore_zone... [ 15.363843] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 15.364042] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 15.364426] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 15.366975] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. [ 15.368156] systemd[1]: Finished Load Kernel Module chromeos_pstore. [ 15.369750] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 15.371193] systemd[1]: Finished Load Kernel Module efi_pstore. [ 15.372872] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. [ 15.373649] systemd[1]: Finished Load Kernel Module pstore_blk. [ 15.374847] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. [ 15.375602] systemd[1]: Finished Load Kernel Module pstore_zone. [ 15.376437] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 15.403759] Bluetooth: hci0: RTL: fw version 0x1e4cc3ff [ 16.835104] usbcore: registered new interface driver snd-usb-audio [ 16.898574] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 16.899169] systemd[1]: Condition check resulted in Huge Pages File System being skipped. [ 16.899352] systemd[1]: Condition check resulted in Load AppArmor profiles being skipped. [ 16.902673] systemd[1]: Starting Load Kernel Module chromeos_pstore... [ 16.906986] systemd[1]: Starting Load Kernel Module efi_pstore... [ 16.911136] systemd[1]: Starting Load Kernel Module pstore_blk... [ 16.915262] systemd[1]: Starting Load Kernel Module pstore_zone... [ 16.919356] systemd[1]: Starting Load Kernel Module ramoops... [ 16.919994] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 16.920212] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 16.920412] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 16.922424] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. [ 16.923392] systemd[1]: Finished Load Kernel Module chromeos_pstore. [ 16.924864] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 16.925631] systemd[1]: Finished Load Kernel Module efi_pstore. [ 16.926946] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. [ 16.927709] systemd[1]: Finished Load Kernel Module pstore_blk. [ 16.928879] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. [ 16.929632] systemd[1]: Finished Load Kernel Module pstore_zone. [ 16.930714] systemd[1]: modprobe@ramoops.service: Deactivated successfully. [ 16.931446] systemd[1]: Finished Load Kernel Module ramoops. [ 16.932016] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 18.224139] systemd[1]: Finished Armbian memory supported logging. [ 18.228549] systemd[1]: Starting Journal Service... [ 18.401702] systemd[1]: Started Journal Service. [ 18.417609] systemd-journald[892]: Received client request to flush runtime journal. [ 25.366760] NET: Registered PF_ALG protocol family [ 25.930002] rk_gmac-dwmac ff290000.ethernet eth0: PHY [stmmac-0:00] driver [RTL8211E Gigabit Ethernet] (irq=POLL) [ 25.930346] rk_gmac-dwmac ff290000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0 [ 25.940099] rk_gmac-dwmac ff290000.ethernet eth0: No Safety Features support found [ 25.940116] rk_gmac-dwmac ff290000.ethernet eth0: PTP not supported by HW [ 25.940464] rk_gmac-dwmac ff290000.ethernet eth0: configuring for phy/rgmii link mode [ 25.974655] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:14 [ 25.978664] rtl8723bs: acquire FW from file:rtlwifi/rtl8723bs_nic.bin [ 27.286559] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:1 [ 27.346816] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:4 [ 27.884344] loop0: detected capacity change from 0 to 8 [ 27.907819] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 30.020894] rk_gmac-dwmac ff290000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 30.020929] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 32.007270] hdmi-audio-codec hdmi-audio-codec.2.auto: Only one simultaneous stream supported! [ 32.019171] hdmi-audio-codec hdmi-audio-codec.2.auto: ASoC: error at snd_soc_dai_startup on i2s-hifi: -22 [ 32.031529] ff890000.i2s-i2s-hifi: soc_pcm_open() failed (-22) [ 37.242733] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:4 [ 38.366461] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:4 [ 54.824733] hdmi-audio-codec hdmi-audio-codec.2.auto: Only one simultaneous stream supported! [ 54.834377] hdmi-audio-codec hdmi-audio-codec.2.auto: ASoC: error at snd_soc_dai_startup on i2s-hifi: -22 [ 54.845203] ff890000.i2s-i2s-hifi: soc_pcm_open() failed (-22) [ 105.953908] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:4 [ 106.968966] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:4 [ 180.503520] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:4 [ 181.528744] rtl8723bs mmc2:0001:1 wlan0: rtw_ndev_notifier_call(wlan0) state:4 And OF is already wrong mine is Tinker Board .... If you are busy today, let me wish you already a Happy New Year, hoping you'll read it tomorrow
  11. armbianmonitor -U 1 2 ### Activated 1 lzo-rle zram swap devices with 994MB each. 3 ### Activated Armbian ramlog partition with zstd compression 4 5 Fri Dec 9 06:53:53 PM CET 2022 | Pine64 | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 6 7 ### dmesg: 8 9 [ 1.295379] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 10 [ 1.295388] sun8i-ce 1c15000.crypto: Register stdrng 11 [ 1.295556] sun8i-ce 1c15000.crypto: TRNG not supported 12 [ 1.295565] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 13 [ 1.296170] hid: raw HID events driver (C) Jiri Kosina 14 [ 1.296320] usbcore: registered new interface driver usbhid 15 [ 1.296327] usbhid: USB HID core driver 16 [ 1.302464] NET: Registered PF_INET6 protocol family 17 [ 1.955883] Freeing initrd memory: 12684K 18 [ 1.989691] Segment Routing with IPv6 19 [ 1.989807] In-situ OAM (IOAM) with IPv6 20 [ 1.989917] NET: Registered PF_PACKET protocol family 21 [ 1.990072] 8021q: 802.1Q VLAN Support v1.8 22 [ 1.990245] 9pnet: Installing 9P2000 support 23 [ 1.990335] Key type dns_resolver registered 24 [ 1.990873] registered taskstats version 1 25 [ 1.990891] Loading compiled-in X.509 certificates 26 [ 1.995134] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 27 [ 1.999519] zswap: loaded using pool zstd/z3fold 28 [ 2.000278] Key type ._fscrypt registered 29 [ 2.000287] Key type .fscrypt registered 30 [ 2.000293] Key type fscrypt-provisioning registered 31 [ 2.001478] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 32 [ 2.017261] Key type encrypted registered 33 [ 2.017301] AppArmor: AppArmor sha1 policy hashing enabled 34 [ 2.017348] ima: No TPM chip found, activating TPM-bypass! 35 [ 2.017386] ima: Allocated hash algorithm: sha1 36 [ 2.017458] ima: No architecture policies found 37 [ 2.017515] evm: Initialising EVM extended attributes: 38 [ 2.017520] evm: security.selinux 39 [ 2.017526] evm: security.SMACK64 40 [ 2.017530] evm: security.SMACK64EXEC 41 [ 2.017535] evm: security.SMACK64TRANSMUTE 42 [ 2.017539] evm: security.SMACK64MMAP 43 [ 2.017544] evm: security.apparmor 44 [ 2.017549] evm: security.ima 45 [ 2.017554] evm: security.capability 46 [ 2.017558] evm: HMAC attrs: 0x1 47 [ 2.030401] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 48 [ 2.030490] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 49 [ 2.031240] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 50 [ 2.031307] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 51 [ 2.032165] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 52 [ 2.032550] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 53 [ 2.034692] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 54 [ 2.037741] vcc-3v3: supplied by regulator-dummy 55 [ 2.038237] vdd-cpux: supplied by regulator-dummy 56 [ 2.038910] dcdc4: supplied by regulator-dummy 57 [ 2.039103] vcc-dram: supplied by regulator-dummy 58 [ 2.039531] vdd-sys: supplied by regulator-dummy 59 [ 2.040092] vcc-phy: supplied by regulator-dummy 60 [ 2.040434] aldo1: supplied by regulator-dummy 61 [ 2.040616] vcc-pl: supplied by regulator-dummy 62 [ 2.041085] vcc-pll-avcc: supplied by regulator-dummy 63 [ 2.041722] vcc-hdmi: supplied by regulator-dummy 64 [ 2.042088] vcc-mipi: supplied by regulator-dummy 65 [ 2.042472] dldo3: supplied by regulator-dummy 66 [ 2.042833] vcc-wifi: supplied by regulator-dummy 67 [ 2.043218] cpvdd: supplied by regulator-dummy 68 [ 2.043582] eldo2: supplied by regulator-dummy 69 [ 2.043950] eldo3: supplied by regulator-dummy 70 [ 2.044339] vcc-1v2-hsic: supplied by regulator-dummy 71 [ 2.044531] vdd-cpus: supplied by regulator-dummy 72 [ 2.044935] vcc-rtc: supplied by regulator-dummy 73 [ 2.045380] ldo-io0: supplied by regulator-dummy 74 [ 2.045759] ldo-io1: supplied by regulator-dummy 75 [ 2.045885] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 76 [ 2.050826] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 77 [ 2.051233] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 78 [ 2.051785] printk: console [ttyS0] disabled 79 [ 2.051872] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 80 [ 2.052086] printk: console [ttyS0] enabled 81 [ 2.052806] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 82 [ 2.053260] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 83 [ 2.053451] serial serial0: tty port ttyS1 registered 84 [ 2.083968] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 85 [ 2.085749] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 86 [ 2.086246] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 87 [ 2.086263] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 88 [ 2.086501] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 89 [ 2.087655] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 90 [ 2.088290] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 91 [ 2.088666] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 92 [ 2.089340] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 93 [ 2.089450] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 94 [ 2.090166] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 95 [ 2.090763] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 96 [ 2.091508] ehci-platform 1c1a000.usb: EHCI Host Controller 97 [ 2.091546] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 98 [ 2.091676] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 99 [ 2.105429] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 100 [ 2.105873] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 101 [ 2.105889] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 102 [ 2.105901] usb usb1: Product: EHCI Host Controller 103 [ 2.105910] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 104 [ 2.105920] usb usb1: SerialNumber: 1c1a000.usb 105 [ 2.106467] hub 1-0:1.0: USB hub found 106 [ 2.106516] hub 1-0:1.0: 1 port detected 107 [ 2.107527] ehci-platform 1c1b000.usb: EHCI Host Controller 108 [ 2.107553] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 109 [ 2.107679] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 110 [ 2.121430] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 111 [ 2.121720] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 112 [ 2.121735] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 113 [ 2.121747] usb usb2: Product: EHCI Host Controller 114 [ 2.121756] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 115 [ 2.121765] usb usb2: SerialNumber: 1c1b000.usb 116 [ 2.122246] hub 2-0:1.0: USB hub found 117 [ 2.122289] hub 2-0:1.0: 1 port detected 118 [ 2.301512] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 119 [ 2.301552] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 120 [ 2.301731] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 121 [ 2.365483] usb 1-1: new high-speed USB device number 2 using ehci-platform 122 [ 2.365752] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 123 [ 2.365768] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 124 [ 2.365780] usb usb3: Product: Generic Platform OHCI controller 125 [ 2.365789] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 126 [ 2.365799] usb usb3: SerialNumber: 1c1a400.usb 127 [ 2.366359] hub 3-0:1.0: USB hub found 128 [ 2.366410] hub 3-0:1.0: 1 port detected 129 [ 2.367435] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 130 [ 2.367463] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 131 [ 2.367603] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 132 [ 2.377431] usb 2-1: new high-speed USB device number 2 using ehci-platform 133 [ 2.433690] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 134 [ 2.433705] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 135 [ 2.433717] usb usb4: Product: Generic Platform OHCI controller 136 [ 2.433726] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 137 [ 2.433736] usb usb4: SerialNumber: 1c1b400.usb 138 [ 2.434255] hub 4-0:1.0: USB hub found 139 [ 2.434301] hub 4-0:1.0: 1 port detected 140 [ 2.435343] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 141 [ 2.435505] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 142 [ 2.509674] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 143 [ 2.509706] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 144 [ 2.509990] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 145 [ 2.510006] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 146 [ 2.510018] usb usb5: Product: MUSB HDRC host driver 147 [ 2.510027] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 148 [ 2.510036] usb usb5: SerialNumber: musb-hdrc.4.auto 149 [ 2.510603] hub 5-0:1.0: USB hub found 150 [ 2.510653] hub 5-0:1.0: 1 port detected 151 [ 2.514069] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 152 [ 2.514140] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 153 [ 2.515161] sunxi-mmc 1c0f000.mmc: Got CD GPIO 154 [ 2.515161] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 155 [ 2.515306] of_cfs_init 156 [ 2.515433] of_cfs_init: OK 157 [ 2.515791] ALSA device list: 158 [ 2.515798] No soundcards found. 159 [ 2.531360] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 160 [ 2.531379] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 161 [ 2.531391] usb 1-1: SerialNumber: 20181120 162 [ 2.532355] usb-storage 1-1:1.0: USB Mass Storage device detected 163 [ 2.532902] scsi host0: usb-storage 1-1:1.0 164 [ 2.536597] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 165 [ 2.536613] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 166 [ 2.536624] usb 2-1: Product: USB2.1 Hub 167 [ 2.536634] usb 2-1: Manufacturer: GenesysLogic 168 [ 2.537226] hub 2-1:1.0: USB hub found 169 [ 2.537598] hub 2-1:1.0: 4 ports detected 170 [ 2.540602] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 171 [ 2.540829] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 172 [ 2.542490] Freeing unused kernel memory: 2496K 173 [ 2.542625] Run /init as init process 174 [ 2.542633] with arguments: 175 [ 2.542639] /init 176 [ 2.542645] with environment: 177 [ 2.542650] HOME=/ 178 [ 2.542655] TERM=linux 179 [ 2.542661] ubootpart=ea5e158f-01 180 [ 2.542667] cgroup_enable=memory 181 [ 2.577256] mmc0: new high speed SDHC card at address 0001 182 [ 2.578372] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 183 [ 2.580778] mmcblk0: p1 184 [ 2.853458] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 185 [ 3.038364] usbcore: registered new interface driver uas 186 [ 3.053676] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 187 [ 3.080577] axp20x-gpio axp20x-gpio: DMA mask not set 188 [ 3.088676] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 189 [ 3.098900] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 190 [ 3.099216] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 191 [ 3.099233] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 192 [ 3.099565] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 193 [ 3.099821] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 194 [ 3.099870] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 195 [ 3.100314] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 196 [ 3.100337] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 197 [ 3.100344] dwmac-sun8i 1c30000.ethernet: COE Type 2 198 [ 3.100355] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 199 [ 3.100363] dwmac-sun8i 1c30000.ethernet: Normal descriptors 200 [ 3.100371] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 201 [ 3.205277] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 202 [ 3.205312] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 203 [ 3.205324] usb 2-1.1: SerialNumber: AA5FCF90 204 [ 3.313433] usb 2-1.2: new full-speed USB device number 4 using ehci-platform 205 [ 3.456351] usb 2-1.2: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 206 [ 3.456368] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 207 [ 3.456379] usb 2-1.2: Product: FT232R USB UART 208 [ 3.456388] usb 2-1.2: Manufacturer: FTDI 209 [ 3.456397] usb 2-1.2: SerialNumber: AR0K4JEL 210 [ 3.558452] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 211 [ 3.559075] sd 0:0:0:0: Attached scsi generic sg0 type 0 212 [ 3.560300] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 213 [ 3.561562] sd 0:0:0:0: [sda] Write Protect is off 214 [ 3.561591] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 215 [ 3.562830] sd 0:0:0:0: [sda] No Caching mode page found 216 [ 3.562870] sd 0:0:0:0: [sda] Assuming drive cache: write through 217 [ 3.568912] sda: sda1 218 [ 3.572400] sd 0:0:0:0: [sda] Attached SCSI disk 219 [ 3.938137] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 220 [ 4.530698] systemd[1]: systemd 249.11-0ubuntu3.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 221 [ 4.531436] systemd[1]: Detected architecture arm64. 222 [ 4.534489] systemd[1]: Hostname set to <pine64>. 223 [ 4.658087] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 224 [ 5.479982] systemd[1]: Queued start job for default target Graphical Interface. 225 [ 5.482130] random: systemd: uninitialized urandom read (16 bytes read) 226 [ 5.526010] systemd[1]: Created slice Slice /system/modprobe. 227 [ 5.526743] random: systemd: uninitialized urandom read (16 bytes read) 228 [ 5.529798] systemd[1]: Created slice Slice /system/serial-getty. 229 [ 5.530230] random: systemd: uninitialized urandom read (16 bytes read) 230 [ 5.532549] systemd[1]: Created slice User and Session Slice. 231 [ 5.533035] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 232 [ 5.533611] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 233 [ 5.535113] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 234 [ 5.535657] systemd[1]: Reached target Local Encrypted Volumes. 235 [ 5.536358] systemd[1]: Reached target Slice Units. 236 [ 5.536692] systemd[1]: Reached target Swaps. 237 [ 5.537002] systemd[1]: Reached target System Time Set. 238 [ 5.537587] systemd[1]: Reached target Local Verity Protected Volumes. 239 [ 5.559907] systemd[1]: Listening on RPCbind Server Activation Socket. 240 [ 5.561333] systemd[1]: Listening on Syslog Socket. 241 [ 5.562492] systemd[1]: Listening on fsck to fsckd communication Socket. 242 [ 5.563140] systemd[1]: Listening on initctl Compatibility Named Pipe. 243 [ 5.564650] systemd[1]: Listening on Journal Audit Socket. 244 [ 5.565663] systemd[1]: Listening on Journal Socket (/dev/log). 245 [ 5.566774] systemd[1]: Listening on Journal Socket. 246 [ 5.568082] systemd[1]: Listening on udev Control Socket. 247 [ 5.569057] systemd[1]: Listening on udev Kernel Socket. 248 [ 5.574683] systemd[1]: Mounting Huge Pages File System... 249 [ 5.581617] systemd[1]: Mounting POSIX Message Queue File System... 250 [ 5.587786] systemd[1]: Mounting NFSD configuration filesystem... 251 [ 5.594595] systemd[1]: Mounting Kernel Debug File System... 252 [ 5.595712] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 253 [ 5.596689] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 254 [ 5.605920] systemd[1]: Starting Restore / save the current clock... 255 [ 5.614353] systemd[1]: Starting Set the console keyboard layout... 256 [ 5.623063] systemd[1]: Starting Create List of Static Device Nodes... 257 [ 5.632107] systemd[1]: Starting Load Kernel Module chromeos_pstore... 258 [ 5.640267] systemd[1]: Starting Load Kernel Module configfs... 259 [ 5.648421] systemd[1]: Starting Load Kernel Module drm... 260 [ 5.656519] systemd[1]: Starting Load Kernel Module efi_pstore... 261 [ 5.667005] systemd[1]: Starting Load Kernel Module fuse... 262 [ 5.674704] systemd[1]: Starting Load Kernel Module mtdpstore... 263 [ 5.682795] systemd[1]: Starting Load Kernel Module pstore_blk... 264 [ 5.686006] RPC: Registered named UNIX socket transport module. 265 [ 5.686039] RPC: Registered udp transport module. 266 [ 5.686044] RPC: Registered tcp transport module. 267 [ 5.686049] RPC: Registered tcp NFSv4.1 backchannel transport module. 268 [ 5.691248] systemd[1]: Starting Load Kernel Module pstore_zone... 269 [ 5.699238] systemd[1]: Starting Load Kernel Module ramoops... 270 [ 5.710800] systemd[1]: Started Nameserver information manager. 271 [ 5.712507] systemd[1]: Reached target Preparation for Network. 272 [ 5.714142] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 273 [ 5.728169] fuse: init (API version 7.34) 274 [ 5.746976] systemd[1]: Starting Load Kernel Modules... 275 [ 5.755503] systemd[1]: Starting Remount Root and Kernel File Systems... 276 [ 5.766561] systemd[1]: Starting Coldplug All udev Devices... 277 [ 5.798255] systemd[1]: Mounted Huge Pages File System. 278 [ 5.799407] systemd[1]: Mounted POSIX Message Queue File System. 279 [ 5.800453] systemd[1]: Mounted Kernel Debug File System. 280 [ 5.802887] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). 281 [ 5.804360] systemd[1]: Finished Restore / save the current clock. 282 [ 5.809337] systemd[1]: Finished Create List of Static Device Nodes. 283 [ 5.812287] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 284 [ 5.819178] systemd[1]: Mounted NFSD configuration filesystem. 285 [ 5.821039] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 286 [ 5.822516] systemd[1]: Finished Load Kernel Module chromeos_pstore. 287 [ 5.824627] systemd[1]: modprobe@configfs.service: Deactivated successfully. 288 [ 5.846741] systemd[1]: Finished Load Kernel Module configfs. 289 [ 5.848800] systemd[1]: modprobe@drm.service: Deactivated successfully. 290 [ 5.850260] systemd[1]: Finished Load Kernel Module drm. 291 [ 5.852292] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 292 [ 5.854781] systemd[1]: Finished Load Kernel Module efi_pstore. 293 [ 5.856829] systemd[1]: modprobe@fuse.service: Deactivated successfully. 294 [ 5.858307] systemd[1]: Finished Load Kernel Module fuse. 295 [ 5.860388] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 296 [ 5.861980] systemd[1]: Finished Load Kernel Module mtdpstore. 297 [ 5.864011] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 298 [ 5.865608] systemd[1]: Finished Load Kernel Module pstore_blk. 299 [ 5.867642] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 300 [ 5.869070] systemd[1]: Finished Load Kernel Module pstore_zone. 301 [ 5.871303] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 302 [ 5.872731] systemd[1]: Finished Load Kernel Module ramoops. 303 [ 5.878987] systemd[1]: Finished Load Kernel Modules. 304 [ 5.882737] systemd[1]: Finished Remount Root and Kernel File Systems. 305 [ 5.910247] systemd[1]: Mounting FUSE Control File System... 306 [ 5.921067] systemd[1]: Mounting Kernel Configuration File System... 307 [ 5.921836] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 308 [ 5.928548] systemd[1]: Starting Load/Save Random Seed... 309 [ 5.935441] systemd[1]: Starting Apply Kernel Variables... 310 [ 5.946632] systemd[1]: Starting Create System Users... 311 [ 5.964986] systemd[1]: Mounted FUSE Control File System. 312 [ 5.966445] systemd[1]: Mounted Kernel Configuration File System. 313 [ 6.006390] systemd[1]: Finished Create System Users. 314 [ 6.078730] systemd[1]: Starting Create Static Device Nodes in /dev... 315 [ 6.082512] systemd[1]: Finished Set the console keyboard layout. 316 [ 6.085782] systemd[1]: Finished Apply Kernel Variables. 317 [ 6.134253] systemd[1]: Finished Create Static Device Nodes in /dev. 318 [ 6.135343] systemd[1]: Reached target Preparation for Local File Systems. 319 [ 6.166200] systemd[1]: Mounting /tmp... 320 [ 6.176511] systemd[1]: Starting Rule-based Manager for Device Events and Files... 321 [ 6.181692] systemd[1]: Mounted /tmp. 322 [ 6.183036] systemd[1]: Reached target Local File Systems. 323 [ 6.191937] systemd[1]: Starting Armbian leds state... 324 [ 6.206231] systemd[1]: Starting Armbian ZRAM config... 325 [ 6.214844] systemd[1]: Starting Set console font and keymap... 326 [ 6.215844] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 327 [ 6.216334] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 328 [ 6.221977] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 329 [ 6.248638] systemd[1]: Finished Set console font and keymap. 330 [ 6.298156] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 331 [ 6.299141] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 332 [ 6.300999] systemd[1]: Failed to start Armbian leds state. 333 [ 6.310527] systemd[1]: Finished Coldplug All udev Devices. 334 [ 6.322224] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 335 [ 6.441891] systemd[1]: Started Rule-based Manager for Device Events and Files. 336 [ 6.570005] zram: Added device: zram0 337 [ 6.570788] zram: Added device: zram1 338 [ 6.571532] zram: Added device: zram2 339 [ 6.659205] urandom_read_iter: 54 callbacks suppressed 340 [ 6.659234] random: systemd: uninitialized urandom read (16 bytes read) 341 [ 6.679091] zram0: detected capacity change from 0 to 2037280 342 [ 6.757626] random: systemd: uninitialized urandom read (16 bytes read) 343 [ 6.757774] random: systemd: uninitialized urandom read (16 bytes read) 344 [ 6.841466] random: crng init done 345 [ 6.841488] random: 6 urandom warning(s) missed due to ratelimiting 346 [ 6.851333] systemd[1]: Finished Load/Save Random Seed. 347 [ 6.852488] systemd[1]: Condition check resulted in First Boot Complete being skipped. 348 [ 6.852618] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 349 [ 6.852764] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 350 [ 6.961299] mc: Linux media interface: v0.10 351 [ 6.976285] Adding 1018636k swap on /dev/zram0. Priority:5 extents:1 across:1018636k SSFS 352 [ 7.036741] systemd[1]: Found device /dev/ttyS0. 353 [ 7.047314] videodev: Linux video capture interface: v2.00 354 [ 7.274657] zram1: detected capacity change from 0 to 102400 355 [ 7.290084] lima 1c40000.gpu: gp - mali400 version major 1 minor 1 356 [ 7.290221] lima 1c40000.gpu: pp0 - mali400 version major 1 minor 1 357 [ 7.290277] lima 1c40000.gpu: pp1 - mali400 version major 1 minor 1 358 [ 7.290336] lima 1c40000.gpu: l2 cache 64K, 4-way, 64byte cache line, 64bit external bus 359 [ 7.292006] lima 1c40000.gpu: bus rate = 200000000 360 [ 7.292092] lima 1c40000.gpu: mod rate = 432000000 361 [ 7.317277] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. 362 [ 7.344557] [drm] Initialized lima 1.2.0 20200215 for 1c40000.gpu on minor 1 363 [ 7.418277] cedrus 1c0e000.video-codec: Device registered as /dev/video0 364 [ 7.455716] systemd[1]: Finished Armbian ZRAM config. 365 [ 7.475341] axp20x-battery-power-supply axp20x-battery-power-supply: DMA mask not set 366 [ 7.480922] axp20x-ac-power-supply axp20x-ac-power-supply: DMA mask not set 367 [ 7.483821] Bluetooth: Core ver 2.22 368 [ 7.484187] NET: Registered PF_BLUETOOTH protocol family 369 [ 7.484205] Bluetooth: HCI device and connection manager initialized 370 [ 7.484264] Bluetooth: HCI socket layer initialized 371 [ 7.484282] Bluetooth: L2CAP socket layer initialized 372 [ 7.484327] Bluetooth: SCO socket layer initialized 373 [ 7.589325] systemd[1]: Starting Armbian memory supported logging... 374 [ 7.598740] axp20x-adc axp813-adc: DMA mask not set 375 [ 7.612201] usbcore: registered new interface driver usbserial_generic 376 [ 7.612315] usbserial: USB Serial support registered for generic 377 [ 7.622639] hwmon hwmon4: temp1_input not attached to any thermal zone 378 [ 7.657205] usbcore: registered new interface driver ftdi_sio 379 [ 7.657375] usbserial: USB Serial support registered for FTDI USB Serial Device 380 [ 7.676661] usb 2-1.1: Found UVC 1.00 device <unnamed> (046d:081b) 381 [ 7.678801] ftdi_sio 2-1.2:1.0: FTDI USB Serial Device converter detected 382 [ 7.684383] usb 2-1.2: Detected FT232RL 383 [ 7.703921] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 384 [ 7.738461] input: UVC Camera (046d:081b) as /devices/platform/soc/1c1b000.usb/usb2/2-1/2-1.1/2-1.1:1.0/input/input1 385 [ 7.752488] usb 2-1.2: FTDI USB Serial Device converter now attached to ttyUSB0 386 [ 7.782744] Bluetooth: HCI UART driver ver 2.3 387 [ 7.782841] Bluetooth: HCI UART protocol H4 registered 388 [ 7.782850] Bluetooth: HCI UART protocol BCSP registered 389 [ 7.786686] systemd[1]: Started ifup for eth0. 390 [ 7.792020] usbcore: registered new interface driver uvcvideo 391 [ 7.809997] Bluetooth: HCI UART protocol LL registered 392 [ 7.810071] Bluetooth: HCI UART protocol ATH3K registered 393 [ 7.810347] Bluetooth: HCI UART protocol Three-wire (H5) registered 394 [ 7.810958] Bluetooth: HCI UART protocol Intel registered 395 [ 7.811175] dw-apb-uart 1c28400.serial: failed to request DMA 396 [ 7.811268] Bluetooth: HCI UART protocol Broadcom registered 397 [ 7.811332] Bluetooth: HCI UART protocol QCA registered 398 [ 7.811340] Bluetooth: HCI UART protocol AG6XX registered 399 [ 7.811389] Bluetooth: HCI UART protocol Marvell registered 400 [ 7.846757] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. 401 [ 7.917124] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 402 [ 7.918479] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 403 [ 8.319754] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. 404 [ 8.478418] jack: irq plug-in 405 [ 8.482104] input: sun50i-a64-audio Headset Jack as /devices/platform/sound/sound/card2/input2 406 [ 8.689482] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 407 [ 8.690039] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 408 [ 8.714465] systemd[1]: Starting Load Kernel Module chromeos_pstore... 409 [ 8.721368] systemd[1]: Starting Load Kernel Module efi_pstore... 410 [ 8.732748] systemd[1]: Starting Load Kernel Module mtdpstore... 411 [ 8.739423] systemd[1]: Starting Load Kernel Module pstore_blk... 412 [ 8.747849] systemd[1]: Starting Load Kernel Module pstore_zone... 413 [ 8.755291] systemd[1]: Starting Load Kernel Module ramoops... 414 [ 8.756221] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 415 [ 8.756466] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 416 [ 8.756695] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 417 [ 8.759961] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 418 [ 8.761898] systemd[1]: Finished Load Kernel Module chromeos_pstore. 419 [ 8.764356] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 420 [ 8.765893] systemd[1]: Finished Load Kernel Module efi_pstore. 421 [ 8.768350] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 422 [ 8.769339] systemd[1]: Finished Load Kernel Module mtdpstore. 423 [ 8.771060] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 424 [ 8.772028] systemd[1]: Finished Load Kernel Module pstore_blk. 425 [ 8.774069] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 426 [ 8.775053] systemd[1]: Finished Load Kernel Module pstore_zone. 427 [ 8.781672] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 428 [ 8.782910] systemd[1]: Finished Load Kernel Module ramoops. 429 [ 8.784391] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 430 [ 9.163505] usb 2-1.1: set resolution quirk: cval->res = 384 431 [ 9.164160] usbcore: registered new interface driver snd-usb-audio 432 [ 9.229632] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 433 [ 9.230142] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 434 [ 9.266220] systemd[1]: Starting Load Kernel Module chromeos_pstore... 435 [ 9.273877] systemd[1]: Starting Load Kernel Module efi_pstore... 436 [ 9.279738] systemd[1]: Starting Load Kernel Module mtdpstore... 437 [ 9.285950] systemd[1]: Starting Load Kernel Module pstore_blk... 438 [ 9.292133] systemd[1]: Starting Load Kernel Module pstore_zone... 439 [ 9.298483] systemd[1]: Starting Load Kernel Module ramoops... 440 [ 9.299431] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 441 [ 9.299693] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 442 [ 9.299879] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 443 [ 9.302560] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 444 [ 9.304024] systemd[1]: Finished Load Kernel Module chromeos_pstore. 445 [ 9.306167] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 446 [ 9.307249] systemd[1]: Finished Load Kernel Module efi_pstore. 447 [ 9.309320] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 448 [ 9.310390] systemd[1]: Finished Load Kernel Module mtdpstore. 449 [ 9.312050] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 450 [ 9.312975] systemd[1]: Finished Load Kernel Module pstore_blk. 451 [ 9.314656] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 452 [ 9.315585] systemd[1]: Finished Load Kernel Module pstore_zone. 453 [ 9.317200] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 454 [ 9.318222] systemd[1]: Finished Load Kernel Module ramoops. 455 [ 9.319228] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 456 [ 9.599031] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 457 [ 9.599538] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 458 [ 9.630260] systemd[1]: Starting Load Kernel Module chromeos_pstore... 459 [ 9.636198] systemd[1]: Starting Load Kernel Module efi_pstore... 460 [ 9.642285] systemd[1]: Starting Load Kernel Module mtdpstore... 461 [ 9.648507] systemd[1]: Starting Load Kernel Module pstore_blk... 462 [ 9.654783] systemd[1]: Starting Load Kernel Module pstore_zone... 463 [ 9.661018] systemd[1]: Starting Load Kernel Module ramoops... 464 [ 9.661938] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 465 [ 9.662180] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 466 [ 9.662379] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 467 [ 9.666196] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 468 [ 9.668105] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 469 [ 9.669272] systemd[1]: Finished Load Kernel Module chromeos_pstore. 470 [ 9.671364] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 471 [ 9.672277] systemd[1]: Finished Load Kernel Module efi_pstore. 472 [ 9.674113] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully. 473 [ 9.675048] systemd[1]: Finished Load Kernel Module mtdpstore. 474 [ 9.676820] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 475 [ 9.677871] systemd[1]: Finished Load Kernel Module pstore_blk. 476 [ 9.679532] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 477 [ 9.680430] systemd[1]: Finished Load Kernel Module pstore_zone. 478 [ 9.682259] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 479 [ 9.683210] systemd[1]: Finished Load Kernel Module ramoops. 480 [ 9.689068] systemd[1]: Starting Raise network interfaces... 481 [ 9.689706] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 482 [ 10.079326] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 483 [ 10.079976] systemd[1]: networking.service: Failed with result 'exit-code'. 484 [ 10.081243] systemd[1]: Failed to start Raise network interfaces. 485 [ 11.214316] systemd[1]: Finished Armbian memory supported logging. 486 [ 11.261900] systemd[1]: Starting Journal Service... 487 [ 11.475047] systemd[1]: Started Journal Service. 488 [ 11.544421] systemd-journald[658]: Received client request to flush runtime journal. 489 490 ### armbian-release: 491 492 # PLEASE DO NOT EDIT THIS FILE 493 BOARD=pine64 494 BOARD_NAME="Pine64" 495 BOARDFAMILY=sun50iw1 496 BUILD_REPOSITORY_URL=https://github.com/armbian/build 497 BUILD_REPOSITORY_COMMIT=13f5fba13c1 498 VERSION=22.05.3 499 LINUXFAMILY=sunxi64 500 ARCH=arm64 501 IMAGE_TYPE=stable 502 BOARD_TYPE=conf 503 INITRD_ARCH=arm64 504 KERNEL_IMAGE_TYPE=stable 505 BRANCH=current 506 507 ### boot environment: 508 509 verbosity=1 510 bootlogo=false 511 console=both 512 disp_mode=1920x1080p60 513 overlay_prefix=sun50i-a64 514 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 515 rootfstype=ext4 516 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 517 518 ### lsusb: 519 520 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 521 Bus 002 Device 004: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC 522 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 523 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 524 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 525 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 526 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 527 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 528 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 529 530 ### lscpu: 531 532 Architecture: aarch64 533 CPU op-mode(s): 32-bit, 64-bit 534 Byte Order: Little Endian 535 CPU(s): 4 536 On-line CPU(s) list: 0-3 537 Vendor ID: ARM 538 Model name: Cortex-A53 539 Model: 4 540 Thread(s) per core: 1 541 Core(s) per cluster: 4 542 Socket(s): - 543 Cluster(s): 1 544 Stepping: r0p4 545 CPU max MHz: 1152.0000 546 CPU min MHz: 648.0000 547 BogoMIPS: 48.00 548 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 549 NUMA node(s): 1 550 NUMA node0 CPU(s): 0-3 551 Vulnerability Itlb multihit: Not affected 552 Vulnerability L1tf: Not affected 553 Vulnerability Mds: Not affected 554 Vulnerability Meltdown: Not affected 555 Vulnerability Mmio stale data: Not affected 556 Vulnerability Spec store bypass: Not affected 557 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 558 Vulnerability Spectre v2: Not affected 559 Vulnerability Srbds: Not affected 560 Vulnerability Tsx async abort: Not affected 561 562 ### cpuinfo: 563 564 processor : 0 565 BogoMIPS : 48.00 566 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 567 CPU implementer : 0x41 568 CPU architecture: 8 569 CPU variant : 0x0 570 CPU part : 0xd03 571 CPU revision : 4 572 573 processor : 1 574 BogoMIPS : 48.00 575 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 576 CPU implementer : 0x41 577 CPU architecture: 8 578 CPU variant : 0x0 579 CPU part : 0xd03 580 CPU revision : 4 581 582 processor : 2 583 BogoMIPS : 48.00 584 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 585 CPU implementer : 0x41 586 CPU architecture: 8 587 CPU variant : 0x0 588 CPU part : 0xd03 589 CPU revision : 4 590 591 processor : 3 592 BogoMIPS : 48.00 593 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 594 CPU implementer : 0x41 595 CPU architecture: 8 596 CPU variant : 0x0 597 CPU part : 0xd03 598 CPU revision : 4 599 600 601 ### meminfo: 602 603 MemTotal: 2037276 kB 604 MemFree: 1863420 kB 605 MemAvailable: 1876548 kB 606 Buffers: 11652 kB 607 Cached: 61360 kB 608 SwapCached: 0 kB 609 Active: 27756 kB 610 Inactive: 63724 kB 611 Active(anon): 348 kB 612 Inactive(anon): 21196 kB 613 Active(file): 27408 kB 614 Inactive(file): 42528 kB 615 Unevictable: 0 kB 616 Mlocked: 0 kB 617 SwapTotal: 1018636 kB 618 SwapFree: 1018636 kB 619 Dirty: 12512 kB 620 Writeback: 0 kB 621 AnonPages: 18340 kB 622 Mapped: 16968 kB 623 Shmem: 3252 kB 624 KReclaimable: 10284 kB 625 Slab: 34276 kB 626 SReclaimable: 10284 kB 627 SUnreclaim: 23992 kB 628 KernelStack: 2272 kB 629 PageTables: 1452 kB 630 NFS_Unstable: 0 kB 631 Bounce: 0 kB 632 WritebackTmp: 0 kB 633 CommitLimit: 2037272 kB 634 Committed_AS: 40296 kB 635 VmallocTotal: 133143592960 kB 636 VmallocUsed: 24140 kB 637 VmallocChunk: 0 kB 638 Percpu: 1264 kB 639 AnonHugePages: 0 kB 640 ShmemHugePages: 0 kB 641 ShmemPmdMapped: 0 kB 642 FileHugePages: 0 kB 643 FilePmdMapped: 0 kB 644 CmaTotal: 131072 kB 645 CmaFree: 128768 kB 646 HugePages_Total: 0 647 HugePages_Free: 0 648 HugePages_Rsvd: 0 649 HugePages_Surp: 0 650 Hugepagesize: 2048 kB 651 Hugetlb: 0 kB 652 653 ### virtual memory: 654 655 vm.admin_reserve_kbytes = 8192 656 vm.compaction_proactiveness = 20 657 vm.compact_unevictable_allowed = 1 658 vm.dirty_background_bytes = 0 659 vm.dirty_background_ratio = 10 660 vm.dirty_bytes = 0 661 vm.dirty_expire_centisecs = 3000 662 vm.dirty_ratio = 20 663 vm.dirtytime_expire_seconds = 43200 664 vm.dirty_writeback_centisecs = 500 665 vm.extfrag_threshold = 500 666 vm.hugetlb_shm_group = 0 667 vm.laptop_mode = 0 668 vm.legacy_va_layout = 0 669 vm.lowmem_reserve_ratio = 256 256 32 0 670 vm.max_map_count = 65530 671 vm.min_free_kbytes = 22528 672 vm.min_slab_ratio = 5 673 vm.min_unmapped_ratio = 1 674 vm.mmap_min_addr = 32768 675 vm.mmap_rnd_bits = 18 676 vm.mmap_rnd_compat_bits = 11 677 vm.nr_hugepages = 0 678 vm.nr_hugepages_mempolicy = 0 679 vm.nr_overcommit_hugepages = 0 680 vm.numa_stat = 1 681 vm.numa_zonelist_order = Node 682 vm.oom_dump_tasks = 1 683 vm.oom_kill_allocating_task = 0 684 vm.overcommit_kbytes = 0 685 vm.overcommit_memory = 0 686 vm.overcommit_ratio = 50 687 vm.page-cluster = 0 688 vm.page_lock_unfairness = 5 689 vm.panic_on_oom = 0 690 vm.percpu_pagelist_high_fraction = 0 691 vm.stat_interval = 1 692 vm.swappiness = 100 693 vm.user_reserve_kbytes = 63007 694 vm.vfs_cache_pressure = 100 695 vm.watermark_boost_factor = 15000 696 vm.watermark_scale_factor = 10 697 vm.zone_reclaim_mode = 0 698 699 ### ip addr: 700 701 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 702 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 703 inet XXX.XXX.0.1/8 scope host lo 704 valid_lft forever preferred_lft forever 705 inet6 ::1/128 scope host 706 valid_lft forever preferred_lft forever 707 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 708 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 709 710 ### partitions: 711 712 major minor #blocks name 713 714 179 0 31260672 mmcblk0 715 179 1 30928896 mmcblk0p1 716 8 0 117220824 sda 717 8 1 117218304 sda1 718 252 0 1018640 zram0 719 252 1 51200 zram1 720 721 ### df: 722 723 tmpfs 199M 3.2M 196M 2% /run 724 /dev/sda1 110G 19G 86G 19% / 725 tmpfs 995M 0 995M 0% /dev/shm 726 tmpfs 5.0M 4.0K 5.0M 1% /run/lock 727 tmpfs 995M 0 995M 0% /tmp 728 /dev/zram1 47M 13M 32M 29% /var/log 729 730 ### lsblk: 731 732 NAME FSTYPE SIZE MOUNTPOINT UUID 733 sda 111.8G 734 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 735 mmcblk0 29.8G 736 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 737 zram1 50M /var/log 738 zram2 0B 739 740 ### zramctl: 741 742 NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT 743 /dev/zram1 zstd 50M 68K 732B 44K 4 /var/log 744 /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] 745 746 ### mtab: 747 748 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 749 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 750 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 751 752 ### mmc0:0001 info: 753 754 fwrev: 0x0 755 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 756 cid: 1b534d454231515430bc836120012941 757 rca: 0x0001 758 csd: 400e00325b590000ee7f7f800a404055 759 manfid: 0x00001b 760 ocr: 0x00200000 761 preferred_erase_size: 4194304 762 type: SD 763 hwrev: 0x3 764 date: 09/2018 765 dsr: 0x404 766 erase_size: 512 767 oemid: 0x534d 768 serial: 0xbc836120 769 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 770 scr: 02b5800200000000 771 name: EB1QT 772 773 ### Boot system health: 774 775 Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 776 18:53:54: 1152MHz 0.23 52% 30% 17% 0% 3% 0% 40.7°C 0/7 777 18:53:55: 1056MHz 0.23 54% 24% 28% 0% 0% 0% 41.2°C 0/7 778 18:53:55: 1152MHz 0.23 35% 19% 14% 0% 0% 1% 41.2°C 0/7 779 18:53:55: 1056MHz 0.23 36% 18% 15% 1% 0% 1% 36.1°C 0/7 780 18:53:56: 1008MHz 0.23 35% 17% 15% 1% 0% 0% 36.1°C 0/7 781 782 ### No more available zram devices () 783 784 Fri Dec 9 09:02:35 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 785 786 ### dmesg: 787 788 [ 0.003390] rcu: Hierarchical SRCU implementation. 789 [ 0.004905] smp: Bringing up secondary CPUs ... 790 [ 0.006156] Detected VIPT I-cache on CPU1 791 [ 0.006225] arch_timer: CPU1: Trapping CNTVCT access 792 [ 0.006242] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 793 [ 0.007054] Detected VIPT I-cache on CPU2 794 [ 0.007090] arch_timer: CPU2: Trapping CNTVCT access 795 [ 0.007101] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 796 [ 0.007832] Detected VIPT I-cache on CPU3 797 [ 0.007866] arch_timer: CPU3: Trapping CNTVCT access 798 [ 0.007876] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 799 [ 0.008000] smp: Brought up 1 node, 4 CPUs 800 [ 0.008017] SMP: Total of 4 processors activated. 801 [ 0.008024] CPU features: detected: 32-bit EL0 Support 802 [ 0.008030] CPU features: detected: CRC32 instructions 803 [ 0.022878] CPU: All CPU(s) started at EL2 804 [ 0.022912] alternatives: patching kernel code 805 [ 0.024731] devtmpfs: initialized 806 [ 0.032773] Registered cp15_barrier emulation handler 807 [ 0.032807] Registered setend emulation handler 808 [ 0.032990] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 809 [ 0.033014] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 810 [ 0.038461] pinctrl core: initialized pinctrl subsystem 811 [ 0.040135] NET: Registered PF_NETLINK/PF_ROUTE protocol family 812 [ 0.041986] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 813 [ 0.042165] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 814 [ 0.042365] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 815 [ 0.042476] audit: initializing netlink subsys (disabled) 816 [ 0.042691] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 817 [ 0.043293] thermal_sys: Registered thermal governor 'fair_share' 818 [ 0.043301] thermal_sys: Registered thermal governor 'bang_bang' 819 [ 0.043307] thermal_sys: Registered thermal governor 'step_wise' 820 [ 0.043312] thermal_sys: Registered thermal governor 'user_space' 821 [ 0.043749] cpuidle: using governor menu 822 [ 0.044007] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 823 [ 0.044119] ASID allocator initialised with 65536 entries 824 [ 0.044315] Serial: AMBA PL011 UART driver 825 [ 0.060307] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 826 [ 0.061835] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 827 [ 0.069915] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 828 [ 0.069939] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 829 [ 0.069948] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 830 [ 0.069956] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 831 [ 0.072137] cryptd: max_cpu_qlen set to 1000 832 [ 0.140260] raid6: neonx8 gen() 1456 MB/s 833 [ 0.208333] raid6: neonx8 xor() 1091 MB/s 834 [ 0.276415] raid6: neonx4 gen() 1495 MB/s 835 [ 0.344481] raid6: neonx4 xor() 1081 MB/s 836 [ 0.412575] raid6: neonx2 gen() 1411 MB/s 837 [ 0.480651] raid6: neonx2 xor() 991 MB/s 838 [ 0.548725] raid6: neonx1 gen() 1229 MB/s 839 [ 0.616797] raid6: neonx1 xor() 848 MB/s 840 [ 0.684870] raid6: int64x8 gen() 1019 MB/s 841 [ 0.752945] raid6: int64x8 xor() 533 MB/s 842 [ 0.821018] raid6: int64x4 gen() 1126 MB/s 843 [ 0.889081] raid6: int64x4 xor() 573 MB/s 844 [ 0.957167] raid6: int64x2 gen() 962 MB/s 845 [ 1.025230] raid6: int64x2 xor() 509 MB/s 846 [ 1.093311] raid6: int64x1 gen() 716 MB/s 847 [ 1.161376] raid6: int64x1 xor() 372 MB/s 848 [ 1.161383] raid6: using algorithm neonx4 gen() 1495 MB/s 849 [ 1.161389] raid6: .... xor() 1081 MB/s, rmw enabled 850 [ 1.161395] raid6: using neon recovery algorithm 851 [ 1.162072] iommu: Default domain type: Translated 852 [ 1.162081] iommu: DMA domain TLB invalidation policy: strict mode 853 [ 1.162408] SCSI subsystem initialized 854 [ 1.162634] usbcore: registered new interface driver usbfs 855 [ 1.162684] usbcore: registered new interface driver hub 856 [ 1.162720] usbcore: registered new device driver usb 857 [ 1.163047] pps_core: LinuxPPS API ver. 1 registered 858 [ 1.163054] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 859 [ 1.163073] PTP clock support registered 860 [ 1.163583] ARM FF-A: FFA_VERSION returned not supported 861 [ 1.163979] Advanced Linux Sound Architecture Driver Initialized. 862 [ 1.164722] NetLabel: Initializing 863 [ 1.164728] NetLabel: domain hash size = 128 864 [ 1.164734] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 865 [ 1.164818] NetLabel: unlabeled traffic allowed by default 866 [ 1.165322] clocksource: Switched to clocksource arch_sys_counter 867 [ 1.165555] VFS: Disk quotas dquot_6.6.0 868 [ 1.165617] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 869 [ 1.166276] AppArmor: AppArmor Filesystem Enabled 870 [ 1.173500] NET: Registered PF_INET protocol family 871 [ 1.173779] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 872 [ 1.175152] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 873 [ 1.175196] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 874 [ 1.175214] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 875 [ 1.175374] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 876 [ 1.175700] TCP: Hash tables configured (established 16384 bind 16384) 877 [ 1.175864] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 878 [ 1.175932] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 879 [ 1.176154] NET: Registered PF_UNIX/PF_LOCAL protocol family 880 [ 1.176746] Trying to unpack rootfs image as initramfs... 881 [ 1.186754] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 882 [ 1.193921] Initialise system trusted keyrings 883 [ 1.194017] Key type blacklist registered 884 [ 1.194270] workingset: timestamp_bits=44 max_order=19 bucket_order=0 885 [ 1.200671] zbud: loaded 886 [ 1.202448] squashfs: version 4.0 (2009/01/31) Phillip Lougher 887 [ 1.205034] integrity: Platform Keyring initialized 888 [ 1.258464] xor: automatically using best checksumming function 32regs 889 [ 1.258493] async_tx: api initialized (async) 890 [ 1.258505] Key type asymmetric registered 891 [ 1.258512] Asymmetric key parser 'x509' registered 892 [ 1.258656] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 893 [ 1.258833] io scheduler mq-deadline registered 894 [ 1.258842] io scheduler kyber registered 895 [ 1.259058] io scheduler bfq registered 896 [ 1.263135] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 897 [ 1.273197] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 898 [ 1.285222] loop: module loaded 899 [ 1.287819] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 900 [ 1.287855] ehci-platform: EHCI generic platform driver 901 [ 1.288013] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 902 [ 1.288028] ohci-platform: OHCI generic platform driver 903 [ 1.288523] usbcore: registered new interface driver usb-storage 904 [ 1.289104] mousedev: PS/2 mouse device common for all mice 905 [ 1.290282] sun6i-rtc 1f00000.rtc: registered as rtc0 906 [ 1.290323] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T20:02:25 UTC (1670616145) 907 [ 1.290445] sun6i-rtc 1f00000.rtc: RTC enabled 908 [ 1.290557] i2c_dev: i2c /dev entries driver 909 [ 1.291379] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 910 [ 1.293519] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 911 [ 1.294045] sdhci: Secure Digital Host Controller Interface driver 912 [ 1.294054] sdhci: Copyright(c) Pierre Ossman 913 [ 1.294083] Synopsys Designware Multimedia Card Interface Driver 914 [ 1.294845] sdhci-pltfm: SDHCI platform and OF driver helper 915 [ 1.295969] ledtrig-cpu: registered to indicate activity on CPUs 916 [ 1.296474] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 917 [ 1.296794] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 918 [ 1.297091] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 919 [ 1.297277] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 920 [ 1.297523] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 921 [ 1.297645] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 922 [ 1.297746] sun8i-ce 1c15000.crypto: Register cbc(aes) 923 [ 1.297935] sun8i-ce 1c15000.crypto: Register ecb(aes) 924 [ 1.298075] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 925 [ 1.298216] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 926 [ 1.298350] sun8i-ce 1c15000.crypto: Register md5 927 [ 1.298490] sun8i-ce 1c15000.crypto: Register sha1 928 [ 1.298623] sun8i-ce 1c15000.crypto: Register sha224 929 [ 1.298763] sun8i-ce 1c15000.crypto: Register sha256 930 [ 1.298897] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 931 [ 1.298908] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 932 [ 1.298916] sun8i-ce 1c15000.crypto: Register stdrng 933 [ 1.299072] sun8i-ce 1c15000.crypto: TRNG not supported 934 [ 1.299083] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 935 [ 1.299677] hid: raw HID events driver (C) Jiri Kosina 936 [ 1.299825] usbcore: registered new interface driver usbhid 937 [ 1.299833] usbhid: USB HID core driver 938 [ 1.305971] NET: Registered PF_INET6 protocol family 939 [ 1.956399] Freeing initrd memory: 12684K 940 [ 1.989933] Segment Routing with IPv6 941 [ 1.990034] In-situ OAM (IOAM) with IPv6 942 [ 1.990136] NET: Registered PF_PACKET protocol family 943 [ 1.990283] 8021q: 802.1Q VLAN Support v1.8 944 [ 1.990452] 9pnet: Installing 9P2000 support 945 [ 1.990566] Key type dns_resolver registered 946 [ 1.991114] registered taskstats version 1 947 [ 1.991132] Loading compiled-in X.509 certificates 948 [ 1.995427] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 949 [ 1.999778] zswap: loaded using pool zstd/z3fold 950 [ 2.000511] Key type ._fscrypt registered 951 [ 2.000519] Key type .fscrypt registered 952 [ 2.000525] Key type fscrypt-provisioning registered 953 [ 2.001703] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 954 [ 2.017536] Key type encrypted registered 955 [ 2.017572] AppArmor: AppArmor sha1 policy hashing enabled 956 [ 2.017617] ima: No TPM chip found, activating TPM-bypass! 957 [ 2.017661] ima: Allocated hash algorithm: sha1 958 [ 2.017704] ima: No architecture policies found 959 [ 2.017759] evm: Initialising EVM extended attributes: 960 [ 2.017764] evm: security.selinux 961 [ 2.017770] evm: security.SMACK64 962 [ 2.017774] evm: security.SMACK64EXEC 963 [ 2.017779] evm: security.SMACK64TRANSMUTE 964 [ 2.017783] evm: security.SMACK64MMAP 965 [ 2.017788] evm: security.apparmor 966 [ 2.017793] evm: security.ima 967 [ 2.017797] evm: security.capability 968 [ 2.017802] evm: HMAC attrs: 0x1 969 [ 2.030714] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 970 [ 2.030811] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 971 [ 2.031564] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 972 [ 2.031633] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 973 [ 2.032492] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 974 [ 2.032926] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 975 [ 2.035103] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 976 [ 2.038141] vcc-3v3: supplied by regulator-dummy 977 [ 2.038637] vdd-cpux: supplied by regulator-dummy 978 [ 2.039288] dcdc4: supplied by regulator-dummy 979 [ 2.039504] vcc-dram: supplied by regulator-dummy 980 [ 2.039949] vdd-sys: supplied by regulator-dummy 981 [ 2.040463] vcc-phy: supplied by regulator-dummy 982 [ 2.040836] aldo1: supplied by regulator-dummy 983 [ 2.041013] vcc-pl: supplied by regulator-dummy 984 [ 2.041491] vcc-pll-avcc: supplied by regulator-dummy 985 [ 2.042113] vcc-hdmi: supplied by regulator-dummy 986 [ 2.042474] vcc-mipi: supplied by regulator-dummy 987 [ 2.042859] dldo3: supplied by regulator-dummy 988 [ 2.043225] vcc-wifi: supplied by regulator-dummy 989 [ 2.043589] cpvdd: supplied by regulator-dummy 990 [ 2.043978] eldo2: supplied by regulator-dummy 991 [ 2.044351] eldo3: supplied by regulator-dummy 992 [ 2.044717] vcc-1v2-hsic: supplied by regulator-dummy 993 [ 2.044938] vdd-cpus: supplied by regulator-dummy 994 [ 2.045386] vcc-rtc: supplied by regulator-dummy 995 [ 2.045840] ldo-io0: supplied by regulator-dummy 996 [ 2.046176] ldo-io1: supplied by regulator-dummy 997 [ 2.046296] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 998 [ 2.051157] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 999 [ 2.051588] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 1000 [ 2.052176] printk: console [ttyS0] disabled 1001 [ 2.052263] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 1002 [ 2.052473] printk: console [ttyS0] enabled 1003 [ 2.053167] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 1004 [ 2.053687] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 1005 [ 2.053845] serial serial0: tty port ttyS1 registered 1006 [ 2.084440] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 1007 [ 2.086282] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 1008 [ 2.086798] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 1009 [ 2.086818] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 1010 [ 2.087052] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 1011 [ 2.088217] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 1012 [ 2.088848] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 1013 [ 2.089229] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 1014 [ 2.089992] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 1015 [ 2.090079] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1016 [ 2.090792] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 1017 [ 2.091360] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1018 [ 2.092081] ehci-platform 1c1a000.usb: EHCI Host Controller 1019 [ 2.092115] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 1020 [ 2.092247] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 1021 [ 2.105340] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 1022 [ 2.105712] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1023 [ 2.105728] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1024 [ 2.105740] usb usb1: Product: EHCI Host Controller 1025 [ 2.105749] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1026 [ 2.105759] usb usb1: SerialNumber: 1c1a000.usb 1027 [ 2.106319] hub 1-0:1.0: USB hub found 1028 [ 2.106378] hub 1-0:1.0: 1 port detected 1029 [ 2.107445] ehci-platform 1c1b000.usb: EHCI Host Controller 1030 [ 2.107471] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 1031 [ 2.107612] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 1032 [ 2.121326] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 1033 [ 2.121651] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1034 [ 2.121667] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1035 [ 2.121678] usb usb2: Product: EHCI Host Controller 1036 [ 2.121687] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1037 [ 2.121697] usb usb2: SerialNumber: 1c1b000.usb 1038 [ 2.122190] hub 2-0:1.0: USB hub found 1039 [ 2.122240] hub 2-0:1.0: 1 port detected 1040 [ 2.297431] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 1041 [ 2.297470] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 1042 [ 2.297607] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 1043 [ 2.361386] usb 1-1: new high-speed USB device number 2 using ehci-platform 1044 [ 2.361675] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1045 [ 2.361690] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1046 [ 2.361702] usb usb3: Product: Generic Platform OHCI controller 1047 [ 2.361712] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1048 [ 2.361721] usb usb3: SerialNumber: 1c1a400.usb 1049 [ 2.362233] hub 3-0:1.0: USB hub found 1050 [ 2.362281] hub 3-0:1.0: 1 port detected 1051 [ 2.363296] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 1052 [ 2.363323] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 1053 [ 2.363492] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 1054 [ 2.377341] usb 2-1: new high-speed USB device number 2 using ehci-platform 1055 [ 2.425592] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1056 [ 2.425607] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1057 [ 2.425619] usb usb4: Product: Generic Platform OHCI controller 1058 [ 2.425629] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1059 [ 2.425638] usb usb4: SerialNumber: 1c1b400.usb 1060 [ 2.426151] hub 4-0:1.0: USB hub found 1061 [ 2.426205] hub 4-0:1.0: 1 port detected 1062 [ 2.427269] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 1063 [ 2.427419] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 1064 [ 2.505603] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 1065 [ 2.505635] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 1066 [ 2.505915] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1067 [ 2.505931] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1068 [ 2.505943] usb usb5: Product: MUSB HDRC host driver 1069 [ 2.505952] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 1070 [ 2.505962] usb usb5: SerialNumber: musb-hdrc.4.auto 1071 [ 2.506486] hub 5-0:1.0: USB hub found 1072 [ 2.506535] hub 5-0:1.0: 1 port detected 1073 [ 2.509992] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 1074 [ 2.510054] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 1075 [ 2.511089] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 1076 [ 2.511096] sunxi-mmc 1c0f000.mmc: Got CD GPIO 1077 [ 2.511224] of_cfs_init 1078 [ 2.511388] of_cfs_init: OK 1079 [ 2.511811] ALSA device list: 1080 [ 2.511819] No soundcards found. 1081 [ 2.519310] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 1082 [ 2.519327] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 1083 [ 2.519338] usb 1-1: SerialNumber: 20181120 1084 [ 2.520305] usb-storage 1-1:1.0: USB Mass Storage device detected 1085 [ 2.520835] scsi host0: usb-storage 1-1:1.0 1086 [ 2.536408] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 1087 [ 2.536425] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1088 [ 2.536437] usb 2-1: Product: USB2.1 Hub 1089 [ 2.536446] usb 2-1: Manufacturer: GenesysLogic 1090 [ 2.536559] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1091 [ 2.536788] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1092 [ 2.538570] Freeing unused kernel memory: 2496K 1093 [ 2.538798] hub 2-1:1.0: USB hub found 1094 [ 2.538952] Run /init as init process 1095 [ 2.538960] with arguments: 1096 [ 2.538966] /init 1097 [ 2.538973] with environment: 1098 [ 2.538978] HOME=/ 1099 [ 2.538983] TERM=linux 1100 [ 2.538988] ubootpart=ea5e158f-01 1101 [ 2.538994] cgroup_enable=memory 1102 [ 2.539224] hub 2-1:1.0: 4 ports detected 1103 [ 2.573398] mmc0: new high speed SDHC card at address 0001 1104 [ 2.574518] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 1105 [ 2.576949] mmcblk0: p1 1106 [ 2.853398] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 1107 [ 3.043430] usbcore: registered new interface driver uas 1108 [ 3.058898] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 1109 [ 3.067368] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 1110 [ 3.067643] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 1111 [ 3.067658] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 1112 [ 3.067986] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 1113 [ 3.069558] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 1114 [ 3.069621] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 1115 [ 3.071253] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 1116 [ 3.071280] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 1117 [ 3.071288] dwmac-sun8i 1c30000.ethernet: COE Type 2 1118 [ 3.071298] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 1119 [ 3.071307] dwmac-sun8i 1c30000.ethernet: Normal descriptors 1120 [ 3.071315] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 1121 [ 3.093587] axp20x-gpio axp20x-gpio: DMA mask not set 1122 [ 3.094580] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 1123 [ 3.206728] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 1124 [ 3.206766] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 1125 [ 3.206779] usb 2-1.1: SerialNumber: AA5FCF90 1126 [ 3.313376] usb 2-1.2: new full-speed USB device number 4 using ehci-platform 1127 [ 3.452285] usb 2-1.2: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 1128 [ 3.452301] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 1129 [ 3.452313] usb 2-1.2: Product: FT232R USB UART 1130 [ 3.452323] usb 2-1.2: Manufacturer: FTDI 1131 [ 3.452332] usb 2-1.2: SerialNumber: AR0K4JEL 1132 [ 3.526365] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 1133 [ 3.527753] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 1134 [ 3.528870] sd 0:0:0:0: [sda] Write Protect is off 1135 [ 3.528902] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 1136 [ 3.529262] sd 0:0:0:0: Attached scsi generic sg0 type 0 1137 [ 3.530692] sd 0:0:0:0: [sda] No Caching mode page found 1138 [ 3.530722] sd 0:0:0:0: [sda] Assuming drive cache: write through 1139 [ 3.536985] sda: sda1 1140 [ 3.540595] sd 0:0:0:0: [sda] Attached SCSI disk 1141 [ 3.931963] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 1142 [ 4.528269] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 1143 [ 4.528991] systemd[1]: Detected architecture arm64. 1144 [ 4.531890] systemd[1]: Hostname set to <pine64>. 1145 [ 4.621537] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 1146 [ 5.500464] systemd[1]: Queued start job for default target Graphical Interface. 1147 [ 5.502727] random: systemd: uninitialized urandom read (16 bytes read) 1148 [ 5.537903] systemd[1]: Created slice Slice /system/modprobe. 1149 [ 5.538624] random: systemd: uninitialized urandom read (16 bytes read) 1150 [ 5.541663] systemd[1]: Created slice Slice /system/serial-getty. 1151 [ 5.542122] random: systemd: uninitialized urandom read (16 bytes read) 1152 [ 5.544480] systemd[1]: Created slice User and Session Slice. 1153 [ 5.544953] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 1154 [ 5.545514] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1155 [ 5.546961] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 1156 [ 5.547503] systemd[1]: Reached target Local Encrypted Volumes. 1157 [ 5.548232] systemd[1]: Reached target Slice Units. 1158 [ 5.548589] systemd[1]: Reached target Swaps. 1159 [ 5.548895] systemd[1]: Reached target System Time Set. 1160 [ 5.549405] systemd[1]: Reached target Local Verity Protected Volumes. 1161 [ 5.572118] systemd[1]: Listening on RPCbind Server Activation Socket. 1162 [ 5.574322] systemd[1]: Listening on Syslog Socket. 1163 [ 5.575558] systemd[1]: Listening on fsck to fsckd communication Socket. 1164 [ 5.576233] systemd[1]: Listening on initctl Compatibility Named Pipe. 1165 [ 5.577886] systemd[1]: Listening on Journal Audit Socket. 1166 [ 5.578920] systemd[1]: Listening on Journal Socket (/dev/log). 1167 [ 5.580016] systemd[1]: Listening on Journal Socket. 1168 [ 5.581504] systemd[1]: Listening on udev Control Socket. 1169 [ 5.582525] systemd[1]: Listening on udev Kernel Socket. 1170 [ 5.588297] systemd[1]: Mounting Huge Pages File System... 1171 [ 5.595231] systemd[1]: Mounting POSIX Message Queue File System... 1172 [ 5.601550] systemd[1]: Mounting NFSD configuration filesystem... 1173 [ 5.608288] systemd[1]: Mounting Kernel Debug File System... 1174 [ 5.609832] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 1175 [ 5.610770] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 1176 [ 5.619686] systemd[1]: Starting Restore / save the current clock... 1177 [ 5.628104] systemd[1]: Starting Set the console keyboard layout... 1178 [ 5.628788] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 1179 [ 5.635996] systemd[1]: Starting Load Kernel Module chromeos_pstore... 1180 [ 5.643611] systemd[1]: Starting Load Kernel Module configfs... 1181 [ 5.651538] systemd[1]: Starting Load Kernel Module drm... 1182 [ 5.659669] systemd[1]: Starting Load Kernel Module efi_pstore... 1183 [ 5.667830] systemd[1]: Starting Load Kernel Module fuse... 1184 [ 5.675761] systemd[1]: Starting Load Kernel Module pstore_blk... 1185 [ 5.683701] systemd[1]: Starting Load Kernel Module pstore_zone... 1186 [ 5.691618] systemd[1]: Starting Load Kernel Module ramoops... 1187 [ 5.699936] systemd[1]: Started Nameserver information manager. 1188 [ 5.701621] systemd[1]: Reached target Preparation for Network. 1189 [ 5.702869] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 1190 [ 5.716634] systemd[1]: Starting Load Kernel Modules... 1191 [ 5.725472] systemd[1]: Starting Remount Root and Kernel File Systems... 1192 [ 5.734296] systemd[1]: Starting Coldplug All udev Devices... 1193 [ 5.750420] systemd[1]: Mounted Huge Pages File System. 1194 [ 5.751616] systemd[1]: Mounted POSIX Message Queue File System. 1195 [ 5.753049] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 1196 [ 5.753100] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 1197 [ 5.755299] systemd[1]: Failed to mount NFSD configuration filesystem. 1198 [ 5.755680] systemd[1]: Dependency failed for NFS server and services. 1199 [ 5.755833] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 1200 [ 5.755984] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 1201 [ 5.756053] systemd[1]: Dependency failed for NFS Mount Daemon. 1202 [ 5.756189] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 1203 [ 5.756240] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 1204 [ 5.756380] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 1205 [ 5.756562] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 1206 [ 5.758112] systemd[1]: Mounted Kernel Debug File System. 1207 [ 5.761151] systemd[1]: Finished Restore / save the current clock. 1208 [ 5.763553] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 1209 [ 5.764878] systemd[1]: Finished Load Kernel Module chromeos_pstore. 1210 [ 5.767379] systemd[1]: modprobe@configfs.service: Deactivated successfully. 1211 [ 5.767574] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 1212 [ 5.768874] systemd[1]: Finished Load Kernel Module configfs. 1213 [ 5.776591] systemd[1]: modprobe@drm.service: Deactivated successfully. 1214 [ 5.778255] systemd[1]: Finished Load Kernel Module drm. 1215 [ 5.780632] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 1216 [ 5.782253] systemd[1]: Finished Load Kernel Module efi_pstore. 1217 [ 5.784523] systemd[1]: modprobe@fuse.service: Deactivated successfully. 1218 [ 5.798648] systemd[1]: Finished Load Kernel Module fuse. 1219 [ 5.800762] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 1220 [ 5.802373] systemd[1]: Finished Load Kernel Module pstore_blk. 1221 [ 5.804429] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 1222 [ 5.805902] systemd[1]: Finished Load Kernel Module pstore_zone. 1223 [ 5.807916] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 1224 [ 5.809433] systemd[1]: Finished Load Kernel Module ramoops. 1225 [ 5.814710] systemd[1]: Finished Load Kernel Modules. 1226 [ 5.817646] systemd[1]: Finished Remount Root and Kernel File Systems. 1227 [ 5.819844] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 1228 [ 5.826540] systemd[1]: Mounting Kernel Configuration File System... 1229 [ 5.827387] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 1230 [ 5.835049] systemd[1]: Starting Load/Save Random Seed... 1231 [ 5.844291] systemd[1]: Starting Apply Kernel Variables... 1232 [ 5.854674] systemd[1]: Starting Create System Users... 1233 [ 5.869265] systemd[1]: Mounted Kernel Configuration File System. 1234 [ 5.928348] systemd[1]: Finished Create System Users. 1235 [ 5.936531] systemd[1]: Starting Create Static Device Nodes in /dev... 1236 [ 5.942985] systemd[1]: Finished Apply Kernel Variables. 1237 [ 5.996023] systemd[1]: Finished Create Static Device Nodes in /dev. 1238 [ 6.009955] systemd[1]: Starting Rule-based Manager for Device Events and Files... 1239 [ 6.044327] systemd[1]: Finished Set the console keyboard layout. 1240 [ 6.045700] systemd[1]: Reached target Preparation for Local File Systems. 1241 [ 6.057748] systemd[1]: Mounting /tmp... 1242 [ 6.069732] systemd[1]: Mounted /tmp. 1243 [ 6.070790] systemd[1]: Reached target Local File Systems. 1244 [ 6.077945] systemd[1]: Starting Armbian leds state... 1245 [ 6.090143] systemd[1]: Starting Armbian ZRAM config... 1246 [ 6.107098] systemd[1]: Starting Set console font and keymap... 1247 [ 6.108139] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 1248 [ 6.108566] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 1249 [ 6.115447] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 1250 [ 6.138860] systemd[1]: Finished Set console font and keymap. 1251 [ 6.165497] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 1252 [ 6.166483] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 1253 [ 6.170132] systemd[1]: Failed to start Armbian leds state. 1254 [ 6.284623] systemd[1]: Finished Coldplug All udev Devices. 1255 [ 6.312456] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 1256 [ 6.343224] systemd[1]: Started Rule-based Manager for Device Events and Files. 1257 [ 6.431848] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 1258 [ 6.432784] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 1259 [ 6.434739] systemd[1]: Failed to start Armbian ZRAM config. 1260 [ 6.469719] systemd[1]: Starting Armbian memory supported logging... 1261 [ 6.555476] urandom_read_iter: 51 callbacks suppressed 1262 [ 6.555506] random: systemd: uninitialized urandom read (16 bytes read) 1263 [ 6.652261] random: systemd: uninitialized urandom read (16 bytes read) 1264 [ 6.652371] random: systemd: uninitialized urandom read (16 bytes read) 1265 [ 6.785166] random: crng init done 1266 [ 6.785195] random: 8 urandom warning(s) missed due to ratelimiting 1267 [ 6.807855] systemd[1]: Finished Load/Save Random Seed. 1268 [ 6.809714] systemd[1]: Condition check resulted in First Boot Complete being skipped. 1269 [ 6.809986] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 1270 [ 6.810286] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 1271 [ 6.872276] systemd[1]: Found device /dev/ttyS0. 1272 [ 7.432756] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 1273 [ 7.475372] systemd[1]: Started ifup for eth0. 1274 [ 7.479618] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 1275 [ 7.487385] systemd[1]: Starting Raise network interfaces... 1276 [ 7.492546] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 1277 [ 7.493724] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 1278 [ 8.020551] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 1279 [ 8.021493] systemd[1]: networking.service: Failed with result 'exit-code'. 1280 [ 8.023165] systemd[1]: Failed to start Raise network interfaces. 1281 [ 10.555645] systemd[1]: Finished Armbian memory supported logging. 1282 [ 10.593602] systemd[1]: Starting Journal Service... 1283 [ 10.855401] systemd[1]: Started Journal Service. 1284 [ 10.906967] systemd-journald[587]: Received client request to flush runtime journal. 1285 1286 ### armbian-release: 1287 1288 # PLEASE DO NOT EDIT THIS FILE 1289 BOARD=pine64 1290 BOARD_NAME="Pine64" 1291 BOARDFAMILY=sun50iw1 1292 BUILD_REPOSITORY_URL=https://github.com/armbian/build 1293 BUILD_REPOSITORY_COMMIT=84940abb 1294 VERSION=22.11.1 1295 LINUXFAMILY=sunxi64 1296 ARCH=arm64 1297 IMAGE_TYPE=stable 1298 BOARD_TYPE=conf 1299 INITRD_ARCH=arm64 1300 KERNEL_IMAGE_TYPE=Image 1301 1302 ### boot environment: 1303 1304 verbosity=1 1305 bootlogo=false 1306 console=both 1307 disp_mode=1920x1080p60 1308 overlay_prefix=sun50i-a64 1309 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 1310 rootfstype=ext4 1311 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 1312 1313 1314 ### lsusb: 1315 1316 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 1317 Bus 002 Device 004: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC 1318 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 1319 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 1320 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1321 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 1322 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 1323 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1324 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 1325 1326 ### lscpu: 1327 1328 Architecture: aarch64 1329 CPU op-mode(s): 32-bit, 64-bit 1330 Byte Order: Little Endian 1331 CPU(s): 4 1332 On-line CPU(s) list: 0-3 1333 Vendor ID: ARM 1334 Model name: Cortex-A53 1335 Model: 4 1336 Thread(s) per core: 1 1337 Core(s) per cluster: 4 1338 Socket(s): - 1339 Cluster(s): 1 1340 Stepping: r0p4 1341 BogoMIPS: 48.00 1342 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1343 NUMA node(s): 1 1344 NUMA node0 CPU(s): 0-3 1345 Vulnerability Itlb multihit: Not affected 1346 Vulnerability L1tf: Not affected 1347 Vulnerability Mds: Not affected 1348 Vulnerability Meltdown: Not affected 1349 Vulnerability Mmio stale data: Not affected 1350 Vulnerability Spec store bypass: Not affected 1351 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 1352 Vulnerability Spectre v2: Not affected 1353 Vulnerability Srbds: Not affected 1354 Vulnerability Tsx async abort: Not affected 1355 1356 ### cpuinfo: 1357 1358 processor : 0 1359 BogoMIPS : 48.00 1360 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1361 CPU implementer : 0x41 1362 CPU architecture: 8 1363 CPU variant : 0x0 1364 CPU part : 0xd03 1365 CPU revision : 4 1366 1367 processor : 1 1368 BogoMIPS : 48.00 1369 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1370 CPU implementer : 0x41 1371 CPU architecture: 8 1372 CPU variant : 0x0 1373 CPU part : 0xd03 1374 CPU revision : 4 1375 1376 processor : 2 1377 BogoMIPS : 48.00 1378 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1379 CPU implementer : 0x41 1380 CPU architecture: 8 1381 CPU variant : 0x0 1382 CPU part : 0xd03 1383 CPU revision : 4 1384 1385 processor : 3 1386 BogoMIPS : 48.00 1387 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 1388 CPU implementer : 0x41 1389 CPU architecture: 8 1390 CPU variant : 0x0 1391 CPU part : 0xd03 1392 CPU revision : 4 1393 1394 1395 ### meminfo: 1396 1397 MemTotal: 2037276 kB 1398 MemFree: 1893432 kB 1399 MemAvailable: 1887720 kB 1400 Buffers: 11348 kB 1401 Cached: 52144 kB 1402 SwapCached: 0 kB 1403 Active: 27656 kB 1404 Inactive: 52880 kB 1405 Active(anon): 288 kB 1406 Inactive(anon): 33144 kB 1407 Active(file): 27368 kB 1408 Inactive(file): 19736 kB 1409 Unevictable: 0 kB 1410 Mlocked: 0 kB 1411 SwapTotal: 0 kB 1412 SwapFree: 0 kB 1413 Dirty: 16 kB 1414 Writeback: 0 kB 1415 AnonPages: 17496 kB 1416 Mapped: 14724 kB 1417 Shmem: 16136 kB 1418 KReclaimable: 9056 kB 1419 Slab: 31508 kB 1420 SReclaimable: 9056 kB 1421 SUnreclaim: 22452 kB 1422 KernelStack: 2256 kB 1423 PageTables: 1528 kB 1424 NFS_Unstable: 0 kB 1425 Bounce: 0 kB 1426 WritebackTmp: 0 kB 1427 CommitLimit: 1018636 kB 1428 Committed_AS: 57456 kB 1429 VmallocTotal: 133143592960 kB 1430 VmallocUsed: 10308 kB 1431 VmallocChunk: 0 kB 1432 Percpu: 1024 kB 1433 AnonHugePages: 0 kB 1434 ShmemHugePages: 0 kB 1435 ShmemPmdMapped: 0 kB 1436 FileHugePages: 0 kB 1437 FilePmdMapped: 0 kB 1438 CmaTotal: 131072 kB 1439 CmaFree: 130304 kB 1440 HugePages_Total: 0 1441 HugePages_Free: 0 1442 HugePages_Rsvd: 0 1443 HugePages_Surp: 0 1444 Hugepagesize: 2048 kB 1445 Hugetlb: 0 kB 1446 1447 ### virtual memory: 1448 1449 vm.admin_reserve_kbytes = 8192 1450 vm.compaction_proactiveness = 20 1451 vm.compact_unevictable_allowed = 1 1452 vm.dirty_background_bytes = 0 1453 vm.dirty_background_ratio = 10 1454 vm.dirty_bytes = 0 1455 vm.dirty_expire_centisecs = 3000 1456 vm.dirty_ratio = 20 1457 vm.dirtytime_expire_seconds = 43200 1458 vm.dirty_writeback_centisecs = 500 1459 vm.extfrag_threshold = 500 1460 vm.hugetlb_shm_group = 0 1461 vm.laptop_mode = 0 1462 vm.legacy_va_layout = 0 1463 vm.lowmem_reserve_ratio = 256 256 32 0 1464 vm.max_map_count = 65530 1465 vm.min_free_kbytes = 22528 1466 vm.min_slab_ratio = 5 1467 vm.min_unmapped_ratio = 1 1468 vm.mmap_min_addr = 32768 1469 vm.mmap_rnd_bits = 18 1470 vm.mmap_rnd_compat_bits = 11 1471 vm.nr_hugepages = 0 1472 vm.nr_hugepages_mempolicy = 0 1473 vm.nr_overcommit_hugepages = 0 1474 vm.numa_stat = 1 1475 vm.numa_zonelist_order = Node 1476 vm.oom_dump_tasks = 1 1477 vm.oom_kill_allocating_task = 0 1478 vm.overcommit_kbytes = 0 1479 vm.overcommit_memory = 0 1480 vm.overcommit_ratio = 50 1481 vm.page-cluster = 3 1482 vm.page_lock_unfairness = 5 1483 vm.panic_on_oom = 0 1484 vm.percpu_pagelist_high_fraction = 0 1485 vm.stat_interval = 1 1486 vm.swappiness = 100 1487 vm.user_reserve_kbytes = 63003 1488 vm.vfs_cache_pressure = 100 1489 vm.watermark_boost_factor = 15000 1490 vm.watermark_scale_factor = 10 1491 vm.zone_reclaim_mode = 0 1492 1493 ### ip addr: 1494 1495 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 1496 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 1497 inet XXX.XXX.0.1/8 scope host lo 1498 valid_lft forever preferred_lft forever 1499 inet6 ::1/128 scope host 1500 valid_lft forever preferred_lft forever 1501 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 1502 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 1503 1504 ### partitions: 1505 1506 major minor #blocks name 1507 1508 179 0 31260672 mmcblk0 1509 179 1 30928896 mmcblk0p1 1510 8 0 117220824 sda 1511 8 1 117218304 sda1 1512 1513 ### df: 1514 1515 tmpfs 199M 3.1M 196M 2% /run 1516 /dev/sda1 110G 20G 85G 19% / 1517 tmpfs 995M 0 995M 0% /dev/shm 1518 tmpfs 5.0M 0 5.0M 0% /run/lock 1519 tmpfs 995M 4.0K 995M 1% /tmp 1520 1521 ### lsblk: 1522 1523 NAME FSTYPE SIZE MOUNTPOINT UUID 1524 sda 111.8G 1525 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 1526 mmcblk0 29.8G 1527 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 1528 1529 ### zramctl: 1530 1531 1532 1533 ### mtab: 1534 1535 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 1536 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 1537 1538 ### mmc0:0001 info: 1539 1540 fwrev: 0x0 1541 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 1542 cid: 1b534d454231515430bc836120012941 1543 rca: 0x0001 1544 csd: 400e00325b590000ee7f7f800a404055 1545 manfid: 0x00001b 1546 ocr: 0x00200000 1547 preferred_erase_size: 4194304 1548 type: SD 1549 hwrev: 0x3 1550 date: 09/2018 1551 dsr: 0x404 1552 erase_size: 512 1553 oemid: 0x534d 1554 serial: 0xbc836120 1555 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 1556 scr: 02b5800200000000 1557 name: EB1QT 1558 1559 ### Boot system health: 1560 1561 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 1562 21:02:38: --- 0.15 54% 29% 20% 0% 3% 0% 37.1 °C 1563 21:02:39: --- 0.15 84% 20% 23% 1% 34% 5% 37.1 °C 1564 21:02:39: --- 0.46 79% 16% 24% 0% 35% 2% 34.4 °C 1565 21:02:39: --- 0.46 35% 10% 8% 1% 14% 0% 34.4 °C 1566 21:02:40: --- 0.46 21% 6% 2% 0% 12% 0% 34.4 °C 1567 1568 ### No more available zram devices () 1569 1570 Fri Dec 9 10:03:41 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 1571 1572 ### dmesg: 1573 1574 [ 0.000967] pid_max: default: 32768 minimum: 301 1575 [ 0.001055] LSM: Security Framework initializing 1576 [ 0.001085] Yama: becoming mindful. 1577 [ 0.001182] AppArmor: AppArmor initialized 1578 [ 0.001295] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 1579 [ 0.001324] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 1580 [ 0.003393] rcu: Hierarchical SRCU implementation. 1581 [ 0.004901] smp: Bringing up secondary CPUs ... 1582 [ 0.006140] Detected VIPT I-cache on CPU1 1583 [ 0.006207] arch_timer: CPU1: Trapping CNTVCT access 1584 [ 0.006225] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 1585 [ 0.007049] Detected VIPT I-cache on CPU2 1586 [ 0.007084] arch_timer: CPU2: Trapping CNTVCT access 1587 [ 0.007095] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 1588 [ 0.007824] Detected VIPT I-cache on CPU3 1589 [ 0.007858] arch_timer: CPU3: Trapping CNTVCT access 1590 [ 0.007868] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 1591 [ 0.007963] smp: Brought up 1 node, 4 CPUs 1592 [ 0.007980] SMP: Total of 4 processors activated. 1593 [ 0.007987] CPU features: detected: 32-bit EL0 Support 1594 [ 0.007993] CPU features: detected: CRC32 instructions 1595 [ 0.022850] CPU: All CPU(s) started at EL2 1596 [ 0.022883] alternatives: patching kernel code 1597 [ 0.024714] devtmpfs: initialized 1598 [ 0.032755] Registered cp15_barrier emulation handler 1599 [ 0.032789] Registered setend emulation handler 1600 [ 0.032969] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 1601 [ 0.032992] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 1602 [ 0.038452] pinctrl core: initialized pinctrl subsystem 1603 [ 0.040122] NET: Registered PF_NETLINK/PF_ROUTE protocol family 1604 [ 0.041916] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 1605 [ 0.042094] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 1606 [ 0.042271] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 1607 [ 0.042379] audit: initializing netlink subsys (disabled) 1608 [ 0.042599] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 1609 [ 0.043211] thermal_sys: Registered thermal governor 'fair_share' 1610 [ 0.043218] thermal_sys: Registered thermal governor 'bang_bang' 1611 [ 0.043224] thermal_sys: Registered thermal governor 'step_wise' 1612 [ 0.043230] thermal_sys: Registered thermal governor 'user_space' 1613 [ 0.043694] cpuidle: using governor menu 1614 [ 0.043952] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 1615 [ 0.044060] ASID allocator initialised with 65536 entries 1616 [ 0.044260] Serial: AMBA PL011 UART driver 1617 [ 0.060255] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 1618 [ 0.061792] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 1619 [ 0.069877] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 1620 [ 0.069900] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 1621 [ 0.069909] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 1622 [ 0.069917] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 1623 [ 0.072108] cryptd: max_cpu_qlen set to 1000 1624 [ 0.140242] raid6: neonx8 gen() 1460 MB/s 1625 [ 0.208328] raid6: neonx8 xor() 1090 MB/s 1626 [ 0.276399] raid6: neonx4 gen() 1492 MB/s 1627 [ 0.344486] raid6: neonx4 xor() 1081 MB/s 1628 [ 0.412556] raid6: neonx2 gen() 1411 MB/s 1629 [ 0.480640] raid6: neonx2 xor() 995 MB/s 1630 [ 0.548723] raid6: neonx1 gen() 1232 MB/s 1631 [ 0.616795] raid6: neonx1 xor() 848 MB/s 1632 [ 0.684888] raid6: int64x8 gen() 1017 MB/s 1633 [ 0.752959] raid6: int64x8 xor() 533 MB/s 1634 [ 0.821043] raid6: int64x4 gen() 1127 MB/s 1635 [ 0.889126] raid6: int64x4 xor() 572 MB/s 1636 [ 0.957212] raid6: int64x2 gen() 962 MB/s 1637 [ 1.025290] raid6: int64x2 xor() 509 MB/s 1638 [ 1.093395] raid6: int64x1 gen() 717 MB/s 1639 [ 1.161484] raid6: int64x1 xor() 373 MB/s 1640 [ 1.161491] raid6: using algorithm neonx4 gen() 1492 MB/s 1641 [ 1.161497] raid6: .... xor() 1081 MB/s, rmw enabled 1642 [ 1.161503] raid6: using neon recovery algorithm 1643 [ 1.162148] iommu: Default domain type: Translated 1644 [ 1.162158] iommu: DMA domain TLB invalidation policy: strict mode 1645 [ 1.162483] SCSI subsystem initialized 1646 [ 1.162711] usbcore: registered new interface driver usbfs 1647 [ 1.162761] usbcore: registered new interface driver hub 1648 [ 1.162797] usbcore: registered new device driver usb 1649 [ 1.163127] pps_core: LinuxPPS API ver. 1 registered 1650 [ 1.163134] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 1651 [ 1.163153] PTP clock support registered 1652 [ 1.163617] ARM FF-A: FFA_VERSION returned not supported 1653 [ 1.164013] Advanced Linux Sound Architecture Driver Initialized. 1654 [ 1.164787] NetLabel: Initializing 1655 [ 1.164793] NetLabel: domain hash size = 128 1656 [ 1.164799] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 1657 [ 1.164877] NetLabel: unlabeled traffic allowed by default 1658 [ 1.165371] clocksource: Switched to clocksource arch_sys_counter 1659 [ 1.165601] VFS: Disk quotas dquot_6.6.0 1660 [ 1.165666] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 1661 [ 1.166323] AppArmor: AppArmor Filesystem Enabled 1662 [ 1.173624] NET: Registered PF_INET protocol family 1663 [ 1.173909] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 1664 [ 1.175290] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 1665 [ 1.175335] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 1666 [ 1.175353] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 1667 [ 1.175513] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 1668 [ 1.175838] TCP: Hash tables configured (established 16384 bind 16384) 1669 [ 1.176006] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 1670 [ 1.176075] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 1671 [ 1.176295] NET: Registered PF_UNIX/PF_LOCAL protocol family 1672 [ 1.176892] Trying to unpack rootfs image as initramfs... 1673 [ 1.191958] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 1674 [ 1.199069] Initialise system trusted keyrings 1675 [ 1.199153] Key type blacklist registered 1676 [ 1.199362] workingset: timestamp_bits=44 max_order=19 bucket_order=0 1677 [ 1.205839] zbud: loaded 1678 [ 1.207583] squashfs: version 4.0 (2009/01/31) Phillip Lougher 1679 [ 1.210115] integrity: Platform Keyring initialized 1680 [ 1.264129] xor: automatically using best checksumming function 32regs 1681 [ 1.264158] async_tx: api initialized (async) 1682 [ 1.264189] Key type asymmetric registered 1683 [ 1.264196] Asymmetric key parser 'x509' registered 1684 [ 1.264327] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 1685 [ 1.264505] io scheduler mq-deadline registered 1686 [ 1.264514] io scheduler kyber registered 1687 [ 1.264740] io scheduler bfq registered 1688 [ 1.268751] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 1689 [ 1.278783] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 1690 [ 1.290999] loop: module loaded 1691 [ 1.293557] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 1692 [ 1.293594] ehci-platform: EHCI generic platform driver 1693 [ 1.293755] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 1694 [ 1.293771] ohci-platform: OHCI generic platform driver 1695 [ 1.294264] usbcore: registered new interface driver usb-storage 1696 [ 1.294812] mousedev: PS/2 mouse device common for all mice 1697 [ 1.295921] sun6i-rtc 1f00000.rtc: registered as rtc0 1698 [ 1.295960] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T21:03:31 UTC (1670619811) 1699 [ 1.296086] sun6i-rtc 1f00000.rtc: RTC enabled 1700 [ 1.296193] i2c_dev: i2c /dev entries driver 1701 [ 1.297011] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 1702 [ 1.299211] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 1703 [ 1.299675] sdhci: Secure Digital Host Controller Interface driver 1704 [ 1.299684] sdhci: Copyright(c) Pierre Ossman 1705 [ 1.299713] Synopsys Designware Multimedia Card Interface Driver 1706 [ 1.300482] sdhci-pltfm: SDHCI platform and OF driver helper 1707 [ 1.301340] ledtrig-cpu: registered to indicate activity on CPUs 1708 [ 1.301915] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 1709 [ 1.302228] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 1710 [ 1.302536] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1711 [ 1.302718] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1712 [ 1.302835] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1713 [ 1.302962] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 1714 [ 1.303055] sun8i-ce 1c15000.crypto: Register cbc(aes) 1715 [ 1.303247] sun8i-ce 1c15000.crypto: Register ecb(aes) 1716 [ 1.303387] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 1717 [ 1.303522] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 1718 [ 1.303662] sun8i-ce 1c15000.crypto: Register md5 1719 [ 1.303797] sun8i-ce 1c15000.crypto: Register sha1 1720 [ 1.303929] sun8i-ce 1c15000.crypto: Register sha224 1721 [ 1.304063] sun8i-ce 1c15000.crypto: Register sha256 1722 [ 1.304196] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 1723 [ 1.304207] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 1724 [ 1.304216] sun8i-ce 1c15000.crypto: Register stdrng 1725 [ 1.304372] sun8i-ce 1c15000.crypto: TRNG not supported 1726 [ 1.304382] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 1727 [ 1.304972] hid: raw HID events driver (C) Jiri Kosina 1728 [ 1.305156] usbcore: registered new interface driver usbhid 1729 [ 1.305164] usbhid: USB HID core driver 1730 [ 1.311428] NET: Registered PF_INET6 protocol family 1731 [ 1.956426] Freeing initrd memory: 12684K 1732 [ 1.989708] Segment Routing with IPv6 1733 [ 1.989802] In-situ OAM (IOAM) with IPv6 1734 [ 1.989900] NET: Registered PF_PACKET protocol family 1735 [ 1.990047] 8021q: 802.1Q VLAN Support v1.8 1736 [ 1.990233] 9pnet: Installing 9P2000 support 1737 [ 1.990359] Key type dns_resolver registered 1738 [ 1.990929] registered taskstats version 1 1739 [ 1.990947] Loading compiled-in X.509 certificates 1740 [ 1.995257] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 1741 [ 1.999607] zswap: loaded using pool zstd/z3fold 1742 [ 2.000376] Key type ._fscrypt registered 1743 [ 2.000386] Key type .fscrypt registered 1744 [ 2.000391] Key type fscrypt-provisioning registered 1745 [ 2.001590] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 1746 [ 2.017330] Key type encrypted registered 1747 [ 2.017399] AppArmor: AppArmor sha1 policy hashing enabled 1748 [ 2.017445] ima: No TPM chip found, activating TPM-bypass! 1749 [ 2.017482] ima: Allocated hash algorithm: sha1 1750 [ 2.017519] ima: No architecture policies found 1751 [ 2.017575] evm: Initialising EVM extended attributes: 1752 [ 2.017580] evm: security.selinux 1753 [ 2.017585] evm: security.SMACK64 1754 [ 2.017590] evm: security.SMACK64EXEC 1755 [ 2.017594] evm: security.SMACK64TRANSMUTE 1756 [ 2.017599] evm: security.SMACK64MMAP 1757 [ 2.017603] evm: security.apparmor 1758 [ 2.017608] evm: security.ima 1759 [ 2.017613] evm: security.capability 1760 [ 2.017617] evm: HMAC attrs: 0x1 1761 [ 2.030404] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 1762 [ 2.030497] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 1763 [ 2.031269] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 1764 [ 2.031335] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 1765 [ 2.032191] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 1766 [ 2.032600] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 1767 [ 2.034719] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 1768 [ 2.037837] vcc-3v3: supplied by regulator-dummy 1769 [ 2.038345] vdd-cpux: supplied by regulator-dummy 1770 [ 2.038994] dcdc4: supplied by regulator-dummy 1771 [ 2.039210] vcc-dram: supplied by regulator-dummy 1772 [ 2.039639] vdd-sys: supplied by regulator-dummy 1773 [ 2.040194] vcc-phy: supplied by regulator-dummy 1774 [ 2.040537] aldo1: supplied by regulator-dummy 1775 [ 2.040712] vcc-pl: supplied by regulator-dummy 1776 [ 2.041158] vcc-pll-avcc: supplied by regulator-dummy 1777 [ 2.041802] vcc-hdmi: supplied by regulator-dummy 1778 [ 2.042175] vcc-mipi: supplied by regulator-dummy 1779 [ 2.042556] dldo3: supplied by regulator-dummy 1780 [ 2.042918] vcc-wifi: supplied by regulator-dummy 1781 [ 2.043290] cpvdd: supplied by regulator-dummy 1782 [ 2.043671] eldo2: supplied by regulator-dummy 1783 [ 2.044042] eldo3: supplied by regulator-dummy 1784 [ 2.044409] vcc-1v2-hsic: supplied by regulator-dummy 1785 [ 2.044629] vdd-cpus: supplied by regulator-dummy 1786 [ 2.045036] vcc-rtc: supplied by regulator-dummy 1787 [ 2.045496] ldo-io0: supplied by regulator-dummy 1788 [ 2.045830] ldo-io1: supplied by regulator-dummy 1789 [ 2.045949] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 1790 [ 2.050823] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 1791 [ 2.051230] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 1792 [ 2.051810] printk: console [ttyS0] disabled 1793 [ 2.051897] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 1794 [ 2.052104] printk: console [ttyS0] enabled 1795 [ 2.052795] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 1796 [ 2.053242] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 1797 [ 2.053440] serial serial0: tty port ttyS1 registered 1798 [ 2.084008] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 1799 [ 2.085840] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 1800 [ 2.086356] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 1801 [ 2.086375] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 1802 [ 2.086605] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 1803 [ 2.087770] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 1804 [ 2.088379] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 1805 [ 2.088759] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 1806 [ 2.089438] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 1807 [ 2.089524] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1808 [ 2.090247] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 1809 [ 2.090854] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 1810 [ 2.091619] ehci-platform 1c1a000.usb: EHCI Host Controller 1811 [ 2.091652] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 1812 [ 2.091798] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 1813 [ 2.105381] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 1814 [ 2.105771] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1815 [ 2.105787] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1816 [ 2.105798] usb usb1: Product: EHCI Host Controller 1817 [ 2.105807] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1818 [ 2.105817] usb usb1: SerialNumber: 1c1a000.usb 1819 [ 2.106357] hub 1-0:1.0: USB hub found 1820 [ 2.106409] hub 1-0:1.0: 1 port detected 1821 [ 2.107444] ehci-platform 1c1b000.usb: EHCI Host Controller 1822 [ 2.107471] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 1823 [ 2.107603] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 1824 [ 2.121373] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 1825 [ 2.121684] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1826 [ 2.121699] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1827 [ 2.121710] usb usb2: Product: EHCI Host Controller 1828 [ 2.121720] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 1829 [ 2.121730] usb usb2: SerialNumber: 1c1b000.usb 1830 [ 2.122209] hub 2-0:1.0: USB hub found 1831 [ 2.122265] hub 2-0:1.0: 1 port detected 1832 [ 2.297464] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 1833 [ 2.297502] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 1834 [ 2.297644] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 1835 [ 2.365416] usb 1-1: new high-speed USB device number 2 using ehci-platform 1836 [ 2.365743] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1837 [ 2.365759] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1838 [ 2.365771] usb usb3: Product: Generic Platform OHCI controller 1839 [ 2.365780] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1840 [ 2.365789] usb usb3: SerialNumber: 1c1a400.usb 1841 [ 2.366313] hub 3-0:1.0: USB hub found 1842 [ 2.366362] hub 3-0:1.0: 1 port detected 1843 [ 2.367356] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 1844 [ 2.367382] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 1845 [ 2.367514] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 1846 [ 2.377379] usb 2-1: new high-speed USB device number 2 using ehci-platform 1847 [ 2.429643] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 1848 [ 2.429658] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1849 [ 2.429670] usb usb4: Product: Generic Platform OHCI controller 1850 [ 2.429679] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 1851 [ 2.429688] usb usb4: SerialNumber: 1c1b400.usb 1852 [ 2.430199] hub 4-0:1.0: USB hub found 1853 [ 2.430248] hub 4-0:1.0: 1 port detected 1854 [ 2.431312] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 1855 [ 2.431458] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 1856 [ 2.505659] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 1857 [ 2.505693] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 1858 [ 2.505982] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 1859 [ 2.505998] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 1860 [ 2.506010] usb usb5: Product: MUSB HDRC host driver 1861 [ 2.506020] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 1862 [ 2.506029] usb usb5: SerialNumber: musb-hdrc.4.auto 1863 [ 2.506585] hub 5-0:1.0: USB hub found 1864 [ 2.506643] hub 5-0:1.0: 1 port detected 1865 [ 2.510109] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 1866 [ 2.510177] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 1867 [ 2.511239] sunxi-mmc 1c0f000.mmc: Got CD GPIO 1868 [ 2.511243] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 1869 [ 2.511491] of_cfs_init 1870 [ 2.511626] of_cfs_init: OK 1871 [ 2.511987] ALSA device list: 1872 [ 2.511995] No soundcards found. 1873 [ 2.527348] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 1874 [ 2.527367] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 1875 [ 2.527379] usb 1-1: SerialNumber: 20181120 1876 [ 2.528345] usb-storage 1-1:1.0: USB Mass Storage device detected 1877 [ 2.528919] scsi host0: usb-storage 1-1:1.0 1878 [ 2.536523] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 1879 [ 2.536540] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 1880 [ 2.536552] usb 2-1: Product: USB2.1 Hub 1881 [ 2.536561] usb 2-1: Manufacturer: GenesysLogic 1882 [ 2.536687] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1883 [ 2.536885] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 1884 [ 2.537343] hub 2-1:1.0: USB hub found 1885 [ 2.537789] hub 2-1:1.0: 4 ports detected 1886 [ 2.538693] Freeing unused kernel memory: 2496K 1887 [ 2.538829] Run /init as init process 1888 [ 2.538836] with arguments: 1889 [ 2.538843] /init 1890 [ 2.538849] with environment: 1891 [ 2.538854] HOME=/ 1892 [ 2.538859] TERM=linux 1893 [ 2.538865] ubootpart=ea5e158f-01 1894 [ 2.538871] cgroup_enable=memory 1895 [ 2.572947] mmc0: new high speed SDHC card at address 0001 1896 [ 2.574020] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 1897 [ 2.576356] mmcblk0: p1 1898 [ 2.853435] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 1899 [ 3.041625] usbcore: registered new interface driver uas 1900 [ 3.079672] axp20x-gpio axp20x-gpio: DMA mask not set 1901 [ 3.080548] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 1902 [ 3.086177] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 1903 [ 3.088064] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 1904 [ 3.088347] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 1905 [ 3.088361] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 1906 [ 3.090157] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 1907 [ 3.090515] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 1908 [ 3.090575] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 1909 [ 3.092685] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 1910 [ 3.092717] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 1911 [ 3.092725] dwmac-sun8i 1c30000.ethernet: COE Type 2 1912 [ 3.092734] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 1913 [ 3.092743] dwmac-sun8i 1c30000.ethernet: Normal descriptors 1914 [ 3.092751] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 1915 [ 3.203500] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 1916 [ 3.203541] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 1917 [ 3.203553] usb 2-1.1: SerialNumber: AA5FCF90 1918 [ 3.562431] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 1919 [ 3.563045] sd 0:0:0:0: Attached scsi generic sg0 type 0 1920 [ 3.564037] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 1921 [ 3.565167] sd 0:0:0:0: [sda] Write Protect is off 1922 [ 3.565193] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 1923 [ 3.566442] sd 0:0:0:0: [sda] No Caching mode page found 1924 [ 3.566474] sd 0:0:0:0: [sda] Assuming drive cache: write through 1925 [ 3.602406] sda: sda1 1926 [ 3.606021] sd 0:0:0:0: [sda] Attached SCSI disk 1927 [ 3.971956] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 1928 [ 4.568206] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 1929 [ 4.568949] systemd[1]: Detected architecture arm64. 1930 [ 4.571925] systemd[1]: Hostname set to <pine64>. 1931 [ 4.693665] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 1932 [ 5.509269] systemd[1]: Queued start job for default target Graphical Interface. 1933 [ 5.511390] random: systemd: uninitialized urandom read (16 bytes read) 1934 [ 5.554045] systemd[1]: Created slice Slice /system/modprobe. 1935 [ 5.554785] random: systemd: uninitialized urandom read (16 bytes read) 1936 [ 5.557809] systemd[1]: Created slice Slice /system/serial-getty. 1937 [ 5.558252] random: systemd: uninitialized urandom read (16 bytes read) 1938 [ 5.560597] systemd[1]: Created slice User and Session Slice. 1939 [ 5.561082] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 1940 [ 5.561662] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 1941 [ 5.563104] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 1942 [ 5.563653] systemd[1]: Reached target Local Encrypted Volumes. 1943 [ 5.564435] systemd[1]: Reached target Slice Units. 1944 [ 5.564764] systemd[1]: Reached target Swaps. 1945 [ 5.565071] systemd[1]: Reached target System Time Set. 1946 [ 5.565631] systemd[1]: Reached target Local Verity Protected Volumes. 1947 [ 5.587985] systemd[1]: Listening on RPCbind Server Activation Socket. 1948 [ 5.590149] systemd[1]: Listening on Syslog Socket. 1949 [ 5.591328] systemd[1]: Listening on fsck to fsckd communication Socket. 1950 [ 5.591968] systemd[1]: Listening on initctl Compatibility Named Pipe. 1951 [ 5.593623] systemd[1]: Listening on Journal Audit Socket. 1952 [ 5.594654] systemd[1]: Listening on Journal Socket (/dev/log). 1953 [ 5.595693] systemd[1]: Listening on Journal Socket. 1954 [ 5.597030] systemd[1]: Listening on udev Control Socket. 1955 [ 5.598188] systemd[1]: Listening on udev Kernel Socket. 1956 [ 5.603925] systemd[1]: Mounting Huge Pages File System... 1957 [ 5.610880] systemd[1]: Mounting POSIX Message Queue File System... 1958 [ 5.617185] systemd[1]: Mounting NFSD configuration filesystem... 1959 [ 5.624267] systemd[1]: Mounting Kernel Debug File System... 1960 [ 5.625550] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 1961 [ 5.626478] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 1962 [ 5.635416] systemd[1]: Starting Restore / save the current clock... 1963 [ 5.643601] systemd[1]: Starting Set the console keyboard layout... 1964 [ 5.644258] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 1965 [ 5.651346] systemd[1]: Starting Load Kernel Module chromeos_pstore... 1966 [ 5.659042] systemd[1]: Starting Load Kernel Module configfs... 1967 [ 5.666509] systemd[1]: Starting Load Kernel Module drm... 1968 [ 5.674892] systemd[1]: Starting Load Kernel Module efi_pstore... 1969 [ 5.683147] systemd[1]: Starting Load Kernel Module fuse... 1970 [ 5.691079] systemd[1]: Starting Load Kernel Module pstore_blk... 1971 [ 5.699079] systemd[1]: Starting Load Kernel Module pstore_zone... 1972 [ 5.706715] systemd[1]: Starting Load Kernel Module ramoops... 1973 [ 5.714880] systemd[1]: Started Nameserver information manager. 1974 [ 5.716525] systemd[1]: Reached target Preparation for Network. 1975 [ 5.717918] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 1976 [ 5.733004] systemd[1]: Starting Load Kernel Modules... 1977 [ 5.742850] systemd[1]: Starting Remount Root and Kernel File Systems... 1978 [ 5.750843] systemd[1]: Starting Coldplug All udev Devices... 1979 [ 5.766147] systemd[1]: Mounted Huge Pages File System. 1980 [ 5.767223] systemd[1]: Mounted POSIX Message Queue File System. 1981 [ 5.768269] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 1982 [ 5.768318] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 1983 [ 5.770692] systemd[1]: Failed to mount NFSD configuration filesystem. 1984 [ 5.771070] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 1985 [ 5.771217] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 1986 [ 5.771277] systemd[1]: Dependency failed for NFS server and services. 1987 [ 5.771404] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 1988 [ 5.771534] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 1989 [ 5.771578] systemd[1]: Dependency failed for NFS Mount Daemon. 1990 [ 5.771699] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 1991 [ 5.771748] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 1992 [ 5.772818] systemd[1]: Mounted Kernel Debug File System. 1993 [ 5.776040] systemd[1]: Finished Restore / save the current clock. 1994 [ 5.778317] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 1995 [ 5.779560] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 1996 [ 5.779726] systemd[1]: Finished Load Kernel Module chromeos_pstore. 1997 [ 5.786543] systemd[1]: modprobe@configfs.service: Deactivated successfully. 1998 [ 5.787893] systemd[1]: Finished Load Kernel Module configfs. 1999 [ 5.790160] systemd[1]: modprobe@drm.service: Deactivated successfully. 2000 [ 5.791531] systemd[1]: Finished Load Kernel Module drm. 2001 [ 5.793850] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 2002 [ 5.795314] systemd[1]: Finished Load Kernel Module efi_pstore. 2003 [ 5.797555] systemd[1]: modprobe@fuse.service: Deactivated successfully. 2004 [ 5.798916] systemd[1]: Finished Load Kernel Module fuse. 2005 [ 5.800986] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 2006 [ 5.802635] systemd[1]: Finished Load Kernel Module pstore_blk. 2007 [ 5.804723] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 2008 [ 5.806254] systemd[1]: Finished Load Kernel Module pstore_zone. 2009 [ 5.808329] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 2010 [ 5.810094] systemd[1]: Finished Load Kernel Module ramoops. 2011 [ 5.815380] systemd[1]: Finished Load Kernel Modules. 2012 [ 5.854561] systemd[1]: Finished Remount Root and Kernel File Systems. 2013 [ 5.856825] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 2014 [ 5.862500] systemd[1]: Mounting Kernel Configuration File System... 2015 [ 5.863300] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 2016 [ 5.873290] systemd[1]: Starting Load/Save Random Seed... 2017 [ 5.883239] systemd[1]: Starting Apply Kernel Variables... 2018 [ 5.894766] systemd[1]: Starting Create System Users... 2019 [ 5.917140] systemd[1]: Mounted Kernel Configuration File System. 2020 [ 5.952052] systemd[1]: Finished Apply Kernel Variables. 2021 [ 5.954898] systemd[1]: Finished Create System Users. 2022 [ 5.964573] systemd[1]: Starting Create Static Device Nodes in /dev... 2023 [ 6.017161] systemd[1]: Finished Create Static Device Nodes in /dev. 2024 [ 6.030235] systemd[1]: Starting Rule-based Manager for Device Events and Files... 2025 [ 6.069109] systemd[1]: Finished Set the console keyboard layout. 2026 [ 6.070546] systemd[1]: Reached target Preparation for Local File Systems. 2027 [ 6.102206] systemd[1]: Mounting /tmp... 2028 [ 6.113906] systemd[1]: Mounted /tmp. 2029 [ 6.114971] systemd[1]: Reached target Local File Systems. 2030 [ 6.124947] systemd[1]: Starting Armbian leds state... 2031 [ 6.134640] systemd[1]: Starting Armbian ZRAM config... 2032 [ 6.148623] systemd[1]: Starting Set console font and keymap... 2033 [ 6.149965] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 2034 [ 6.150279] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 2035 [ 6.162450] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 2036 [ 6.181233] systemd[1]: Finished Set console font and keymap. 2037 [ 6.226719] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 2038 [ 6.227647] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 2039 [ 6.229527] systemd[1]: Failed to start Armbian leds state. 2040 [ 6.303669] systemd[1]: Finished Coldplug All udev Devices. 2041 [ 6.312090] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 2042 [ 6.349680] systemd[1]: Started Rule-based Manager for Device Events and Files. 2043 [ 6.479572] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 2044 [ 6.480546] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 2045 [ 6.484262] systemd[1]: Failed to start Armbian ZRAM config. 2046 [ 6.524337] systemd[1]: Starting Armbian memory supported logging... 2047 [ 6.568364] urandom_read_iter: 51 callbacks suppressed 2048 [ 6.568396] random: systemd: uninitialized urandom read (16 bytes read) 2049 [ 6.655463] random: systemd: uninitialized urandom read (16 bytes read) 2050 [ 6.655580] random: systemd: uninitialized urandom read (16 bytes read) 2051 [ 6.781953] random: crng init done 2052 [ 6.781985] random: 8 urandom warning(s) missed due to ratelimiting 2053 [ 6.799828] systemd[1]: Finished Load/Save Random Seed. 2054 [ 6.801862] systemd[1]: Condition check resulted in First Boot Complete being skipped. 2055 [ 6.802097] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 2056 [ 6.802346] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 2057 [ 6.850157] systemd[1]: Found device /dev/ttyS0. 2058 [ 7.402721] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 2059 [ 7.430601] systemd[1]: Started ifup for eth0. 2060 [ 7.435878] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 2061 [ 7.444614] systemd[1]: Starting Raise network interfaces... 2062 [ 7.448556] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 2063 [ 7.449736] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 2064 [ 8.011502] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 2065 [ 8.012392] systemd[1]: networking.service: Failed with result 'exit-code'. 2066 [ 8.014158] systemd[1]: Failed to start Raise network interfaces. 2067 [ 10.585634] systemd[1]: Finished Armbian memory supported logging. 2068 [ 10.625744] systemd[1]: Starting Journal Service... 2069 [ 10.887291] systemd[1]: Started Journal Service. 2070 [ 10.944202] systemd-journald[590]: Received client request to flush runtime journal. 2071 2072 ### armbian-release: 2073 2074 # PLEASE DO NOT EDIT THIS FILE 2075 BOARD=pine64 2076 BOARD_NAME="Pine64" 2077 BOARDFAMILY=sun50iw1 2078 BUILD_REPOSITORY_URL=https://github.com/armbian/build 2079 BUILD_REPOSITORY_COMMIT=84940abb 2080 VERSION=22.11.1 2081 LINUXFAMILY=sunxi64 2082 ARCH=arm64 2083 IMAGE_TYPE=stable 2084 BOARD_TYPE=conf 2085 INITRD_ARCH=arm64 2086 KERNEL_IMAGE_TYPE=Image 2087 BRANCH=current 2088 2089 ### boot environment: 2090 2091 verbosity=1 2092 bootlogo=false 2093 console=both 2094 disp_mode=1920x1080p60 2095 overlay_prefix=sunxi64 2096 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 2097 rootfstype=ext4 2098 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 2099 2100 ### lsusb: 2101 2102 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2103 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 2104 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 2105 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2106 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2107 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 2108 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2109 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2110 2111 ### lscpu: 2112 2113 Architecture: aarch64 2114 CPU op-mode(s): 32-bit, 64-bit 2115 Byte Order: Little Endian 2116 CPU(s): 4 2117 On-line CPU(s) list: 0-3 2118 Vendor ID: ARM 2119 Model name: Cortex-A53 2120 Model: 4 2121 Thread(s) per core: 1 2122 Core(s) per cluster: 4 2123 Socket(s): - 2124 Cluster(s): 1 2125 Stepping: r0p4 2126 BogoMIPS: 48.00 2127 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2128 NUMA node(s): 1 2129 NUMA node0 CPU(s): 0-3 2130 Vulnerability Itlb multihit: Not affected 2131 Vulnerability L1tf: Not affected 2132 Vulnerability Mds: Not affected 2133 Vulnerability Meltdown: Not affected 2134 Vulnerability Mmio stale data: Not affected 2135 Vulnerability Spec store bypass: Not affected 2136 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 2137 Vulnerability Spectre v2: Not affected 2138 Vulnerability Srbds: Not affected 2139 Vulnerability Tsx async abort: Not affected 2140 2141 ### cpuinfo: 2142 2143 processor : 0 2144 BogoMIPS : 48.00 2145 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2146 CPU implementer : 0x41 2147 CPU architecture: 8 2148 CPU variant : 0x0 2149 CPU part : 0xd03 2150 CPU revision : 4 2151 2152 processor : 1 2153 BogoMIPS : 48.00 2154 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2155 CPU implementer : 0x41 2156 CPU architecture: 8 2157 CPU variant : 0x0 2158 CPU part : 0xd03 2159 CPU revision : 4 2160 2161 processor : 2 2162 BogoMIPS : 48.00 2163 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2164 CPU implementer : 0x41 2165 CPU architecture: 8 2166 CPU variant : 0x0 2167 CPU part : 0xd03 2168 CPU revision : 4 2169 2170 processor : 3 2171 BogoMIPS : 48.00 2172 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2173 CPU implementer : 0x41 2174 CPU architecture: 8 2175 CPU variant : 0x0 2176 CPU part : 0xd03 2177 CPU revision : 4 2178 2179 2180 ### meminfo: 2181 2182 MemTotal: 2037276 kB 2183 MemFree: 1888184 kB 2184 MemAvailable: 1882516 kB 2185 Buffers: 11376 kB 2186 Cached: 52504 kB 2187 SwapCached: 0 kB 2188 Active: 27956 kB 2189 Inactive: 53844 kB 2190 Active(anon): 408 kB 2191 Inactive(anon): 34116 kB 2192 Active(file): 27548 kB 2193 Inactive(file): 19728 kB 2194 Unevictable: 0 kB 2195 Mlocked: 0 kB 2196 SwapTotal: 0 kB 2197 SwapFree: 0 kB 2198 Dirty: 20 kB 2199 Writeback: 0 kB 2200 AnonPages: 18204 kB 2201 Mapped: 14816 kB 2202 Shmem: 16356 kB 2203 KReclaimable: 8964 kB 2204 Slab: 31468 kB 2205 SReclaimable: 8964 kB 2206 SUnreclaim: 22504 kB 2207 KernelStack: 2384 kB 2208 PageTables: 1636 kB 2209 NFS_Unstable: 0 kB 2210 Bounce: 0 kB 2211 WritebackTmp: 0 kB 2212 CommitLimit: 1018636 kB 2213 Committed_AS: 66116 kB 2214 VmallocTotal: 133143592960 kB 2215 VmallocUsed: 10284 kB 2216 VmallocChunk: 0 kB 2217 Percpu: 1072 kB 2218 AnonHugePages: 0 kB 2219 ShmemHugePages: 0 kB 2220 ShmemPmdMapped: 0 kB 2221 FileHugePages: 0 kB 2222 FilePmdMapped: 0 kB 2223 CmaTotal: 131072 kB 2224 CmaFree: 130304 kB 2225 HugePages_Total: 0 2226 HugePages_Free: 0 2227 HugePages_Rsvd: 0 2228 HugePages_Surp: 0 2229 Hugepagesize: 2048 kB 2230 Hugetlb: 0 kB 2231 2232 ### virtual memory: 2233 2234 vm.admin_reserve_kbytes = 8192 2235 vm.compaction_proactiveness = 20 2236 vm.compact_unevictable_allowed = 1 2237 vm.dirty_background_bytes = 0 2238 vm.dirty_background_ratio = 10 2239 vm.dirty_bytes = 0 2240 vm.dirty_expire_centisecs = 3000 2241 vm.dirty_ratio = 20 2242 vm.dirtytime_expire_seconds = 43200 2243 vm.dirty_writeback_centisecs = 500 2244 vm.extfrag_threshold = 500 2245 vm.hugetlb_shm_group = 0 2246 vm.laptop_mode = 0 2247 vm.legacy_va_layout = 0 2248 vm.lowmem_reserve_ratio = 256 256 32 0 2249 vm.max_map_count = 65530 2250 vm.min_free_kbytes = 22528 2251 vm.min_slab_ratio = 5 2252 vm.min_unmapped_ratio = 1 2253 vm.mmap_min_addr = 32768 2254 vm.mmap_rnd_bits = 18 2255 vm.mmap_rnd_compat_bits = 11 2256 vm.nr_hugepages = 0 2257 vm.nr_hugepages_mempolicy = 0 2258 vm.nr_overcommit_hugepages = 0 2259 vm.numa_stat = 1 2260 vm.numa_zonelist_order = Node 2261 vm.oom_dump_tasks = 1 2262 vm.oom_kill_allocating_task = 0 2263 vm.overcommit_kbytes = 0 2264 vm.overcommit_memory = 0 2265 vm.overcommit_ratio = 50 2266 vm.page-cluster = 3 2267 vm.page_lock_unfairness = 5 2268 vm.panic_on_oom = 0 2269 vm.percpu_pagelist_high_fraction = 0 2270 vm.stat_interval = 1 2271 vm.swappiness = 100 2272 vm.user_reserve_kbytes = 63000 2273 vm.vfs_cache_pressure = 100 2274 vm.watermark_boost_factor = 15000 2275 vm.watermark_scale_factor = 10 2276 vm.zone_reclaim_mode = 0 2277 2278 ### ip addr: 2279 2280 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 2281 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 2282 inet XXX.XXX.0.1/8 scope host lo 2283 valid_lft forever preferred_lft forever 2284 inet6 ::1/128 scope host 2285 valid_lft forever preferred_lft forever 2286 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 2287 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 2288 2289 ### partitions: 2290 2291 major minor #blocks name 2292 2293 179 0 31260672 mmcblk0 2294 179 1 30928896 mmcblk0p1 2295 8 0 117220824 sda 2296 8 1 117218304 sda1 2297 2298 ### df: 2299 2300 tmpfs 199M 3.1M 196M 2% /run 2301 /dev/sda1 110G 20G 85G 19% / 2302 tmpfs 995M 0 995M 0% /dev/shm 2303 tmpfs 5.0M 0 5.0M 0% /run/lock 2304 tmpfs 995M 4.0K 995M 1% /tmp 2305 2306 ### lsblk: 2307 2308 NAME FSTYPE SIZE MOUNTPOINT UUID 2309 sda 111.8G 2310 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 2311 mmcblk0 29.8G 2312 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 2313 2314 ### zramctl: 2315 2316 2317 2318 ### mtab: 2319 2320 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 2321 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 2322 2323 ### mmc0:0001 info: 2324 2325 fwrev: 0x0 2326 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 2327 cid: 1b534d454231515430bc836120012941 2328 rca: 0x0001 2329 csd: 400e00325b590000ee7f7f800a404055 2330 manfid: 0x00001b 2331 ocr: 0x00200000 2332 preferred_erase_size: 4194304 2333 type: SD 2334 hwrev: 0x3 2335 date: 09/2018 2336 dsr: 0x404 2337 erase_size: 512 2338 oemid: 0x534d 2339 serial: 0xbc836120 2340 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 2341 scr: 02b5800200000000 2342 name: EB1QT 2343 2344 ### Boot system health: 2345 2346 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 2347 22:03:44: --- 0.15 53% 29% 19% 0% 3% 0% 39.8 °C 2348 22:03:45: --- 0.15 91% 15% 38% 0% 33% 2% 39.8 °C 2349 22:03:45: --- 0.62 84% 20% 18% 0% 42% 2% 37.2 °C 2350 22:03:45: --- 0.62 67% 12% 17% 1% 35% 0% 37.2 °C 2351 22:03:46: --- 0.62 25% 4% 3% 0% 15% 1% 37.2 °C 2352 2353 ### No more available zram devices () 2354 2355 Fri Dec 9 10:41:36 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 2356 2357 ### dmesg: 2358 2359 [ 0.000966] pid_max: default: 32768 minimum: 301 2360 [ 0.001053] LSM: Security Framework initializing 2361 [ 0.001082] Yama: becoming mindful. 2362 [ 0.001177] AppArmor: AppArmor initialized 2363 [ 0.001290] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 2364 [ 0.001319] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 2365 [ 0.003384] rcu: Hierarchical SRCU implementation. 2366 [ 0.004894] smp: Bringing up secondary CPUs ... 2367 [ 0.006138] Detected VIPT I-cache on CPU1 2368 [ 0.006206] arch_timer: CPU1: Trapping CNTVCT access 2369 [ 0.006224] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 2370 [ 0.007051] Detected VIPT I-cache on CPU2 2371 [ 0.007088] arch_timer: CPU2: Trapping CNTVCT access 2372 [ 0.007098] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 2373 [ 0.007836] Detected VIPT I-cache on CPU3 2374 [ 0.007870] arch_timer: CPU3: Trapping CNTVCT access 2375 [ 0.007881] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 2376 [ 0.008001] smp: Brought up 1 node, 4 CPUs 2377 [ 0.008017] SMP: Total of 4 processors activated. 2378 [ 0.008025] CPU features: detected: 32-bit EL0 Support 2379 [ 0.008031] CPU features: detected: CRC32 instructions 2380 [ 0.022887] CPU: All CPU(s) started at EL2 2381 [ 0.022921] alternatives: patching kernel code 2382 [ 0.024757] devtmpfs: initialized 2383 [ 0.032795] Registered cp15_barrier emulation handler 2384 [ 0.032829] Registered setend emulation handler 2385 [ 0.033012] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 2386 [ 0.033037] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 2387 [ 0.038493] pinctrl core: initialized pinctrl subsystem 2388 [ 0.040177] NET: Registered PF_NETLINK/PF_ROUTE protocol family 2389 [ 0.041966] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 2390 [ 0.042142] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 2391 [ 0.042319] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 2392 [ 0.042425] audit: initializing netlink subsys (disabled) 2393 [ 0.042643] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 2394 [ 0.043252] thermal_sys: Registered thermal governor 'fair_share' 2395 [ 0.043259] thermal_sys: Registered thermal governor 'bang_bang' 2396 [ 0.043265] thermal_sys: Registered thermal governor 'step_wise' 2397 [ 0.043270] thermal_sys: Registered thermal governor 'user_space' 2398 [ 0.043734] cpuidle: using governor menu 2399 [ 0.043991] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 2400 [ 0.044102] ASID allocator initialised with 65536 entries 2401 [ 0.044296] Serial: AMBA PL011 UART driver 2402 [ 0.060271] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 2403 [ 0.061807] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 2404 [ 0.069882] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 2405 [ 0.069905] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 2406 [ 0.069914] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 2407 [ 0.069922] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 2408 [ 0.072138] cryptd: max_cpu_qlen set to 1000 2409 [ 0.140231] raid6: neonx8 gen() 1460 MB/s 2410 [ 0.208291] raid6: neonx8 xor() 1091 MB/s 2411 [ 0.276370] raid6: neonx4 gen() 1492 MB/s 2412 [ 0.344434] raid6: neonx4 xor() 1081 MB/s 2413 [ 0.412501] raid6: neonx2 gen() 1411 MB/s 2414 [ 0.480568] raid6: neonx2 xor() 991 MB/s 2415 [ 0.548634] raid6: neonx1 gen() 1231 MB/s 2416 [ 0.616706] raid6: neonx1 xor() 848 MB/s 2417 [ 0.684778] raid6: int64x8 gen() 1023 MB/s 2418 [ 0.752845] raid6: int64x8 xor() 533 MB/s 2419 [ 0.820906] raid6: int64x4 gen() 1126 MB/s 2420 [ 0.888991] raid6: int64x4 xor() 572 MB/s 2421 [ 0.957064] raid6: int64x2 gen() 962 MB/s 2422 [ 1.025139] raid6: int64x2 xor() 509 MB/s 2423 [ 1.093217] raid6: int64x1 gen() 716 MB/s 2424 [ 1.161276] raid6: int64x1 xor() 372 MB/s 2425 [ 1.161284] raid6: using algorithm neonx4 gen() 1492 MB/s 2426 [ 1.161290] raid6: .... xor() 1081 MB/s, rmw enabled 2427 [ 1.161296] raid6: using neon recovery algorithm 2428 [ 1.161949] iommu: Default domain type: Translated 2429 [ 1.161959] iommu: DMA domain TLB invalidation policy: strict mode 2430 [ 1.162284] SCSI subsystem initialized 2431 [ 1.162509] usbcore: registered new interface driver usbfs 2432 [ 1.162559] usbcore: registered new interface driver hub 2433 [ 1.162594] usbcore: registered new device driver usb 2434 [ 1.162925] pps_core: LinuxPPS API ver. 1 registered 2435 [ 1.162932] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 2436 [ 1.162952] PTP clock support registered 2437 [ 1.163416] ARM FF-A: FFA_VERSION returned not supported 2438 [ 1.163814] Advanced Linux Sound Architecture Driver Initialized. 2439 [ 1.164560] NetLabel: Initializing 2440 [ 1.164601] NetLabel: domain hash size = 128 2441 [ 1.164608] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 2442 [ 1.164688] NetLabel: unlabeled traffic allowed by default 2443 [ 1.165188] clocksource: Switched to clocksource arch_sys_counter 2444 [ 1.165420] VFS: Disk quotas dquot_6.6.0 2445 [ 1.165486] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 2446 [ 1.166160] AppArmor: AppArmor Filesystem Enabled 2447 [ 1.173302] NET: Registered PF_INET protocol family 2448 [ 1.173586] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 2449 [ 1.174959] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 2450 [ 1.175004] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 2451 [ 1.175022] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 2452 [ 1.175181] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 2453 [ 1.175511] TCP: Hash tables configured (established 16384 bind 16384) 2454 [ 1.175681] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 2455 [ 1.175750] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 2456 [ 1.175970] NET: Registered PF_UNIX/PF_LOCAL protocol family 2457 [ 1.176569] Trying to unpack rootfs image as initramfs... 2458 [ 1.186574] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 2459 [ 1.193922] Initialise system trusted keyrings 2460 [ 1.194032] Key type blacklist registered 2461 [ 1.194268] workingset: timestamp_bits=44 max_order=19 bucket_order=0 2462 [ 1.200682] zbud: loaded 2463 [ 1.202489] squashfs: version 4.0 (2009/01/31) Phillip Lougher 2464 [ 1.205065] integrity: Platform Keyring initialized 2465 [ 1.257974] xor: automatically using best checksumming function 32regs 2466 [ 1.258002] async_tx: api initialized (async) 2467 [ 1.258014] Key type asymmetric registered 2468 [ 1.258021] Asymmetric key parser 'x509' registered 2469 [ 1.258167] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 2470 [ 1.258340] io scheduler mq-deadline registered 2471 [ 1.258348] io scheduler kyber registered 2472 [ 1.258564] io scheduler bfq registered 2473 [ 1.262456] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 2474 [ 1.272519] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 2475 [ 1.284812] loop: module loaded 2476 [ 1.287435] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 2477 [ 1.287469] ehci-platform: EHCI generic platform driver 2478 [ 1.287632] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 2479 [ 1.287647] ohci-platform: OHCI generic platform driver 2480 [ 1.288140] usbcore: registered new interface driver usb-storage 2481 [ 1.288737] mousedev: PS/2 mouse device common for all mice 2482 [ 1.289877] sun6i-rtc 1f00000.rtc: registered as rtc0 2483 [ 1.289916] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T21:41:26 UTC (1670622086) 2484 [ 1.290039] sun6i-rtc 1f00000.rtc: RTC enabled 2485 [ 1.290147] i2c_dev: i2c /dev entries driver 2486 [ 1.290958] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 2487 [ 1.293120] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 2488 [ 1.293725] sdhci: Secure Digital Host Controller Interface driver 2489 [ 1.293736] sdhci: Copyright(c) Pierre Ossman 2490 [ 1.293764] Synopsys Designware Multimedia Card Interface Driver 2491 [ 1.294517] sdhci-pltfm: SDHCI platform and OF driver helper 2492 [ 1.295484] ledtrig-cpu: registered to indicate activity on CPUs 2493 [ 1.295997] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 2494 [ 1.296307] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 2495 [ 1.296608] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2496 [ 1.296760] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2497 [ 1.296888] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2498 [ 1.297000] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 2499 [ 1.297098] sun8i-ce 1c15000.crypto: Register cbc(aes) 2500 [ 1.297339] sun8i-ce 1c15000.crypto: Register ecb(aes) 2501 [ 1.297504] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 2502 [ 1.297644] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 2503 [ 1.297776] sun8i-ce 1c15000.crypto: Register md5 2504 [ 1.297917] sun8i-ce 1c15000.crypto: Register sha1 2505 [ 1.298048] sun8i-ce 1c15000.crypto: Register sha224 2506 [ 1.298177] sun8i-ce 1c15000.crypto: Register sha256 2507 [ 1.298308] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 2508 [ 1.298318] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 2509 [ 1.298327] sun8i-ce 1c15000.crypto: Register stdrng 2510 [ 1.298504] sun8i-ce 1c15000.crypto: TRNG not supported 2511 [ 1.298515] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 2512 [ 1.299131] hid: raw HID events driver (C) Jiri Kosina 2513 [ 1.299282] usbcore: registered new interface driver usbhid 2514 [ 1.299291] usbhid: USB HID core driver 2515 [ 1.305618] NET: Registered PF_INET6 protocol family 2516 [ 1.956986] Freeing initrd memory: 12684K 2517 [ 1.990251] Segment Routing with IPv6 2518 [ 1.990345] In-situ OAM (IOAM) with IPv6 2519 [ 1.990444] NET: Registered PF_PACKET protocol family 2520 [ 1.990577] 8021q: 802.1Q VLAN Support v1.8 2521 [ 1.990741] 9pnet: Installing 9P2000 support 2522 [ 1.990844] Key type dns_resolver registered 2523 [ 1.991355] registered taskstats version 1 2524 [ 1.991379] Loading compiled-in X.509 certificates 2525 [ 1.995669] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 2526 [ 2.000062] zswap: loaded using pool zstd/z3fold 2527 [ 2.000790] Key type ._fscrypt registered 2528 [ 2.000800] Key type .fscrypt registered 2529 [ 2.000805] Key type fscrypt-provisioning registered 2530 [ 2.002013] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 2531 [ 2.017908] Key type encrypted registered 2532 [ 2.017945] AppArmor: AppArmor sha1 policy hashing enabled 2533 [ 2.017990] ima: No TPM chip found, activating TPM-bypass! 2534 [ 2.018035] ima: Allocated hash algorithm: sha1 2535 [ 2.018072] ima: No architecture policies found 2536 [ 2.018167] evm: Initialising EVM extended attributes: 2537 [ 2.018172] evm: security.selinux 2538 [ 2.018178] evm: security.SMACK64 2539 [ 2.018182] evm: security.SMACK64EXEC 2540 [ 2.018187] evm: security.SMACK64TRANSMUTE 2541 [ 2.018191] evm: security.SMACK64MMAP 2542 [ 2.018196] evm: security.apparmor 2543 [ 2.018201] evm: security.ima 2544 [ 2.018206] evm: security.capability 2545 [ 2.018210] evm: HMAC attrs: 0x1 2546 [ 2.031144] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 2547 [ 2.031237] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 2548 [ 2.032003] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 2549 [ 2.032072] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 2550 [ 2.032946] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 2551 [ 2.033409] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 2552 [ 2.035463] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 2553 [ 2.038624] vcc-3v3: supplied by regulator-dummy 2554 [ 2.039156] vdd-cpux: supplied by regulator-dummy 2555 [ 2.039819] dcdc4: supplied by regulator-dummy 2556 [ 2.040012] vcc-dram: supplied by regulator-dummy 2557 [ 2.040486] vdd-sys: supplied by regulator-dummy 2558 [ 2.041029] vcc-phy: supplied by regulator-dummy 2559 [ 2.041491] aldo1: supplied by regulator-dummy 2560 [ 2.041677] vcc-pl: supplied by regulator-dummy 2561 [ 2.042132] vcc-pll-avcc: supplied by regulator-dummy 2562 [ 2.042766] vcc-hdmi: supplied by regulator-dummy 2563 [ 2.043137] vcc-mipi: supplied by regulator-dummy 2564 [ 2.043506] dldo3: supplied by regulator-dummy 2565 [ 2.043905] vcc-wifi: supplied by regulator-dummy 2566 [ 2.044271] cpvdd: supplied by regulator-dummy 2567 [ 2.044643] eldo2: supplied by regulator-dummy 2568 [ 2.045041] eldo3: supplied by regulator-dummy 2569 [ 2.045467] vcc-1v2-hsic: supplied by regulator-dummy 2570 [ 2.045666] vdd-cpus: supplied by regulator-dummy 2571 [ 2.046100] vcc-rtc: supplied by regulator-dummy 2572 [ 2.046538] ldo-io0: supplied by regulator-dummy 2573 [ 2.046905] ldo-io1: supplied by regulator-dummy 2574 [ 2.047030] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 2575 [ 2.051973] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 2576 [ 2.052387] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 2577 [ 2.052963] printk: console [ttyS0] disabled 2578 [ 2.053053] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 2579 [ 2.053306] printk: console [ttyS0] enabled 2580 [ 2.054031] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 2581 [ 2.054553] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 2582 [ 2.054710] serial serial0: tty port ttyS1 registered 2583 [ 2.085328] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 2584 [ 2.087151] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 2585 [ 2.087670] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 2586 [ 2.087688] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 2587 [ 2.087911] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 2588 [ 2.089031] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 2589 [ 2.089726] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 2590 [ 2.090114] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 2591 [ 2.090804] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 2592 [ 2.090896] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 2593 [ 2.091602] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 2594 [ 2.092190] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 2595 [ 2.092943] ehci-platform 1c1a000.usb: EHCI Host Controller 2596 [ 2.092978] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 2597 [ 2.093124] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 2598 [ 2.105194] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 2599 [ 2.105531] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 2600 [ 2.105547] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2601 [ 2.105559] usb usb1: Product: EHCI Host Controller 2602 [ 2.105568] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 2603 [ 2.105577] usb usb1: SerialNumber: 1c1a000.usb 2604 [ 2.106127] hub 1-0:1.0: USB hub found 2605 [ 2.106175] hub 1-0:1.0: 1 port detected 2606 [ 2.107178] ehci-platform 1c1b000.usb: EHCI Host Controller 2607 [ 2.107204] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 2608 [ 2.107330] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 2609 [ 2.121193] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 2610 [ 2.121520] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 2611 [ 2.121536] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2612 [ 2.121547] usb usb2: Product: EHCI Host Controller 2613 [ 2.121556] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 2614 [ 2.121566] usb usb2: SerialNumber: 1c1b000.usb 2615 [ 2.122074] hub 2-0:1.0: USB hub found 2616 [ 2.122126] hub 2-0:1.0: 1 port detected 2617 [ 2.301288] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 2618 [ 2.301321] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 2619 [ 2.301460] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 2620 [ 2.365201] usb 1-1: new high-speed USB device number 2 using ehci-platform 2621 [ 2.369565] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 2622 [ 2.369581] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2623 [ 2.369593] usb usb3: Product: Generic Platform OHCI controller 2624 [ 2.369603] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 2625 [ 2.369613] usb usb3: SerialNumber: 1c1a400.usb 2626 [ 2.370136] hub 3-0:1.0: USB hub found 2627 [ 2.370190] hub 3-0:1.0: 1 port detected 2628 [ 2.371218] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 2629 [ 2.371246] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 2630 [ 2.371376] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 2631 [ 2.377231] usb 2-1: new high-speed USB device number 2 using ehci-platform 2632 [ 2.437518] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 2633 [ 2.437534] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2634 [ 2.437546] usb usb4: Product: Generic Platform OHCI controller 2635 [ 2.437555] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 2636 [ 2.437565] usb usb4: SerialNumber: 1c1b400.usb 2637 [ 2.438096] hub 4-0:1.0: USB hub found 2638 [ 2.438145] hub 4-0:1.0: 1 port detected 2639 [ 2.439238] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 2640 [ 2.439381] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 2641 [ 2.509460] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 2642 [ 2.509492] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 2643 [ 2.509762] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 2644 [ 2.509778] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 2645 [ 2.509790] usb usb5: Product: MUSB HDRC host driver 2646 [ 2.509799] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 2647 [ 2.509809] usb usb5: SerialNumber: musb-hdrc.4.auto 2648 [ 2.510335] hub 5-0:1.0: USB hub found 2649 [ 2.510384] hub 5-0:1.0: 1 port detected 2650 [ 2.513812] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 2651 [ 2.513886] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 2652 [ 2.514907] sunxi-mmc 1c0f000.mmc: Got CD GPIO 2653 [ 2.514908] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 2654 [ 2.515157] of_cfs_init 2655 [ 2.515301] of_cfs_init: OK 2656 [ 2.515659] ALSA device list: 2657 [ 2.515667] No soundcards found. 2658 [ 2.531170] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 2659 [ 2.531189] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 2660 [ 2.531200] usb 1-1: SerialNumber: 20181120 2661 [ 2.532159] usb-storage 1-1:1.0: USB Mass Storage device detected 2662 [ 2.532709] scsi host0: usb-storage 1-1:1.0 2663 [ 2.536502] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 2664 [ 2.536519] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 2665 [ 2.536531] usb 2-1: Product: USB2.1 Hub 2666 [ 2.536540] usb 2-1: Manufacturer: GenesysLogic 2667 [ 2.537281] hub 2-1:1.0: USB hub found 2668 [ 2.537622] hub 2-1:1.0: 4 ports detected 2669 [ 2.540313] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 2670 [ 2.540574] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 2671 [ 2.542395] Freeing unused kernel memory: 2496K 2672 [ 2.542532] Run /init as init process 2673 [ 2.542540] with arguments: 2674 [ 2.542546] /init 2675 [ 2.542552] with environment: 2676 [ 2.542557] HOME=/ 2677 [ 2.542563] TERM=linux 2678 [ 2.542568] ubootpart=ea5e158f-01 2679 [ 2.542574] cgroup_enable=memory 2680 [ 2.577098] mmc0: new high speed SDHC card at address 0001 2681 [ 2.578229] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 2682 [ 2.580821] mmcblk0: p1 2683 [ 2.853225] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 2684 [ 3.043135] usbcore: registered new interface driver uas 2685 [ 3.071499] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 2686 [ 3.071803] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 2687 [ 3.071819] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 2688 [ 3.072121] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 2689 [ 3.072335] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 2690 [ 3.072377] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 2691 [ 3.072789] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 2692 [ 3.072801] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 2693 [ 3.072809] dwmac-sun8i 1c30000.ethernet: COE Type 2 2694 [ 3.072818] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 2695 [ 3.072827] dwmac-sun8i 1c30000.ethernet: Normal descriptors 2696 [ 3.072835] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 2697 [ 3.074674] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 2698 [ 3.103692] axp20x-gpio axp20x-gpio: DMA mask not set 2699 [ 3.104370] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 2700 [ 3.202549] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 2701 [ 3.202584] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 2702 [ 3.202597] usb 2-1.1: SerialNumber: AA5FCF90 2703 [ 3.558252] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 2704 [ 3.558876] sd 0:0:0:0: Attached scsi generic sg0 type 0 2705 [ 3.560234] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 2706 [ 3.561480] sd 0:0:0:0: [sda] Write Protect is off 2707 [ 3.561510] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 2708 [ 3.562876] sd 0:0:0:0: [sda] No Caching mode page found 2709 [ 3.562906] sd 0:0:0:0: [sda] Assuming drive cache: write through 2710 [ 3.568847] sda: sda1 2711 [ 3.572330] sd 0:0:0:0: [sda] Attached SCSI disk 2712 [ 3.937663] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 2713 [ 4.533416] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 2714 [ 4.534138] systemd[1]: Detected architecture arm64. 2715 [ 4.537128] systemd[1]: Hostname set to <pine64>. 2716 [ 4.643661] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 2717 [ 5.465445] systemd[1]: Queued start job for default target Graphical Interface. 2718 [ 5.467501] random: systemd: uninitialized urandom read (16 bytes read) 2719 [ 5.501798] systemd[1]: Created slice Slice /system/modprobe. 2720 [ 5.502609] random: systemd: uninitialized urandom read (16 bytes read) 2721 [ 5.505674] systemd[1]: Created slice Slice /system/serial-getty. 2722 [ 5.506158] random: systemd: uninitialized urandom read (16 bytes read) 2723 [ 5.508498] systemd[1]: Created slice User and Session Slice. 2724 [ 5.508980] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 2725 [ 5.509557] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 2726 [ 5.511026] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 2727 [ 5.511589] systemd[1]: Reached target Local Encrypted Volumes. 2728 [ 5.512336] systemd[1]: Reached target Slice Units. 2729 [ 5.512688] systemd[1]: Reached target Swaps. 2730 [ 5.512992] systemd[1]: Reached target System Time Set. 2731 [ 5.513493] systemd[1]: Reached target Local Verity Protected Volumes. 2732 [ 5.535773] systemd[1]: Listening on RPCbind Server Activation Socket. 2733 [ 5.537986] systemd[1]: Listening on Syslog Socket. 2734 [ 5.539145] systemd[1]: Listening on fsck to fsckd communication Socket. 2735 [ 5.539789] systemd[1]: Listening on initctl Compatibility Named Pipe. 2736 [ 5.541438] systemd[1]: Listening on Journal Audit Socket. 2737 [ 5.542435] systemd[1]: Listening on Journal Socket (/dev/log). 2738 [ 5.543551] systemd[1]: Listening on Journal Socket. 2739 [ 5.544909] systemd[1]: Listening on udev Control Socket. 2740 [ 5.545983] systemd[1]: Listening on udev Kernel Socket. 2741 [ 5.551869] systemd[1]: Mounting Huge Pages File System... 2742 [ 5.558599] systemd[1]: Mounting POSIX Message Queue File System... 2743 [ 5.564562] systemd[1]: Mounting NFSD configuration filesystem... 2744 [ 5.571494] systemd[1]: Mounting Kernel Debug File System... 2745 [ 5.572681] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 2746 [ 5.573820] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 2747 [ 5.582872] systemd[1]: Starting Restore / save the current clock... 2748 [ 5.591281] systemd[1]: Starting Set the console keyboard layout... 2749 [ 5.591942] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 2750 [ 5.598892] systemd[1]: Starting Load Kernel Module chromeos_pstore... 2751 [ 5.606654] systemd[1]: Starting Load Kernel Module configfs... 2752 [ 5.614350] systemd[1]: Starting Load Kernel Module drm... 2753 [ 5.623111] systemd[1]: Starting Load Kernel Module efi_pstore... 2754 [ 5.631419] systemd[1]: Starting Load Kernel Module fuse... 2755 [ 5.639431] systemd[1]: Starting Load Kernel Module pstore_blk... 2756 [ 5.647085] systemd[1]: Starting Load Kernel Module pstore_zone... 2757 [ 5.654915] systemd[1]: Starting Load Kernel Module ramoops... 2758 [ 5.663254] systemd[1]: Started Nameserver information manager. 2759 [ 5.664770] systemd[1]: Reached target Preparation for Network. 2760 [ 5.666087] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 2761 [ 5.679719] systemd[1]: Starting Load Kernel Modules... 2762 [ 5.687988] systemd[1]: Starting Remount Root and Kernel File Systems... 2763 [ 5.696136] systemd[1]: Starting Coldplug All udev Devices... 2764 [ 5.711434] systemd[1]: Mounted Huge Pages File System. 2765 [ 5.712532] systemd[1]: Mounted POSIX Message Queue File System. 2766 [ 5.713822] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 2767 [ 5.713874] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 2768 [ 5.715963] systemd[1]: Failed to mount NFSD configuration filesystem. 2769 [ 5.716336] systemd[1]: Dependency failed for NFS Mount Daemon. 2770 [ 5.716464] systemd[1]: Dependency failed for NFS server and services. 2771 [ 5.716594] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 2772 [ 5.716733] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 2773 [ 5.716799] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 2774 [ 5.716861] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 2775 [ 5.716894] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 2776 [ 5.717037] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 2777 [ 5.718124] systemd[1]: Mounted Kernel Debug File System. 2778 [ 5.720789] systemd[1]: Finished Restore / save the current clock. 2779 [ 5.723322] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 2780 [ 5.724584] systemd[1]: Finished Load Kernel Module chromeos_pstore. 2781 [ 5.726949] systemd[1]: modprobe@configfs.service: Deactivated successfully. 2782 [ 5.728465] systemd[1]: Finished Load Kernel Module configfs. 2783 [ 5.730739] systemd[1]: modprobe@drm.service: Deactivated successfully. 2784 [ 5.732189] systemd[1]: Finished Load Kernel Module drm. 2785 [ 5.734356] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 2786 [ 5.735248] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 2787 [ 5.735950] systemd[1]: Finished Load Kernel Module efi_pstore. 2788 [ 5.743452] systemd[1]: modprobe@fuse.service: Deactivated successfully. 2789 [ 5.744772] systemd[1]: Finished Load Kernel Module fuse. 2790 [ 5.748151] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 2791 [ 5.749943] systemd[1]: Finished Load Kernel Module pstore_blk. 2792 [ 5.752231] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 2793 [ 5.754200] systemd[1]: Finished Load Kernel Module pstore_zone. 2794 [ 5.756520] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 2795 [ 5.758095] systemd[1]: Finished Load Kernel Module ramoops. 2796 [ 5.763450] systemd[1]: Finished Load Kernel Modules. 2797 [ 5.766370] systemd[1]: Finished Remount Root and Kernel File Systems. 2798 [ 5.768589] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 2799 [ 5.774330] systemd[1]: Mounting Kernel Configuration File System... 2800 [ 5.775200] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 2801 [ 5.783620] systemd[1]: Starting Load/Save Random Seed... 2802 [ 5.791612] systemd[1]: Starting Apply Kernel Variables... 2803 [ 5.799215] systemd[1]: Starting Create System Users... 2804 [ 5.813047] systemd[1]: Mounted Kernel Configuration File System. 2805 [ 5.871513] systemd[1]: Finished Apply Kernel Variables. 2806 [ 5.900148] systemd[1]: Finished Create System Users. 2807 [ 5.909830] systemd[1]: Starting Create Static Device Nodes in /dev... 2808 [ 5.963331] systemd[1]: Finished Create Static Device Nodes in /dev. 2809 [ 6.004820] systemd[1]: Starting Rule-based Manager for Device Events and Files... 2810 [ 6.008640] systemd[1]: Finished Set the console keyboard layout. 2811 [ 6.010136] systemd[1]: Reached target Preparation for Local File Systems. 2812 [ 6.017941] systemd[1]: Mounting /tmp... 2813 [ 6.030336] systemd[1]: Mounted /tmp. 2814 [ 6.031404] systemd[1]: Reached target Local File Systems. 2815 [ 6.040860] systemd[1]: Starting Armbian leds state... 2816 [ 6.050947] systemd[1]: Starting Armbian ZRAM config... 2817 [ 6.062549] systemd[1]: Starting Set console font and keymap... 2818 [ 6.063435] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 2819 [ 6.063757] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 2820 [ 6.068190] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 2821 [ 6.087450] systemd[1]: Finished Set console font and keymap. 2822 [ 6.134144] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 2823 [ 6.135531] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 2824 [ 6.137662] systemd[1]: Failed to start Armbian leds state. 2825 [ 6.243271] systemd[1]: Finished Coldplug All udev Devices. 2826 [ 6.268275] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 2827 [ 6.321451] systemd[1]: Started Rule-based Manager for Device Events and Files. 2828 [ 6.399318] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 2829 [ 6.400319] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 2830 [ 6.402585] systemd[1]: Failed to start Armbian ZRAM config. 2831 [ 6.436958] systemd[1]: Starting Armbian memory supported logging... 2832 [ 6.525925] urandom_read_iter: 51 callbacks suppressed 2833 [ 6.525957] random: systemd: uninitialized urandom read (16 bytes read) 2834 [ 6.619367] random: systemd: uninitialized urandom read (16 bytes read) 2835 [ 6.619524] random: systemd: uninitialized urandom read (16 bytes read) 2836 [ 6.767198] random: crng init done 2837 [ 6.767233] random: 8 urandom warning(s) missed due to ratelimiting 2838 [ 6.798682] systemd[1]: Finished Load/Save Random Seed. 2839 [ 6.800108] systemd[1]: Condition check resulted in First Boot Complete being skipped. 2840 [ 6.800301] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 2841 [ 6.800484] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 2842 [ 6.820307] systemd[1]: Found device /dev/ttyS0. 2843 [ 7.415765] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 2844 [ 7.451135] systemd[1]: Started ifup for eth0. 2845 [ 7.455837] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 2846 [ 7.464084] systemd[1]: Starting Raise network interfaces... 2847 [ 7.467871] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 2848 [ 7.468865] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 2849 [ 7.971765] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 2850 [ 7.972653] systemd[1]: networking.service: Failed with result 'exit-code'. 2851 [ 7.974369] systemd[1]: Failed to start Raise network interfaces. 2852 [ 10.475090] systemd[1]: Finished Armbian memory supported logging. 2853 [ 10.497465] systemd[1]: Starting Journal Service... 2854 [ 10.752630] systemd[1]: Started Journal Service. 2855 [ 10.802840] systemd-journald[584]: Received client request to flush runtime journal. 2856 2857 ### armbian-release: 2858 2859 # PLEASE DO NOT EDIT THIS FILE 2860 BOARD=pine64 2861 BOARD_NAME="Pine64" 2862 BOARDFAMILY=sun50iw1 2863 BUILD_REPOSITORY_URL=https://github.com/armbian/build 2864 BUILD_REPOSITORY_COMMIT=84940abb 2865 VERSION=22.11.1 2866 LINUXFAMILY=sunxi64 2867 ARCH=arm64 2868 IMAGE_TYPE=stable 2869 BOARD_TYPE=conf 2870 INITRD_ARCH=arm64 2871 KERNEL_IMAGE_TYPE=Image 2872 BRANCH=current 2873 2874 ### boot environment: 2875 2876 verbosity=1 2877 bootlogo=false 2878 console=both 2879 disp_mode=1920x1080p60 2880 overlay_prefix=sunxi64 2881 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 2882 rootfstype=ext4 2883 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 2884 2885 2886 ### lsusb: 2887 2888 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2889 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 2890 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 2891 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2892 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 2893 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 2894 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2895 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 2896 2897 ### lscpu: 2898 2899 Architecture: aarch64 2900 CPU op-mode(s): 32-bit, 64-bit 2901 Byte Order: Little Endian 2902 CPU(s): 4 2903 On-line CPU(s) list: 0-3 2904 Vendor ID: ARM 2905 Model name: Cortex-A53 2906 Model: 4 2907 Thread(s) per core: 1 2908 Core(s) per cluster: 4 2909 Socket(s): - 2910 Cluster(s): 1 2911 Stepping: r0p4 2912 BogoMIPS: 48.00 2913 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2914 NUMA node(s): 1 2915 NUMA node0 CPU(s): 0-3 2916 Vulnerability Itlb multihit: Not affected 2917 Vulnerability L1tf: Not affected 2918 Vulnerability Mds: Not affected 2919 Vulnerability Meltdown: Not affected 2920 Vulnerability Mmio stale data: Not affected 2921 Vulnerability Spec store bypass: Not affected 2922 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 2923 Vulnerability Spectre v2: Not affected 2924 Vulnerability Srbds: Not affected 2925 Vulnerability Tsx async abort: Not affected 2926 2927 ### cpuinfo: 2928 2929 processor : 0 2930 BogoMIPS : 48.00 2931 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2932 CPU implementer : 0x41 2933 CPU architecture: 8 2934 CPU variant : 0x0 2935 CPU part : 0xd03 2936 CPU revision : 4 2937 2938 processor : 1 2939 BogoMIPS : 48.00 2940 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2941 CPU implementer : 0x41 2942 CPU architecture: 8 2943 CPU variant : 0x0 2944 CPU part : 0xd03 2945 CPU revision : 4 2946 2947 processor : 2 2948 BogoMIPS : 48.00 2949 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2950 CPU implementer : 0x41 2951 CPU architecture: 8 2952 CPU variant : 0x0 2953 CPU part : 0xd03 2954 CPU revision : 4 2955 2956 processor : 3 2957 BogoMIPS : 48.00 2958 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 2959 CPU implementer : 0x41 2960 CPU architecture: 8 2961 CPU variant : 0x0 2962 CPU part : 0xd03 2963 CPU revision : 4 2964 2965 2966 ### meminfo: 2967 2968 MemTotal: 2037276 kB 2969 MemFree: 1885780 kB 2970 MemAvailable: 1881352 kB 2971 Buffers: 11772 kB 2972 Cached: 54292 kB 2973 SwapCached: 0 kB 2974 Active: 27796 kB 2975 Inactive: 60192 kB 2976 Active(anon): 412 kB 2977 Inactive(anon): 38068 kB 2978 Active(file): 27384 kB 2979 Inactive(file): 22124 kB 2980 Unevictable: 0 kB 2981 Mlocked: 0 kB 2982 SwapTotal: 0 kB 2983 SwapFree: 0 kB 2984 Dirty: 16 kB 2985 Writeback: 0 kB 2986 AnonPages: 21732 kB 2987 Mapped: 16396 kB 2988 Shmem: 16552 kB 2989 KReclaimable: 9212 kB 2990 Slab: 31852 kB 2991 SReclaimable: 9212 kB 2992 SUnreclaim: 22640 kB 2993 KernelStack: 2384 kB 2994 PageTables: 2032 kB 2995 NFS_Unstable: 0 kB 2996 Bounce: 0 kB 2997 WritebackTmp: 0 kB 2998 CommitLimit: 1018636 kB 2999 Committed_AS: 69264 kB 3000 VmallocTotal: 133143592960 kB 3001 VmallocUsed: 10324 kB 3002 VmallocChunk: 0 kB 3003 Percpu: 1072 kB 3004 AnonHugePages: 0 kB 3005 ShmemHugePages: 0 kB 3006 ShmemPmdMapped: 0 kB 3007 FileHugePages: 0 kB 3008 FilePmdMapped: 0 kB 3009 CmaTotal: 131072 kB 3010 CmaFree: 130304 kB 3011 HugePages_Total: 0 3012 HugePages_Free: 0 3013 HugePages_Rsvd: 0 3014 HugePages_Surp: 0 3015 Hugepagesize: 2048 kB 3016 Hugetlb: 0 kB 3017 3018 ### virtual memory: 3019 3020 vm.admin_reserve_kbytes = 8192 3021 vm.compaction_proactiveness = 20 3022 vm.compact_unevictable_allowed = 1 3023 vm.dirty_background_bytes = 0 3024 vm.dirty_background_ratio = 10 3025 vm.dirty_bytes = 0 3026 vm.dirty_expire_centisecs = 3000 3027 vm.dirty_ratio = 20 3028 vm.dirtytime_expire_seconds = 43200 3029 vm.dirty_writeback_centisecs = 500 3030 vm.extfrag_threshold = 500 3031 vm.hugetlb_shm_group = 0 3032 vm.laptop_mode = 0 3033 vm.legacy_va_layout = 0 3034 vm.lowmem_reserve_ratio = 256 256 32 0 3035 vm.max_map_count = 65530 3036 vm.min_free_kbytes = 22528 3037 vm.min_slab_ratio = 5 3038 vm.min_unmapped_ratio = 1 3039 vm.mmap_min_addr = 32768 3040 vm.mmap_rnd_bits = 18 3041 vm.mmap_rnd_compat_bits = 11 3042 vm.nr_hugepages = 0 3043 vm.nr_hugepages_mempolicy = 0 3044 vm.nr_overcommit_hugepages = 0 3045 vm.numa_stat = 1 3046 vm.numa_zonelist_order = Node 3047 vm.oom_dump_tasks = 1 3048 vm.oom_kill_allocating_task = 0 3049 vm.overcommit_kbytes = 0 3050 vm.overcommit_memory = 0 3051 vm.overcommit_ratio = 50 3052 vm.page-cluster = 3 3053 vm.page_lock_unfairness = 5 3054 vm.panic_on_oom = 0 3055 vm.percpu_pagelist_high_fraction = 0 3056 vm.stat_interval = 1 3057 vm.swappiness = 100 3058 vm.user_reserve_kbytes = 63000 3059 vm.vfs_cache_pressure = 100 3060 vm.watermark_boost_factor = 15000 3061 vm.watermark_scale_factor = 10 3062 vm.zone_reclaim_mode = 0 3063 3064 ### ip addr: 3065 3066 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 3067 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3068 inet XXX.XXX.0.1/8 scope host lo 3069 valid_lft forever preferred_lft forever 3070 inet6 ::1/128 scope host 3071 valid_lft forever preferred_lft forever 3072 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 3073 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 3074 3075 ### partitions: 3076 3077 major minor #blocks name 3078 3079 179 0 31260672 mmcblk0 3080 179 1 30928896 mmcblk0p1 3081 8 0 117220824 sda 3082 8 1 117218304 sda1 3083 3084 ### df: 3085 3086 tmpfs 199M 3.1M 196M 2% /run 3087 /dev/sda1 110G 29G 76G 28% / 3088 tmpfs 995M 0 995M 0% /dev/shm 3089 tmpfs 5.0M 0 5.0M 0% /run/lock 3090 tmpfs 995M 4.0K 995M 1% /tmp 3091 3092 ### lsblk: 3093 3094 NAME FSTYPE SIZE MOUNTPOINT UUID 3095 sda 111.8G 3096 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 3097 mmcblk0 29.8G 3098 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 3099 3100 ### zramctl: 3101 3102 3103 3104 ### mtab: 3105 3106 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3107 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3108 3109 ### mmc0:0001 info: 3110 3111 fwrev: 0x0 3112 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 3113 cid: 1b534d454231515430bc836120012941 3114 rca: 0x0001 3115 csd: 400e00325b590000ee7f7f800a404055 3116 manfid: 0x00001b 3117 ocr: 0x00200000 3118 preferred_erase_size: 4194304 3119 type: SD 3120 hwrev: 0x3 3121 date: 09/2018 3122 dsr: 0x404 3123 erase_size: 512 3124 oemid: 0x534d 3125 serial: 0xbc836120 3126 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 3127 scr: 02b5800200000000 3128 name: EB1QT 3129 3130 ### Boot system health: 3131 3132 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 3133 22:41:39: --- 0.15 55% 28% 20% 0% 5% 0% 38.6 °C 3134 22:41:40: --- 0.15 82% 13% 16% 1% 48% 2% 38.6 °C 3135 22:41:40: --- 0.78 85% 16% 29% 0% 37% 1% 35.3 °C 3136 22:41:40: --- 0.78 35% 11% 5% 0% 17% 0% 35.3 °C 3137 22:41:41: --- 0.78 37% 7% 0% 0% 29% 0% 33.3 °C 3138 3139 ### No more available zram devices () 3140 3141 Fri Dec 9 11:10:51 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 3142 3143 ### dmesg: 3144 3145 [ 0.000961] pid_max: default: 32768 minimum: 301 3146 [ 0.001049] LSM: Security Framework initializing 3147 [ 0.001078] Yama: becoming mindful. 3148 [ 0.001175] AppArmor: AppArmor initialized 3149 [ 0.001289] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3150 [ 0.001319] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3151 [ 0.003382] rcu: Hierarchical SRCU implementation. 3152 [ 0.004911] smp: Bringing up secondary CPUs ... 3153 [ 0.006154] Detected VIPT I-cache on CPU1 3154 [ 0.006223] arch_timer: CPU1: Trapping CNTVCT access 3155 [ 0.006241] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 3156 [ 0.007053] Detected VIPT I-cache on CPU2 3157 [ 0.007088] arch_timer: CPU2: Trapping CNTVCT access 3158 [ 0.007099] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 3159 [ 0.007827] Detected VIPT I-cache on CPU3 3160 [ 0.007861] arch_timer: CPU3: Trapping CNTVCT access 3161 [ 0.007872] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 3162 [ 0.007963] smp: Brought up 1 node, 4 CPUs 3163 [ 0.007979] SMP: Total of 4 processors activated. 3164 [ 0.007987] CPU features: detected: 32-bit EL0 Support 3165 [ 0.007992] CPU features: detected: CRC32 instructions 3166 [ 0.022846] CPU: All CPU(s) started at EL2 3167 [ 0.022879] alternatives: patching kernel code 3168 [ 0.024705] devtmpfs: initialized 3169 [ 0.032765] Registered cp15_barrier emulation handler 3170 [ 0.032799] Registered setend emulation handler 3171 [ 0.032982] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 3172 [ 0.033006] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 3173 [ 0.038448] pinctrl core: initialized pinctrl subsystem 3174 [ 0.040128] NET: Registered PF_NETLINK/PF_ROUTE protocol family 3175 [ 0.041913] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 3176 [ 0.042090] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 3177 [ 0.042269] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 3178 [ 0.042378] audit: initializing netlink subsys (disabled) 3179 [ 0.042595] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 3180 [ 0.043204] thermal_sys: Registered thermal governor 'fair_share' 3181 [ 0.043212] thermal_sys: Registered thermal governor 'bang_bang' 3182 [ 0.043217] thermal_sys: Registered thermal governor 'step_wise' 3183 [ 0.043223] thermal_sys: Registered thermal governor 'user_space' 3184 [ 0.043686] cpuidle: using governor menu 3185 [ 0.043945] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 3186 [ 0.044054] ASID allocator initialised with 65536 entries 3187 [ 0.044251] Serial: AMBA PL011 UART driver 3188 [ 0.060244] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 3189 [ 0.061780] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 3190 [ 0.069851] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 3191 [ 0.069875] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 3192 [ 0.069883] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 3193 [ 0.069891] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 3194 [ 0.072097] cryptd: max_cpu_qlen set to 1000 3195 [ 0.140256] raid6: neonx8 gen() 1461 MB/s 3196 [ 0.208322] raid6: neonx8 xor() 1092 MB/s 3197 [ 0.276417] raid6: neonx4 gen() 1494 MB/s 3198 [ 0.344484] raid6: neonx4 xor() 1081 MB/s 3199 [ 0.412569] raid6: neonx2 gen() 1411 MB/s 3200 [ 0.480652] raid6: neonx2 xor() 993 MB/s 3201 [ 0.548727] raid6: neonx1 gen() 1232 MB/s 3202 [ 0.616803] raid6: neonx1 xor() 848 MB/s 3203 [ 0.684883] raid6: int64x8 gen() 1013 MB/s 3204 [ 0.752964] raid6: int64x8 xor() 533 MB/s 3205 [ 0.821043] raid6: int64x4 gen() 1126 MB/s 3206 [ 0.889139] raid6: int64x4 xor() 573 MB/s 3207 [ 0.957232] raid6: int64x2 gen() 962 MB/s 3208 [ 1.025317] raid6: int64x2 xor() 507 MB/s 3209 [ 1.093386] raid6: int64x1 gen() 716 MB/s 3210 [ 1.161495] raid6: int64x1 xor() 373 MB/s 3211 [ 1.161502] raid6: using algorithm neonx4 gen() 1494 MB/s 3212 [ 1.161508] raid6: .... xor() 1081 MB/s, rmw enabled 3213 [ 1.161514] raid6: using neon recovery algorithm 3214 [ 1.162165] iommu: Default domain type: Translated 3215 [ 1.162175] iommu: DMA domain TLB invalidation policy: strict mode 3216 [ 1.162498] SCSI subsystem initialized 3217 [ 1.162723] usbcore: registered new interface driver usbfs 3218 [ 1.162773] usbcore: registered new interface driver hub 3219 [ 1.162808] usbcore: registered new device driver usb 3220 [ 1.163144] pps_core: LinuxPPS API ver. 1 registered 3221 [ 1.163151] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 3222 [ 1.163171] PTP clock support registered 3223 [ 1.163645] ARM FF-A: FFA_VERSION returned not supported 3224 [ 1.164038] Advanced Linux Sound Architecture Driver Initialized. 3225 [ 1.164811] NetLabel: Initializing 3226 [ 1.164818] NetLabel: domain hash size = 128 3227 [ 1.164824] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 3228 [ 1.164901] NetLabel: unlabeled traffic allowed by default 3229 [ 1.165402] clocksource: Switched to clocksource arch_sys_counter 3230 [ 1.165636] VFS: Disk quotas dquot_6.6.0 3231 [ 1.165701] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 3232 [ 1.166360] AppArmor: AppArmor Filesystem Enabled 3233 [ 1.173672] NET: Registered PF_INET protocol family 3234 [ 1.173960] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 3235 [ 1.175335] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 3236 [ 1.175380] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 3237 [ 1.175398] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 3238 [ 1.175557] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 3239 [ 1.175880] TCP: Hash tables configured (established 16384 bind 16384) 3240 [ 1.176046] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 3241 [ 1.176116] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 3242 [ 1.176335] NET: Registered PF_UNIX/PF_LOCAL protocol family 3243 [ 1.176930] Trying to unpack rootfs image as initramfs... 3244 [ 1.191944] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 3245 [ 1.199141] Initialise system trusted keyrings 3246 [ 1.199227] Key type blacklist registered 3247 [ 1.199443] workingset: timestamp_bits=44 max_order=19 bucket_order=0 3248 [ 1.205913] zbud: loaded 3249 [ 1.207637] squashfs: version 4.0 (2009/01/31) Phillip Lougher 3250 [ 1.210199] integrity: Platform Keyring initialized 3251 [ 1.263942] xor: automatically using best checksumming function 32regs 3252 [ 1.263971] async_tx: api initialized (async) 3253 [ 1.264004] Key type asymmetric registered 3254 [ 1.264012] Asymmetric key parser 'x509' registered 3255 [ 1.264144] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 3256 [ 1.264322] io scheduler mq-deadline registered 3257 [ 1.264331] io scheduler kyber registered 3258 [ 1.264554] io scheduler bfq registered 3259 [ 1.268255] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 3260 [ 1.278295] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 3261 [ 1.290093] loop: module loaded 3262 [ 1.292585] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 3263 [ 1.292620] ehci-platform: EHCI generic platform driver 3264 [ 1.292776] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 3265 [ 1.292791] ohci-platform: OHCI generic platform driver 3266 [ 1.293287] usbcore: registered new interface driver usb-storage 3267 [ 1.293879] mousedev: PS/2 mouse device common for all mice 3268 [ 1.294991] sun6i-rtc 1f00000.rtc: registered as rtc0 3269 [ 1.295032] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-09T22:10:41 UTC (1670623841) 3270 [ 1.295156] sun6i-rtc 1f00000.rtc: RTC enabled 3271 [ 1.295261] i2c_dev: i2c /dev entries driver 3272 [ 1.296072] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 3273 [ 1.298213] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 3274 [ 1.298742] sdhci: Secure Digital Host Controller Interface driver 3275 [ 1.298751] sdhci: Copyright(c) Pierre Ossman 3276 [ 1.298780] Synopsys Designware Multimedia Card Interface Driver 3277 [ 1.299548] sdhci-pltfm: SDHCI platform and OF driver helper 3278 [ 1.300748] ledtrig-cpu: registered to indicate activity on CPUs 3279 [ 1.301272] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 3280 [ 1.301628] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 3281 [ 1.301942] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3282 [ 1.302096] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3283 [ 1.302212] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3284 [ 1.302331] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 3285 [ 1.302430] sun8i-ce 1c15000.crypto: Register cbc(aes) 3286 [ 1.302622] sun8i-ce 1c15000.crypto: Register ecb(aes) 3287 [ 1.302765] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 3288 [ 1.302903] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 3289 [ 1.303035] sun8i-ce 1c15000.crypto: Register md5 3290 [ 1.303181] sun8i-ce 1c15000.crypto: Register sha1 3291 [ 1.303312] sun8i-ce 1c15000.crypto: Register sha224 3292 [ 1.303450] sun8i-ce 1c15000.crypto: Register sha256 3293 [ 1.303582] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 3294 [ 1.303592] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 3295 [ 1.303601] sun8i-ce 1c15000.crypto: Register stdrng 3296 [ 1.303762] sun8i-ce 1c15000.crypto: TRNG not supported 3297 [ 1.303772] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 3298 [ 1.304346] hid: raw HID events driver (C) Jiri Kosina 3299 [ 1.304506] usbcore: registered new interface driver usbhid 3300 [ 1.304515] usbhid: USB HID core driver 3301 [ 1.310770] NET: Registered PF_INET6 protocol family 3302 [ 1.956025] Freeing initrd memory: 12684K 3303 [ 1.989310] Segment Routing with IPv6 3304 [ 1.989432] In-situ OAM (IOAM) with IPv6 3305 [ 1.989537] NET: Registered PF_PACKET protocol family 3306 [ 1.989671] 8021q: 802.1Q VLAN Support v1.8 3307 [ 1.989840] 9pnet: Installing 9P2000 support 3308 [ 1.989930] Key type dns_resolver registered 3309 [ 1.990452] registered taskstats version 1 3310 [ 1.990470] Loading compiled-in X.509 certificates 3311 [ 1.994776] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 3312 [ 1.999127] zswap: loaded using pool zstd/z3fold 3313 [ 1.999894] Key type ._fscrypt registered 3314 [ 1.999903] Key type .fscrypt registered 3315 [ 1.999908] Key type fscrypt-provisioning registered 3316 [ 2.001080] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 3317 [ 2.017042] Key type encrypted registered 3318 [ 2.017078] AppArmor: AppArmor sha1 policy hashing enabled 3319 [ 2.017123] ima: No TPM chip found, activating TPM-bypass! 3320 [ 2.017162] ima: Allocated hash algorithm: sha1 3321 [ 2.017199] ima: No architecture policies found 3322 [ 2.017253] evm: Initialising EVM extended attributes: 3323 [ 2.017258] evm: security.selinux 3324 [ 2.017263] evm: security.SMACK64 3325 [ 2.017268] evm: security.SMACK64EXEC 3326 [ 2.017272] evm: security.SMACK64TRANSMUTE 3327 [ 2.017277] evm: security.SMACK64MMAP 3328 [ 2.017281] evm: security.apparmor 3329 [ 2.017286] evm: security.ima 3330 [ 2.017290] evm: security.capability 3331 [ 2.017295] evm: HMAC attrs: 0x1 3332 [ 2.030161] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 3333 [ 2.030249] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 3334 [ 2.031020] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 3335 [ 2.031108] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 3336 [ 2.031972] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 3337 [ 2.032376] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 3338 [ 2.034453] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 3339 [ 2.037470] vcc-3v3: supplied by regulator-dummy 3340 [ 2.037986] vdd-cpux: supplied by regulator-dummy 3341 [ 2.038636] dcdc4: supplied by regulator-dummy 3342 [ 2.038825] vcc-dram: supplied by regulator-dummy 3343 [ 2.039282] vdd-sys: supplied by regulator-dummy 3344 [ 2.039806] vcc-phy: supplied by regulator-dummy 3345 [ 2.040176] aldo1: supplied by regulator-dummy 3346 [ 2.040354] vcc-pl: supplied by regulator-dummy 3347 [ 2.040794] vcc-pll-avcc: supplied by regulator-dummy 3348 [ 2.041439] vcc-hdmi: supplied by regulator-dummy 3349 [ 2.041809] vcc-mipi: supplied by regulator-dummy 3350 [ 2.042175] dldo3: supplied by regulator-dummy 3351 [ 2.042558] vcc-wifi: supplied by regulator-dummy 3352 [ 2.042930] cpvdd: supplied by regulator-dummy 3353 [ 2.043293] eldo2: supplied by regulator-dummy 3354 [ 2.043682] eldo3: supplied by regulator-dummy 3355 [ 2.044050] vcc-1v2-hsic: supplied by regulator-dummy 3356 [ 2.044245] vdd-cpus: supplied by regulator-dummy 3357 [ 2.044680] vcc-rtc: supplied by regulator-dummy 3358 [ 2.045100] ldo-io0: supplied by regulator-dummy 3359 [ 2.045541] ldo-io1: supplied by regulator-dummy 3360 [ 2.045666] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 3361 [ 2.050601] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 3362 [ 2.051007] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 3363 [ 2.051577] printk: console [ttyS0] disabled 3364 [ 2.051665] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 3365 [ 2.051872] printk: console [ttyS0] enabled 3366 [ 2.052561] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 3367 [ 2.053041] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 3368 [ 2.053190] serial serial0: tty port ttyS1 registered 3369 [ 2.083829] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 3370 [ 2.085658] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 3371 [ 2.086184] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 3372 [ 2.086203] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 3373 [ 2.086439] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 3374 [ 2.087576] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 3375 [ 2.088225] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 3376 [ 2.088595] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 3377 [ 2.089281] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 3378 [ 2.089363] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 3379 [ 2.090107] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 3380 [ 2.090746] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 3381 [ 2.091506] ehci-platform 1c1a000.usb: EHCI Host Controller 3382 [ 2.091537] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 3383 [ 2.091683] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 3384 [ 2.105401] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 3385 [ 2.105770] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 3386 [ 2.105785] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3387 [ 2.105797] usb usb1: Product: EHCI Host Controller 3388 [ 2.105806] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 3389 [ 2.105815] usb usb1: SerialNumber: 1c1a000.usb 3390 [ 2.106366] hub 1-0:1.0: USB hub found 3391 [ 2.106416] hub 1-0:1.0: 1 port detected 3392 [ 2.107429] ehci-platform 1c1b000.usb: EHCI Host Controller 3393 [ 2.107462] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 3394 [ 2.107597] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 3395 [ 2.121411] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 3396 [ 2.121744] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 3397 [ 2.121759] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3398 [ 2.121771] usb usb2: Product: EHCI Host Controller 3399 [ 2.121780] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 3400 [ 2.121790] usb usb2: SerialNumber: 1c1b000.usb 3401 [ 2.122275] hub 2-0:1.0: USB hub found 3402 [ 2.122323] hub 2-0:1.0: 1 port detected 3403 [ 2.297505] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 3404 [ 2.297539] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 3405 [ 2.297677] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 3406 [ 2.365448] usb 1-1: new high-speed USB device number 2 using ehci-platform 3407 [ 2.365749] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 3408 [ 2.365766] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3409 [ 2.365777] usb usb3: Product: Generic Platform OHCI controller 3410 [ 2.365787] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 3411 [ 2.365797] usb usb3: SerialNumber: 1c1a400.usb 3412 [ 2.366312] hub 3-0:1.0: USB hub found 3413 [ 2.366362] hub 3-0:1.0: 1 port detected 3414 [ 2.367363] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 3415 [ 2.367395] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 3416 [ 2.367525] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 3417 [ 2.377409] usb 2-1: new high-speed USB device number 2 using ehci-platform 3418 [ 2.433753] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 3419 [ 2.433768] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3420 [ 2.433780] usb usb4: Product: Generic Platform OHCI controller 3421 [ 2.433790] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 3422 [ 2.433799] usb usb4: SerialNumber: 1c1b400.usb 3423 [ 2.434305] hub 4-0:1.0: USB hub found 3424 [ 2.434351] hub 4-0:1.0: 1 port detected 3425 [ 2.435414] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 3426 [ 2.435571] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 3427 [ 2.505675] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 3428 [ 2.505706] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 3429 [ 2.505975] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 3430 [ 2.505990] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 3431 [ 2.506002] usb usb5: Product: MUSB HDRC host driver 3432 [ 2.506011] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 3433 [ 2.506020] usb usb5: SerialNumber: musb-hdrc.4.auto 3434 [ 2.506564] hub 5-0:1.0: USB hub found 3435 [ 2.506619] hub 5-0:1.0: 1 port detected 3436 [ 2.510044] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 3437 [ 2.510109] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 3438 [ 2.511217] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 3439 [ 2.511235] sunxi-mmc 1c0f000.mmc: Got CD GPIO 3440 [ 2.511391] of_cfs_init 3441 [ 2.511556] of_cfs_init: OK 3442 [ 2.511949] ALSA device list: 3443 [ 2.511956] No soundcards found. 3444 [ 2.527356] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 3445 [ 2.527374] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 3446 [ 2.527386] usb 1-1: SerialNumber: 20181120 3447 [ 2.528351] usb-storage 1-1:1.0: USB Mass Storage device detected 3448 [ 2.528902] scsi host0: usb-storage 1-1:1.0 3449 [ 2.534454] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 3450 [ 2.536517] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 3451 [ 2.536533] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 3452 [ 2.536545] usb 2-1: Product: USB2.1 Hub 3453 [ 2.536554] usb 2-1: Manufacturer: GenesysLogic 3454 [ 2.536659] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 3455 [ 2.537474] hub 2-1:1.0: USB hub found 3456 [ 2.537902] hub 2-1:1.0: 4 ports detected 3457 [ 2.538633] Freeing unused kernel memory: 2496K 3458 [ 2.538772] Run /init as init process 3459 [ 2.538780] with arguments: 3460 [ 2.538787] /init 3461 [ 2.538792] with environment: 3462 [ 2.538797] HOME=/ 3463 [ 2.538803] TERM=linux 3464 [ 2.538808] ubootpart=ea5e158f-01 3465 [ 2.538814] cgroup_enable=memory 3466 [ 2.573473] mmc0: new high speed SDHC card at address 0001 3467 [ 2.574613] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 3468 [ 2.577205] mmcblk0: p1 3469 [ 2.853441] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 3470 [ 3.035518] usbcore: registered new interface driver uas 3471 [ 3.053085] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 3472 [ 3.060429] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 3473 [ 3.060745] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 3474 [ 3.060759] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 3475 [ 3.061055] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 3476 [ 3.061330] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 3477 [ 3.061373] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 3478 [ 3.062494] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 3479 [ 3.062526] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 3480 [ 3.062535] dwmac-sun8i 1c30000.ethernet: COE Type 2 3481 [ 3.062547] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 3482 [ 3.062556] dwmac-sun8i 1c30000.ethernet: Normal descriptors 3483 [ 3.062564] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 3484 [ 3.087854] axp20x-gpio axp20x-gpio: DMA mask not set 3485 [ 3.095679] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 3486 [ 3.202316] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 3487 [ 3.202351] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 3488 [ 3.202363] usb 2-1.1: SerialNumber: AA5FCF90 3489 [ 3.562441] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 3490 [ 3.563055] sd 0:0:0:0: Attached scsi generic sg0 type 0 3491 [ 3.563937] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 3492 [ 3.565187] sd 0:0:0:0: [sda] Write Protect is off 3493 [ 3.565216] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 3494 [ 3.566698] sd 0:0:0:0: [sda] No Caching mode page found 3495 [ 3.566729] sd 0:0:0:0: [sda] Assuming drive cache: write through 3496 [ 3.572533] sda: sda1 3497 [ 3.576019] sd 0:0:0:0: [sda] Attached SCSI disk 3498 [ 3.941793] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 3499 [ 4.534335] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 3500 [ 4.535051] systemd[1]: Detected architecture arm64. 3501 [ 4.537814] systemd[1]: Hostname set to <pine64>. 3502 [ 4.647470] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 3503 [ 5.519748] systemd[1]: Queued start job for default target Graphical Interface. 3504 [ 5.521821] random: systemd: uninitialized urandom read (16 bytes read) 3505 [ 5.561939] systemd[1]: Created slice Slice /system/modprobe. 3506 [ 5.562744] random: systemd: uninitialized urandom read (16 bytes read) 3507 [ 5.565808] systemd[1]: Created slice Slice /system/serial-getty. 3508 [ 5.566250] random: systemd: uninitialized urandom read (16 bytes read) 3509 [ 5.568563] systemd[1]: Created slice User and Session Slice. 3510 [ 5.569047] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 3511 [ 5.569631] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 3512 [ 5.571081] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 3513 [ 5.571652] systemd[1]: Reached target Local Encrypted Volumes. 3514 [ 5.572432] systemd[1]: Reached target Slice Units. 3515 [ 5.572777] systemd[1]: Reached target Swaps. 3516 [ 5.573074] systemd[1]: Reached target System Time Set. 3517 [ 5.573615] systemd[1]: Reached target Local Verity Protected Volumes. 3518 [ 5.595826] systemd[1]: Listening on RPCbind Server Activation Socket. 3519 [ 5.598000] systemd[1]: Listening on Syslog Socket. 3520 [ 5.599199] systemd[1]: Listening on fsck to fsckd communication Socket. 3521 [ 5.599868] systemd[1]: Listening on initctl Compatibility Named Pipe. 3522 [ 5.601548] systemd[1]: Listening on Journal Audit Socket. 3523 [ 5.602604] systemd[1]: Listening on Journal Socket (/dev/log). 3524 [ 5.603689] systemd[1]: Listening on Journal Socket. 3525 [ 5.605033] systemd[1]: Listening on udev Control Socket. 3526 [ 5.606101] systemd[1]: Listening on udev Kernel Socket. 3527 [ 5.612010] systemd[1]: Mounting Huge Pages File System... 3528 [ 5.618862] systemd[1]: Mounting POSIX Message Queue File System... 3529 [ 5.624862] systemd[1]: Mounting NFSD configuration filesystem... 3530 [ 5.631727] systemd[1]: Mounting Kernel Debug File System... 3531 [ 5.632872] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 3532 [ 5.633936] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 3533 [ 5.642680] systemd[1]: Starting Restore / save the current clock... 3534 [ 5.651075] systemd[1]: Starting Set the console keyboard layout... 3535 [ 5.651713] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 3536 [ 5.658803] systemd[1]: Starting Load Kernel Module chromeos_pstore... 3537 [ 5.666580] systemd[1]: Starting Load Kernel Module configfs... 3538 [ 5.674433] systemd[1]: Starting Load Kernel Module drm... 3539 [ 5.683124] systemd[1]: Starting Load Kernel Module efi_pstore... 3540 [ 5.690801] systemd[1]: Starting Load Kernel Module fuse... 3541 [ 5.699057] systemd[1]: Starting Load Kernel Module pstore_blk... 3542 [ 5.707156] systemd[1]: Starting Load Kernel Module pstore_zone... 3543 [ 5.715305] systemd[1]: Starting Load Kernel Module ramoops... 3544 [ 5.723427] systemd[1]: Started Nameserver information manager. 3545 [ 5.725374] systemd[1]: Reached target Preparation for Network. 3546 [ 5.726945] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 3547 [ 5.740081] systemd[1]: Starting Load Kernel Modules... 3548 [ 5.748382] systemd[1]: Starting Remount Root and Kernel File Systems... 3549 [ 5.756653] systemd[1]: Starting Coldplug All udev Devices... 3550 [ 5.772040] systemd[1]: Mounted Huge Pages File System. 3551 [ 5.773571] systemd[1]: Mounted POSIX Message Queue File System. 3552 [ 5.774663] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 3553 [ 5.774709] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 3554 [ 5.776644] systemd[1]: Failed to mount NFSD configuration filesystem. 3555 [ 5.776986] systemd[1]: Dependency failed for NFS server and services. 3556 [ 5.777130] systemd[1]: Dependency failed for NFS Mount Daemon. 3557 [ 5.777289] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 3558 [ 5.777364] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 3559 [ 5.777707] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 3560 [ 5.777769] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 3561 [ 5.777815] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 3562 [ 5.777965] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 3563 [ 5.779146] systemd[1]: Mounted Kernel Debug File System. 3564 [ 5.782216] systemd[1]: Finished Restore / save the current clock. 3565 [ 5.784571] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 3566 [ 5.786149] systemd[1]: Finished Load Kernel Module chromeos_pstore. 3567 [ 5.788554] systemd[1]: modprobe@configfs.service: Deactivated successfully. 3568 [ 5.790159] systemd[1]: Finished Load Kernel Module configfs. 3569 [ 5.792370] systemd[1]: modprobe@drm.service: Deactivated successfully. 3570 [ 5.793826] systemd[1]: Finished Load Kernel Module drm. 3571 [ 5.793936] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 3572 [ 5.800680] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 3573 [ 5.802129] systemd[1]: Finished Load Kernel Module efi_pstore. 3574 [ 5.804313] systemd[1]: modprobe@fuse.service: Deactivated successfully. 3575 [ 5.805798] systemd[1]: Finished Load Kernel Module fuse. 3576 [ 5.807983] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 3577 [ 5.809338] systemd[1]: Finished Load Kernel Module pstore_blk. 3578 [ 5.811537] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 3579 [ 5.813044] systemd[1]: Finished Load Kernel Module pstore_zone. 3580 [ 5.815232] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 3581 [ 5.816651] systemd[1]: Finished Load Kernel Module ramoops. 3582 [ 5.822188] systemd[1]: Finished Load Kernel Modules. 3583 [ 5.825012] systemd[1]: Finished Remount Root and Kernel File Systems. 3584 [ 5.828361] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 3585 [ 5.834192] systemd[1]: Mounting Kernel Configuration File System... 3586 [ 5.835047] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 3587 [ 5.841886] systemd[1]: Starting Load/Save Random Seed... 3588 [ 5.850972] systemd[1]: Starting Apply Kernel Variables... 3589 [ 5.862584] systemd[1]: Starting Create System Users... 3590 [ 5.881556] systemd[1]: Mounted Kernel Configuration File System. 3591 [ 5.953137] systemd[1]: Finished Apply Kernel Variables. 3592 [ 5.956492] systemd[1]: Finished Create System Users. 3593 [ 5.966766] systemd[1]: Starting Create Static Device Nodes in /dev... 3594 [ 6.019115] systemd[1]: Finished Create Static Device Nodes in /dev. 3595 [ 6.058919] systemd[1]: Starting Rule-based Manager for Device Events and Files... 3596 [ 6.062336] systemd[1]: Finished Set the console keyboard layout. 3597 [ 6.063631] systemd[1]: Reached target Preparation for Local File Systems. 3598 [ 6.073804] systemd[1]: Mounting /tmp... 3599 [ 6.086424] systemd[1]: Mounted /tmp. 3600 [ 6.087442] systemd[1]: Reached target Local File Systems. 3601 [ 6.094717] systemd[1]: Starting Armbian leds state... 3602 [ 6.103067] systemd[1]: Starting Armbian ZRAM config... 3603 [ 6.114026] systemd[1]: Starting Set console font and keymap... 3604 [ 6.114912] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 3605 [ 6.115266] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 3606 [ 6.123357] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 3607 [ 6.142276] systemd[1]: Finished Set console font and keymap. 3608 [ 6.186192] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 3609 [ 6.187149] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 3610 [ 6.188916] systemd[1]: Failed to start Armbian leds state. 3611 [ 6.295776] systemd[1]: Finished Coldplug All udev Devices. 3612 [ 6.324488] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 3613 [ 6.355988] systemd[1]: Started Rule-based Manager for Device Events and Files. 3614 [ 6.444119] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 3615 [ 6.445085] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 3616 [ 6.447079] systemd[1]: Failed to start Armbian ZRAM config. 3617 [ 6.487209] systemd[1]: Starting Armbian memory supported logging... 3618 [ 6.595495] urandom_read_iter: 51 callbacks suppressed 3619 [ 6.595525] random: systemd: uninitialized urandom read (16 bytes read) 3620 [ 6.686377] random: systemd: uninitialized urandom read (16 bytes read) 3621 [ 6.686491] random: systemd: uninitialized urandom read (16 bytes read) 3622 [ 6.793477] random: crng init done 3623 [ 6.793506] random: 8 urandom warning(s) missed due to ratelimiting 3624 [ 6.807282] systemd[1]: Finished Load/Save Random Seed. 3625 [ 6.809192] systemd[1]: Condition check resulted in First Boot Complete being skipped. 3626 [ 6.809622] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 3627 [ 6.809876] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 3628 [ 6.929530] systemd[1]: Found device /dev/ttyS0. 3629 [ 7.481698] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 3630 [ 7.507475] systemd[1]: Started ifup for eth0. 3631 [ 7.513528] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 3632 [ 7.522254] systemd[1]: Starting Raise network interfaces... 3633 [ 7.524346] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 3634 [ 7.525658] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 3635 [ 8.061538] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 3636 [ 8.062437] systemd[1]: networking.service: Failed with result 'exit-code'. 3637 [ 8.064099] systemd[1]: Failed to start Raise network interfaces. 3638 [ 10.623768] systemd[1]: Finished Armbian memory supported logging. 3639 [ 10.685675] systemd[1]: Starting Journal Service... 3640 [ 10.940110] systemd[1]: Started Journal Service. 3641 [ 10.996353] systemd-journald[586]: Received client request to flush runtime journal. 3642 3643 ### armbian-release: 3644 3645 # PLEASE DO NOT EDIT THIS FILE 3646 BOARD=pine64 3647 BOARD_NAME="Pine64" 3648 BOARDFAMILY=sun50iw1 3649 BUILD_REPOSITORY_URL=https://github.com/armbian/build 3650 BUILD_REPOSITORY_COMMIT=84940abb 3651 VERSION=22.11.1 3652 LINUXFAMILY=sunxi64 3653 ARCH=arm64 3654 IMAGE_TYPE=stable 3655 BOARD_TYPE=conf 3656 INITRD_ARCH=arm64 3657 KERNEL_IMAGE_TYPE=Image 3658 BRANCH=current 3659 3660 ### boot environment: 3661 3662 verbosity=1 3663 bootlogo=false 3664 console=both 3665 disp_mode=1920x1080p60 3666 overlay_prefix=sun50i-a64 3667 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 3668 rootfstype=ext4 3669 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 3670 3671 ### lsusb: 3672 3673 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 3674 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 3675 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 3676 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 3677 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 3678 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 3679 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 3680 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 3681 3682 ### lscpu: 3683 3684 Architecture: aarch64 3685 CPU op-mode(s): 32-bit, 64-bit 3686 Byte Order: Little Endian 3687 CPU(s): 4 3688 On-line CPU(s) list: 0-3 3689 Vendor ID: ARM 3690 Model name: Cortex-A53 3691 Model: 4 3692 Thread(s) per core: 1 3693 Core(s) per cluster: 4 3694 Socket(s): - 3695 Cluster(s): 1 3696 Stepping: r0p4 3697 BogoMIPS: 48.00 3698 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3699 NUMA node(s): 1 3700 NUMA node0 CPU(s): 0-3 3701 Vulnerability Itlb multihit: Not affected 3702 Vulnerability L1tf: Not affected 3703 Vulnerability Mds: Not affected 3704 Vulnerability Meltdown: Not affected 3705 Vulnerability Mmio stale data: Not affected 3706 Vulnerability Spec store bypass: Not affected 3707 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 3708 Vulnerability Spectre v2: Not affected 3709 Vulnerability Srbds: Not affected 3710 Vulnerability Tsx async abort: Not affected 3711 3712 ### cpuinfo: 3713 3714 processor : 0 3715 BogoMIPS : 48.00 3716 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3717 CPU implementer : 0x41 3718 CPU architecture: 8 3719 CPU variant : 0x0 3720 CPU part : 0xd03 3721 CPU revision : 4 3722 3723 processor : 1 3724 BogoMIPS : 48.00 3725 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3726 CPU implementer : 0x41 3727 CPU architecture: 8 3728 CPU variant : 0x0 3729 CPU part : 0xd03 3730 CPU revision : 4 3731 3732 processor : 2 3733 BogoMIPS : 48.00 3734 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3735 CPU implementer : 0x41 3736 CPU architecture: 8 3737 CPU variant : 0x0 3738 CPU part : 0xd03 3739 CPU revision : 4 3740 3741 processor : 3 3742 BogoMIPS : 48.00 3743 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 3744 CPU implementer : 0x41 3745 CPU architecture: 8 3746 CPU variant : 0x0 3747 CPU part : 0xd03 3748 CPU revision : 4 3749 3750 3751 ### meminfo: 3752 3753 MemTotal: 2037276 kB 3754 MemFree: 1889588 kB 3755 MemAvailable: 1885804 kB 3756 Buffers: 11664 kB 3757 Cached: 56400 kB 3758 SwapCached: 0 kB 3759 Active: 27768 kB 3760 Inactive: 55144 kB 3761 Active(anon): 344 kB 3762 Inactive(anon): 31716 kB 3763 Active(file): 27424 kB 3764 Inactive(file): 23428 kB 3765 Unevictable: 0 kB 3766 Mlocked: 0 kB 3767 SwapTotal: 0 kB 3768 SwapFree: 0 kB 3769 Dirty: 16 kB 3770 Writeback: 0 kB 3771 AnonPages: 15624 kB 3772 Mapped: 15984 kB 3773 Shmem: 16716 kB 3774 KReclaimable: 9160 kB 3775 Slab: 31644 kB 3776 SReclaimable: 9160 kB 3777 SUnreclaim: 22484 kB 3778 KernelStack: 2192 kB 3779 PageTables: 1504 kB 3780 NFS_Unstable: 0 kB 3781 Bounce: 0 kB 3782 WritebackTmp: 0 kB 3783 CommitLimit: 1018636 kB 3784 Committed_AS: 52328 kB 3785 VmallocTotal: 133143592960 kB 3786 VmallocUsed: 10116 kB 3787 VmallocChunk: 0 kB 3788 Percpu: 1072 kB 3789 AnonHugePages: 0 kB 3790 ShmemHugePages: 0 kB 3791 ShmemPmdMapped: 0 kB 3792 FileHugePages: 0 kB 3793 FilePmdMapped: 0 kB 3794 CmaTotal: 131072 kB 3795 CmaFree: 130304 kB 3796 HugePages_Total: 0 3797 HugePages_Free: 0 3798 HugePages_Rsvd: 0 3799 HugePages_Surp: 0 3800 Hugepagesize: 2048 kB 3801 Hugetlb: 0 kB 3802 3803 ### virtual memory: 3804 3805 vm.admin_reserve_kbytes = 8192 3806 vm.compaction_proactiveness = 20 3807 vm.compact_unevictable_allowed = 1 3808 vm.dirty_background_bytes = 0 3809 vm.dirty_background_ratio = 10 3810 vm.dirty_bytes = 0 3811 vm.dirty_expire_centisecs = 3000 3812 vm.dirty_ratio = 20 3813 vm.dirtytime_expire_seconds = 43200 3814 vm.dirty_writeback_centisecs = 500 3815 vm.extfrag_threshold = 500 3816 vm.hugetlb_shm_group = 0 3817 vm.laptop_mode = 0 3818 vm.legacy_va_layout = 0 3819 vm.lowmem_reserve_ratio = 256 256 32 0 3820 vm.max_map_count = 65530 3821 vm.min_free_kbytes = 22528 3822 vm.min_slab_ratio = 5 3823 vm.min_unmapped_ratio = 1 3824 vm.mmap_min_addr = 32768 3825 vm.mmap_rnd_bits = 18 3826 vm.mmap_rnd_compat_bits = 11 3827 vm.nr_hugepages = 0 3828 vm.nr_hugepages_mempolicy = 0 3829 vm.nr_overcommit_hugepages = 0 3830 vm.numa_stat = 1 3831 vm.numa_zonelist_order = Node 3832 vm.oom_dump_tasks = 1 3833 vm.oom_kill_allocating_task = 0 3834 vm.overcommit_kbytes = 0 3835 vm.overcommit_memory = 0 3836 vm.overcommit_ratio = 50 3837 vm.page-cluster = 3 3838 vm.page_lock_unfairness = 5 3839 vm.panic_on_oom = 0 3840 vm.percpu_pagelist_high_fraction = 0 3841 vm.stat_interval = 1 3842 vm.swappiness = 100 3843 vm.user_reserve_kbytes = 63000 3844 vm.vfs_cache_pressure = 100 3845 vm.watermark_boost_factor = 15000 3846 vm.watermark_scale_factor = 10 3847 vm.zone_reclaim_mode = 0 3848 3849 ### ip addr: 3850 3851 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 3852 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 3853 inet XXX.XXX.0.1/8 scope host lo 3854 valid_lft forever preferred_lft forever 3855 inet6 ::1/128 scope host 3856 valid_lft forever preferred_lft forever 3857 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 3858 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 3859 3860 ### partitions: 3861 3862 major minor #blocks name 3863 3864 179 0 31260672 mmcblk0 3865 179 1 30928896 mmcblk0p1 3866 8 0 117220824 sda 3867 8 1 117218304 sda1 3868 3869 ### df: 3870 3871 tmpfs 199M 3.1M 196M 2% /run 3872 /dev/sda1 110G 29G 76G 28% / 3873 tmpfs 995M 0 995M 0% /dev/shm 3874 tmpfs 5.0M 0 5.0M 0% /run/lock 3875 tmpfs 995M 4.0K 995M 1% /tmp 3876 3877 ### lsblk: 3878 3879 NAME FSTYPE SIZE MOUNTPOINT UUID 3880 sda 111.8G 3881 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 3882 mmcblk0 29.8G 3883 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 3884 3885 ### zramctl: 3886 3887 3888 3889 ### mtab: 3890 3891 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3892 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 3893 3894 ### mmc0:0001 info: 3895 3896 fwrev: 0x0 3897 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 3898 cid: 1b534d454231515430bc836120012941 3899 rca: 0x0001 3900 csd: 400e00325b590000ee7f7f800a404055 3901 manfid: 0x00001b 3902 ocr: 0x00200000 3903 preferred_erase_size: 4194304 3904 type: SD 3905 hwrev: 0x3 3906 date: 09/2018 3907 dsr: 0x404 3908 erase_size: 512 3909 oemid: 0x534d 3910 serial: 0xbc836120 3911 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 3912 scr: 02b5800200000000 3913 name: EB1QT 3914 3915 ### Boot system health: 3916 3917 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 3918 23:10:54: --- 0.30 54% 29% 20% 0% 4% 0% 38.8 °C 3919 23:10:55: --- 0.30 82% 13% 20% 0% 45% 2% 38.8 °C 3920 23:10:55: --- 0.84 82% 20% 23% 0% 37% 0% 37.2 °C 3921 23:10:55: --- 0.84 53% 10% 12% 0% 28% 2% 37.2 °C 3922 23:10:56: --- 0.84 23% 7% 2% 0% 11% 1% 35.0 °C 3923 3924 ### No more available zram devices () 3925 3926 Sat Dec 10 05:37:11 PM CET 2022 | Pine64 | 22.11.1 | arm64 | aarch64 | 5.15.48-sunxi64 3927 3928 ### dmesg: 3929 3930 [ 0.000968] pid_max: default: 32768 minimum: 301 3931 [ 0.001054] LSM: Security Framework initializing 3932 [ 0.001083] Yama: becoming mindful. 3933 [ 0.001180] AppArmor: AppArmor initialized 3934 [ 0.001293] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3935 [ 0.001322] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) 3936 [ 0.003389] rcu: Hierarchical SRCU implementation. 3937 [ 0.004901] smp: Bringing up secondary CPUs ... 3938 [ 0.006147] Detected VIPT I-cache on CPU1 3939 [ 0.006215] arch_timer: CPU1: Trapping CNTVCT access 3940 [ 0.006233] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] 3941 [ 0.007043] Detected VIPT I-cache on CPU2 3942 [ 0.007078] arch_timer: CPU2: Trapping CNTVCT access 3943 [ 0.007089] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] 3944 [ 0.007815] Detected VIPT I-cache on CPU3 3945 [ 0.007848] arch_timer: CPU3: Trapping CNTVCT access 3946 [ 0.007859] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] 3947 [ 0.007961] smp: Brought up 1 node, 4 CPUs 3948 [ 0.007977] SMP: Total of 4 processors activated. 3949 [ 0.007984] CPU features: detected: 32-bit EL0 Support 3950 [ 0.007990] CPU features: detected: CRC32 instructions 3951 [ 0.022845] CPU: All CPU(s) started at EL2 3952 [ 0.022878] alternatives: patching kernel code 3953 [ 0.024694] devtmpfs: initialized 3954 [ 0.032744] Registered cp15_barrier emulation handler 3955 [ 0.032777] Registered setend emulation handler 3956 [ 0.032961] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns 3957 [ 0.032985] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) 3958 [ 0.038435] pinctrl core: initialized pinctrl subsystem 3959 [ 0.040112] NET: Registered PF_NETLINK/PF_ROUTE protocol family 3960 [ 0.041898] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations 3961 [ 0.042075] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations 3962 [ 0.042252] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations 3963 [ 0.042363] audit: initializing netlink subsys (disabled) 3964 [ 0.042577] audit: type=2000 audit(0.040:1): state=initialized audit_enabled=0 res=1 3965 [ 0.043188] thermal_sys: Registered thermal governor 'fair_share' 3966 [ 0.043196] thermal_sys: Registered thermal governor 'bang_bang' 3967 [ 0.043202] thermal_sys: Registered thermal governor 'step_wise' 3968 [ 0.043207] thermal_sys: Registered thermal governor 'user_space' 3969 [ 0.043671] cpuidle: using governor menu 3970 [ 0.043930] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. 3971 [ 0.044037] ASID allocator initialised with 65536 entries 3972 [ 0.044233] Serial: AMBA PL011 UART driver 3973 [ 0.060227] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0d000.lcd-controller 3974 [ 0.061746] platform hdmi-connector: Fixing up cyclic dependency with 1ee0000.hdmi 3975 [ 0.069833] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages 3976 [ 0.069856] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages 3977 [ 0.069864] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages 3978 [ 0.069872] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages 3979 [ 0.072081] cryptd: max_cpu_qlen set to 1000 3980 [ 0.140238] raid6: neonx8 gen() 1457 MB/s 3981 [ 0.208316] raid6: neonx8 xor() 1091 MB/s 3982 [ 0.276404] raid6: neonx4 gen() 1494 MB/s 3983 [ 0.344481] raid6: neonx4 xor() 1082 MB/s 3984 [ 0.412557] raid6: neonx2 gen() 1412 MB/s 3985 [ 0.480637] raid6: neonx2 xor() 990 MB/s 3986 [ 0.548715] raid6: neonx1 gen() 1231 MB/s 3987 [ 0.616793] raid6: neonx1 xor() 848 MB/s 3988 [ 0.684884] raid6: int64x8 gen() 1014 MB/s 3989 [ 0.752954] raid6: int64x8 xor() 533 MB/s 3990 [ 0.821049] raid6: int64x4 gen() 1127 MB/s 3991 [ 0.889123] raid6: int64x4 xor() 572 MB/s 3992 [ 0.957211] raid6: int64x2 gen() 962 MB/s 3993 [ 1.025288] raid6: int64x2 xor() 509 MB/s 3994 [ 1.093390] raid6: int64x1 gen() 716 MB/s 3995 [ 1.161483] raid6: int64x1 xor() 373 MB/s 3996 [ 1.161490] raid6: using algorithm neonx4 gen() 1494 MB/s 3997 [ 1.161497] raid6: .... xor() 1082 MB/s, rmw enabled 3998 [ 1.161502] raid6: using neon recovery algorithm 3999 [ 1.162153] iommu: Default domain type: Translated 4000 [ 1.162162] iommu: DMA domain TLB invalidation policy: strict mode 4001 [ 1.162486] SCSI subsystem initialized 4002 [ 1.162711] usbcore: registered new interface driver usbfs 4003 [ 1.162762] usbcore: registered new interface driver hub 4004 [ 1.162799] usbcore: registered new device driver usb 4005 [ 1.163132] pps_core: LinuxPPS API ver. 1 registered 4006 [ 1.163140] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> 4007 [ 1.163159] PTP clock support registered 4008 [ 1.163630] ARM FF-A: FFA_VERSION returned not supported 4009 [ 1.164022] Advanced Linux Sound Architecture Driver Initialized. 4010 [ 1.164800] NetLabel: Initializing 4011 [ 1.164806] NetLabel: domain hash size = 128 4012 [ 1.164812] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO 4013 [ 1.164889] NetLabel: unlabeled traffic allowed by default 4014 [ 1.165390] clocksource: Switched to clocksource arch_sys_counter 4015 [ 1.165681] VFS: Disk quotas dquot_6.6.0 4016 [ 1.165750] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) 4017 [ 1.166413] AppArmor: AppArmor Filesystem Enabled 4018 [ 1.173634] NET: Registered PF_INET protocol family 4019 [ 1.173921] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) 4020 [ 1.175317] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) 4021 [ 1.175360] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) 4022 [ 1.175378] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) 4023 [ 1.175539] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) 4024 [ 1.175865] TCP: Hash tables configured (established 16384 bind 16384) 4025 [ 1.176029] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) 4026 [ 1.176098] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) 4027 [ 1.176311] NET: Registered PF_UNIX/PF_LOCAL protocol family 4028 [ 1.176960] Trying to unpack rootfs image as initramfs... 4029 [ 1.186133] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available 4030 [ 1.193488] Initialise system trusted keyrings 4031 [ 1.193594] Key type blacklist registered 4032 [ 1.193805] workingset: timestamp_bits=44 max_order=19 bucket_order=0 4033 [ 1.200226] zbud: loaded 4034 [ 1.202015] squashfs: version 4.0 (2009/01/31) Phillip Lougher 4035 [ 1.204510] integrity: Platform Keyring initialized 4036 [ 1.257825] xor: automatically using best checksumming function 32regs 4037 [ 1.257855] async_tx: api initialized (async) 4038 [ 1.257866] Key type asymmetric registered 4039 [ 1.257873] Asymmetric key parser 'x509' registered 4040 [ 1.258040] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) 4041 [ 1.258234] io scheduler mq-deadline registered 4042 [ 1.258243] io scheduler kyber registered 4043 [ 1.258457] io scheduler bfq registered 4044 [ 1.262137] sun50i-a64-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver 4045 [ 1.272169] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled 4046 [ 1.284000] loop: module loaded 4047 [ 1.286584] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 4048 [ 1.286619] ehci-platform: EHCI generic platform driver 4049 [ 1.286778] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 4050 [ 1.286793] ohci-platform: OHCI generic platform driver 4051 [ 1.287289] usbcore: registered new interface driver usb-storage 4052 [ 1.287846] mousedev: PS/2 mouse device common for all mice 4053 [ 1.288942] sun6i-rtc 1f00000.rtc: registered as rtc0 4054 [ 1.288983] sun6i-rtc 1f00000.rtc: setting system clock to 2022-12-10T16:37:01 UTC (1670690221) 4055 [ 1.289111] sun6i-rtc 1f00000.rtc: RTC enabled 4056 [ 1.289220] i2c_dev: i2c /dev entries driver 4057 [ 1.290083] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) 4058 [ 1.292200] sun50i-a64-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator 4059 [ 1.292701] sdhci: Secure Digital Host Controller Interface driver 4060 [ 1.292710] sdhci: Copyright(c) Pierre Ossman 4061 [ 1.292738] Synopsys Designware Multimedia Card Interface Driver 4062 [ 1.293553] sdhci-pltfm: SDHCI platform and OF driver helper 4063 [ 1.294593] ledtrig-cpu: registered to indicate activity on CPUs 4064 [ 1.295105] SMCCC: SOC_ID: ID = jep106:091e:1689 Revision = 0x00000001 4065 [ 1.295419] sun8i-ce 1c15000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) 4066 [ 1.295728] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4067 [ 1.295876] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4068 [ 1.295989] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4069 [ 1.296117] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority 4070 [ 1.296215] sun8i-ce 1c15000.crypto: Register cbc(aes) 4071 [ 1.296403] sun8i-ce 1c15000.crypto: Register ecb(aes) 4072 [ 1.296540] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) 4073 [ 1.296686] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) 4074 [ 1.296804] sun8i-ce 1c15000.crypto: Register md5 4075 [ 1.296931] sun8i-ce 1c15000.crypto: Register sha1 4076 [ 1.297058] sun8i-ce 1c15000.crypto: Register sha224 4077 [ 1.297182] sun8i-ce 1c15000.crypto: Register sha256 4078 [ 1.297305] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha384 not supported 4079 [ 1.297315] sun8i-ce 1c15000.crypto: DEBUG: Algo of sha512 not supported 4080 [ 1.297324] sun8i-ce 1c15000.crypto: Register stdrng 4081 [ 1.297520] sun8i-ce 1c15000.crypto: TRNG not supported 4082 [ 1.297531] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 0 4083 [ 1.298131] hid: raw HID events driver (C) Jiri Kosina 4084 [ 1.298311] usbcore: registered new interface driver usbhid 4085 [ 1.298319] usbhid: USB HID core driver 4086 [ 1.304440] NET: Registered PF_INET6 protocol family 4087 [ 1.956867] Freeing initrd memory: 12684K 4088 [ 1.990455] Segment Routing with IPv6 4089 [ 1.990549] In-situ OAM (IOAM) with IPv6 4090 [ 1.990648] NET: Registered PF_PACKET protocol family 4091 [ 1.990785] 8021q: 802.1Q VLAN Support v1.8 4092 [ 1.990961] 9pnet: Installing 9P2000 support 4093 [ 1.991095] Key type dns_resolver registered 4094 [ 1.991631] registered taskstats version 1 4095 [ 1.991650] Loading compiled-in X.509 certificates 4096 [ 1.995895] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' 4097 [ 2.000372] zswap: loaded using pool zstd/z3fold 4098 [ 2.001199] Key type ._fscrypt registered 4099 [ 2.001208] Key type .fscrypt registered 4100 [ 2.001213] Key type fscrypt-provisioning registered 4101 [ 2.002405] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no 4102 [ 2.018331] Key type encrypted registered 4103 [ 2.018369] AppArmor: AppArmor sha1 policy hashing enabled 4104 [ 2.018414] ima: No TPM chip found, activating TPM-bypass! 4105 [ 2.018451] ima: Allocated hash algorithm: sha1 4106 [ 2.018490] ima: No architecture policies found 4107 [ 2.018576] evm: Initialising EVM extended attributes: 4108 [ 2.018581] evm: security.selinux 4109 [ 2.018587] evm: security.SMACK64 4110 [ 2.018591] evm: security.SMACK64EXEC 4111 [ 2.018596] evm: security.SMACK64TRANSMUTE 4112 [ 2.018600] evm: security.SMACK64MMAP 4113 [ 2.018605] evm: security.apparmor 4114 [ 2.018610] evm: security.ima 4115 [ 2.018615] evm: security.capability 4116 [ 2.018619] evm: HMAC attrs: 0x1 4117 [ 2.031490] platform 1100000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 4118 [ 2.031575] platform 1100000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 4119 [ 2.032330] platform 1200000.mixer: Fixing up cyclic dependency with 1c0d000.lcd-controller 4120 [ 2.032405] platform 1200000.mixer: Fixing up cyclic dependency with 1c0c000.lcd-controller 4121 [ 2.033239] sunxi-rsb 1f03400.rsb: RSB running at 3000000 Hz 4122 [ 2.033693] axp20x-rsb sunxi-rsb-3a3: AXP20x variant AXP803 found 4123 [ 2.035666] input: axp20x-pek as /devices/platform/soc/1f03400.rsb/sunxi-rsb-3a3/axp221-pek/input/input0 4124 [ 2.038746] vcc-3v3: supplied by regulator-dummy 4125 [ 2.039253] vdd-cpux: supplied by regulator-dummy 4126 [ 2.039936] dcdc4: supplied by regulator-dummy 4127 [ 2.040125] vcc-dram: supplied by regulator-dummy 4128 [ 2.040592] vdd-sys: supplied by regulator-dummy 4129 [ 2.041149] vcc-phy: supplied by regulator-dummy 4130 [ 2.041524] aldo1: supplied by regulator-dummy 4131 [ 2.041708] vcc-pl: supplied by regulator-dummy 4132 [ 2.042174] vcc-pll-avcc: supplied by regulator-dummy 4133 [ 2.042781] vcc-hdmi: supplied by regulator-dummy 4134 [ 2.043162] vcc-mipi: supplied by regulator-dummy 4135 [ 2.043527] dldo3: supplied by regulator-dummy 4136 [ 2.043894] vcc-wifi: supplied by regulator-dummy 4137 [ 2.044317] cpvdd: supplied by regulator-dummy 4138 [ 2.044680] eldo2: supplied by regulator-dummy 4139 [ 2.045041] eldo3: supplied by regulator-dummy 4140 [ 2.045472] vcc-1v2-hsic: supplied by regulator-dummy 4141 [ 2.045671] vdd-cpus: supplied by regulator-dummy 4142 [ 2.046104] vcc-rtc: supplied by regulator-dummy 4143 [ 2.046548] ldo-io0: supplied by regulator-dummy 4144 [ 2.046879] ldo-io1: supplied by regulator-dummy 4145 [ 2.047001] axp20x-rsb sunxi-rsb-3a3: AXP20X driver loaded 4146 [ 2.051925] sun50i-a64-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver 4147 [ 2.052343] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pb not found, using dummy regulator 4148 [ 2.052902] printk: console [ttyS0] disabled 4149 [ 2.052988] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 41, base_baud = 1500000) is a 16550A 4150 [ 2.053198] printk: console [ttyS0] enabled 4151 [ 2.053947] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator 4152 [ 2.054421] 1c28400.serial: ttyS1 at MMIO 0x1c28400 (irq = 42, base_baud = 1500000) is a 16550A 4153 [ 2.054571] serial serial0: tty port ttyS1 registered 4154 [ 2.085122] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) 4155 [ 2.086991] sun4i-drm display-engine: bound 1200000.mixer (ops 0xffff800008e16990) 4156 [ 2.087485] sun4i-drm display-engine: No panel or bridge found... RGB output disabled 4157 [ 2.087504] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xffff800008e11ba0) 4158 [ 2.087767] sun4i-drm display-engine: bound 1c0d000.lcd-controller (ops 0xffff800008e11ba0) 4159 [ 2.088941] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) 4160 [ 2.089629] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver 4161 [ 2.090014] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xffff800008e15cc8) 4162 [ 2.090703] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 4163 [ 2.090788] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 4164 [ 2.091482] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator 4165 [ 2.092055] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes 4166 [ 2.092794] ehci-platform 1c1a000.usb: EHCI Host Controller 4167 [ 2.092828] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 4168 [ 2.092964] ehci-platform 1c1a000.usb: irq 28, io mem 0x01c1a000 4169 [ 2.105399] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 4170 [ 2.105791] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4171 [ 2.105807] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4172 [ 2.105819] usb usb1: Product: EHCI Host Controller 4173 [ 2.105829] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 4174 [ 2.105838] usb usb1: SerialNumber: 1c1a000.usb 4175 [ 2.106397] hub 1-0:1.0: USB hub found 4176 [ 2.106446] hub 1-0:1.0: 1 port detected 4177 [ 2.107474] ehci-platform 1c1b000.usb: EHCI Host Controller 4178 [ 2.107501] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 2 4179 [ 2.107635] ehci-platform 1c1b000.usb: irq 30, io mem 0x01c1b000 4180 [ 2.121401] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 4181 [ 2.121729] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4182 [ 2.121744] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4183 [ 2.121755] usb usb2: Product: EHCI Host Controller 4184 [ 2.121764] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd 4185 [ 2.121774] usb usb2: SerialNumber: 1c1b000.usb 4186 [ 2.122261] hub 2-0:1.0: USB hub found 4187 [ 2.122309] hub 2-0:1.0: 1 port detected 4188 [ 2.297491] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 4189 [ 2.297525] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 4190 [ 2.297665] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 4191 [ 2.361441] usb 1-1: new high-speed USB device number 2 using ehci-platform 4192 [ 2.361792] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4193 [ 2.361807] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4194 [ 2.361819] usb usb3: Product: Generic Platform OHCI controller 4195 [ 2.361828] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4196 [ 2.361838] usb usb3: SerialNumber: 1c1a400.usb 4197 [ 2.362354] hub 3-0:1.0: USB hub found 4198 [ 2.362408] hub 3-0:1.0: 1 port detected 4199 [ 2.363427] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 4200 [ 2.363454] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 4201 [ 2.363578] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 4202 [ 2.377404] usb 2-1: new high-speed USB device number 2 using ehci-platform 4203 [ 2.425658] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4204 [ 2.425674] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4205 [ 2.425685] usb usb4: Product: Generic Platform OHCI controller 4206 [ 2.425695] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4207 [ 2.425704] usb usb4: SerialNumber: 1c1b400.usb 4208 [ 2.426224] hub 4-0:1.0: USB hub found 4209 [ 2.426277] hub 4-0:1.0: 1 port detected 4210 [ 2.427337] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 4211 [ 2.427517] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 4212 [ 2.505663] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 4213 [ 2.505695] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 4214 [ 2.505957] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4215 [ 2.505973] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4216 [ 2.505985] usb usb5: Product: MUSB HDRC host driver 4217 [ 2.505995] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 4218 [ 2.506005] usb usb5: SerialNumber: musb-hdrc.4.auto 4219 [ 2.506527] hub 5-0:1.0: USB hub found 4220 [ 2.506578] hub 5-0:1.0: 1 port detected 4221 [ 2.509984] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 4222 [ 2.510034] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 4223 [ 2.511064] sunxi-mmc 1c0f000.mmc: Got CD GPIO 4224 [ 2.511079] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 4225 [ 2.511280] of_cfs_init 4226 [ 2.511411] of_cfs_init: OK 4227 [ 2.511772] ALSA device list: 4228 [ 2.511780] No soundcards found. 4229 [ 2.519395] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 4230 [ 2.519413] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 4231 [ 2.519425] usb 1-1: SerialNumber: 20181120 4232 [ 2.520389] usb-storage 1-1:1.0: USB Mass Storage device detected 4233 [ 2.520914] scsi host0: usb-storage 1-1:1.0 4234 [ 2.534507] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4235 [ 2.536429] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 4236 [ 2.536445] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4237 [ 2.536457] usb 2-1: Product: USB2.1 Hub 4238 [ 2.536478] usb 2-1: Manufacturer: GenesysLogic 4239 [ 2.536507] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4240 [ 2.537330] hub 2-1:1.0: USB hub found 4241 [ 2.537686] hub 2-1:1.0: 4 ports detected 4242 [ 2.538207] Freeing unused kernel memory: 2496K 4243 [ 2.538343] Run /init as init process 4244 [ 2.538351] with arguments: 4245 [ 2.538357] /init 4246 [ 2.538363] with environment: 4247 [ 2.538368] HOME=/ 4248 [ 2.538373] TERM=linux 4249 [ 2.538379] ubootpart=ea5e158f-01 4250 [ 2.538385] cgroup_enable=memory 4251 [ 2.573167] mmc0: new high speed SDHC card at address 0001 4252 [ 2.574258] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 4253 [ 2.576671] mmcblk0: p1 4254 [ 2.849433] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 4255 [ 3.061854] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 4256 [ 3.062739] usbcore: registered new interface driver uas 4257 [ 3.076942] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 4258 [ 3.077214] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 4259 [ 3.077227] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 4260 [ 3.077612] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 4261 [ 3.077889] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 4262 [ 3.077938] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 4263 [ 3.078417] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 4264 [ 3.078436] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 4265 [ 3.078445] dwmac-sun8i 1c30000.ethernet: COE Type 2 4266 [ 3.078457] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 4267 [ 3.078465] dwmac-sun8i 1c30000.ethernet: Normal descriptors 4268 [ 3.078473] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 4269 [ 3.098353] axp20x-gpio axp20x-gpio: DMA mask not set 4270 [ 3.100011] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 4271 [ 3.199063] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 4272 [ 3.199103] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 4273 [ 3.199115] usb 2-1.1: SerialNumber: AA5FCF90 4274 [ 3.526482] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 4275 [ 3.527236] sd 0:0:0:0: Attached scsi generic sg0 type 0 4276 [ 3.528214] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 4277 [ 3.529529] sd 0:0:0:0: [sda] Write Protect is off 4278 [ 3.529559] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 4279 [ 3.531475] sd 0:0:0:0: [sda] No Caching mode page found 4280 [ 3.531505] sd 0:0:0:0: [sda] Assuming drive cache: write through 4281 [ 3.537462] sda: sda1 4282 [ 3.541056] sd 0:0:0:0: [sda] Attached SCSI disk 4283 [ 3.895680] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 4284 [ 4.489896] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 4285 [ 4.490608] systemd[1]: Detected architecture arm64. 4286 [ 4.493606] systemd[1]: Hostname set to <pine64>. 4287 [ 4.599592] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 4288 [ 5.436125] systemd[1]: Queued start job for default target Graphical Interface. 4289 [ 5.438233] random: systemd: uninitialized urandom read (16 bytes read) 4290 [ 5.474009] systemd[1]: Created slice Slice /system/modprobe. 4291 [ 5.474766] random: systemd: uninitialized urandom read (16 bytes read) 4292 [ 5.477825] systemd[1]: Created slice Slice /system/serial-getty. 4293 [ 5.478258] random: systemd: uninitialized urandom read (16 bytes read) 4294 [ 5.480558] systemd[1]: Created slice User and Session Slice. 4295 [ 5.481041] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 4296 [ 5.481625] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 4297 [ 5.483133] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 4298 [ 5.483703] systemd[1]: Reached target Local Encrypted Volumes. 4299 [ 5.484470] systemd[1]: Reached target Slice Units. 4300 [ 5.484799] systemd[1]: Reached target Swaps. 4301 [ 5.485093] systemd[1]: Reached target System Time Set. 4302 [ 5.485651] systemd[1]: Reached target Local Verity Protected Volumes. 4303 [ 5.507761] systemd[1]: Listening on RPCbind Server Activation Socket. 4304 [ 5.509967] systemd[1]: Listening on Syslog Socket. 4305 [ 5.511095] systemd[1]: Listening on fsck to fsckd communication Socket. 4306 [ 5.511745] systemd[1]: Listening on initctl Compatibility Named Pipe. 4307 [ 5.513245] systemd[1]: Listening on Journal Audit Socket. 4308 [ 5.514270] systemd[1]: Listening on Journal Socket (/dev/log). 4309 [ 5.515346] systemd[1]: Listening on Journal Socket. 4310 [ 5.516728] systemd[1]: Listening on udev Control Socket. 4311 [ 5.517792] systemd[1]: Listening on udev Kernel Socket. 4312 [ 5.523638] systemd[1]: Mounting Huge Pages File System... 4313 [ 5.530252] systemd[1]: Mounting POSIX Message Queue File System... 4314 [ 5.536431] systemd[1]: Mounting NFSD configuration filesystem... 4315 [ 5.543426] systemd[1]: Mounting Kernel Debug File System... 4316 [ 5.544609] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 4317 [ 5.545716] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 4318 [ 5.554688] systemd[1]: Starting Restore / save the current clock... 4319 [ 5.562976] systemd[1]: Starting Set the console keyboard layout... 4320 [ 5.563623] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 4321 [ 5.570777] systemd[1]: Starting Load Kernel Module chromeos_pstore... 4322 [ 5.578534] systemd[1]: Starting Load Kernel Module configfs... 4323 [ 5.586367] systemd[1]: Starting Load Kernel Module drm... 4324 [ 5.597439] systemd[1]: Starting Load Kernel Module efi_pstore... 4325 [ 5.608279] systemd[1]: Starting Load Kernel Module fuse... 4326 [ 5.616212] systemd[1]: Starting Load Kernel Module pstore_blk... 4327 [ 5.624780] systemd[1]: Starting Load Kernel Module pstore_zone... 4328 [ 5.632873] systemd[1]: Starting Load Kernel Module ramoops... 4329 [ 5.641828] systemd[1]: Started Nameserver information manager. 4330 [ 5.643270] systemd[1]: Reached target Preparation for Network. 4331 [ 5.644665] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 4332 [ 5.655105] systemd[1]: Starting Load Kernel Modules... 4333 [ 5.663362] systemd[1]: Starting Remount Root and Kernel File Systems... 4334 [ 5.672013] systemd[1]: Starting Coldplug All udev Devices... 4335 [ 5.687246] systemd[1]: Mounted Huge Pages File System. 4336 [ 5.688390] systemd[1]: Mounted POSIX Message Queue File System. 4337 [ 5.689688] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 4338 [ 5.689738] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 4339 [ 5.691946] systemd[1]: Failed to mount NFSD configuration filesystem. 4340 [ 5.692336] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 4341 [ 5.692499] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 4342 [ 5.692558] systemd[1]: Dependency failed for NFS server and services. 4343 [ 5.692686] systemd[1]: Dependency failed for NFS Mount Daemon. 4344 [ 5.692812] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 4345 [ 5.692867] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 4346 [ 5.692993] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 4347 [ 5.693030] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 4348 [ 5.694191] systemd[1]: Mounted Kernel Debug File System. 4349 [ 5.696991] systemd[1]: Finished Restore / save the current clock. 4350 [ 5.699539] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 4351 [ 5.700952] systemd[1]: Finished Load Kernel Module chromeos_pstore. 4352 [ 5.701756] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 4353 [ 5.708101] systemd[1]: modprobe@configfs.service: Deactivated successfully. 4354 [ 5.709490] systemd[1]: Finished Load Kernel Module configfs. 4355 [ 5.711668] systemd[1]: modprobe@drm.service: Deactivated successfully. 4356 [ 5.712954] systemd[1]: Finished Load Kernel Module drm. 4357 [ 5.715243] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 4358 [ 5.716565] systemd[1]: Finished Load Kernel Module efi_pstore. 4359 [ 5.718937] systemd[1]: modprobe@fuse.service: Deactivated successfully. 4360 [ 5.720423] systemd[1]: Finished Load Kernel Module fuse. 4361 [ 5.770991] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 4362 [ 5.772462] systemd[1]: Finished Load Kernel Module pstore_blk. 4363 [ 5.774690] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 4364 [ 5.776199] systemd[1]: Finished Load Kernel Module pstore_zone. 4365 [ 5.778312] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 4366 [ 5.779751] systemd[1]: Finished Load Kernel Module ramoops. 4367 [ 5.784883] systemd[1]: Finished Load Kernel Modules. 4368 [ 5.787871] systemd[1]: Finished Remount Root and Kernel File Systems. 4369 [ 5.790567] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 4370 [ 5.795903] systemd[1]: Mounting Kernel Configuration File System... 4371 [ 5.796814] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 4372 [ 5.806394] systemd[1]: Starting Load/Save Random Seed... 4373 [ 5.816255] systemd[1]: Starting Apply Kernel Variables... 4374 [ 5.823671] systemd[1]: Starting Create System Users... 4375 [ 5.863161] systemd[1]: Mounted Kernel Configuration File System. 4376 [ 5.880178] systemd[1]: Finished Create System Users. 4377 [ 5.890098] systemd[1]: Starting Create Static Device Nodes in /dev... 4378 [ 5.893181] systemd[1]: Finished Apply Kernel Variables. 4379 [ 5.950915] systemd[1]: Finished Create Static Device Nodes in /dev. 4380 [ 5.966116] systemd[1]: Starting Rule-based Manager for Device Events and Files... 4381 [ 5.969558] systemd[1]: Finished Set the console keyboard layout. 4382 [ 5.970817] systemd[1]: Reached target Preparation for Local File Systems. 4383 [ 5.978368] systemd[1]: Mounting /tmp... 4384 [ 5.995592] systemd[1]: Mounted /tmp. 4385 [ 5.996657] systemd[1]: Reached target Local File Systems. 4386 [ 6.003863] systemd[1]: Starting Armbian leds state... 4387 [ 6.013532] systemd[1]: Starting Armbian ZRAM config... 4388 [ 6.022012] systemd[1]: Starting Set console font and keymap... 4389 [ 6.022904] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 4390 [ 6.023283] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 4391 [ 6.030891] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 4392 [ 6.050050] systemd[1]: Finished Set console font and keymap. 4393 [ 6.099364] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 4394 [ 6.100313] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 4395 [ 6.102367] systemd[1]: Failed to start Armbian leds state. 4396 [ 6.226360] systemd[1]: Finished Coldplug All udev Devices. 4397 [ 6.251853] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 4398 [ 6.258264] systemd[1]: Started Rule-based Manager for Device Events and Files. 4399 [ 6.368491] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 4400 [ 6.369557] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 4401 [ 6.372617] systemd[1]: Failed to start Armbian ZRAM config. 4402 [ 6.406822] systemd[1]: Starting Armbian memory supported logging... 4403 [ 6.487579] urandom_read_iter: 51 callbacks suppressed 4404 [ 6.487608] random: systemd: uninitialized urandom read (16 bytes read) 4405 [ 6.579458] random: systemd: uninitialized urandom read (16 bytes read) 4406 [ 6.579604] random: systemd: uninitialized urandom read (16 bytes read) 4407 [ 6.726347] random: crng init done 4408 [ 6.726376] random: 8 urandom warning(s) missed due to ratelimiting 4409 [ 6.749762] systemd[1]: Finished Load/Save Random Seed. 4410 [ 6.751582] systemd[1]: Condition check resulted in First Boot Complete being skipped. 4411 [ 6.751830] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 4412 [ 6.752051] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 4413 [ 6.842318] systemd[1]: Found device /dev/ttyS0. 4414 [ 7.402050] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 4415 [ 7.423452] systemd[1]: Started ifup for eth0. 4416 [ 7.427735] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 4417 [ 7.435714] systemd[1]: Starting Raise network interfaces... 4418 [ 7.441059] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 4419 [ 7.442566] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 4420 [ 8.004404] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 4421 [ 8.005291] systemd[1]: networking.service: Failed with result 'exit-code'. 4422 [ 8.007020] systemd[1]: Failed to start Raise network interfaces. 4423 [ 10.579844] systemd[1]: Finished Armbian memory supported logging. 4424 [ 10.625691] systemd[1]: Starting Journal Service... 4425 [ 10.883893] systemd[1]: Started Journal Service. 4426 [ 10.935071] systemd-journald[586]: Received client request to flush runtime journal. 4427 4428 ### armbian-release: 4429 4430 # PLEASE DO NOT EDIT THIS FILE 4431 BOARD=pine64 4432 BOARD_NAME="Pine64" 4433 BOARDFAMILY=sun50iw1 4434 BUILD_REPOSITORY_URL=https://github.com/armbian/build 4435 BUILD_REPOSITORY_COMMIT=84940abb 4436 VERSION=22.11.1 4437 LINUXFAMILY=sunxi64 4438 ARCH=arm64 4439 IMAGE_TYPE=stable 4440 BOARD_TYPE=conf 4441 INITRD_ARCH=arm64 4442 KERNEL_IMAGE_TYPE=Image 4443 BRANCH=current 4444 4445 ### boot environment: 4446 4447 verbosity=1 4448 bootlogo=false 4449 console=both 4450 disp_mode=1920x1080p60 4451 overlay_prefix=sun50i-a64 4452 rootdev=UUID=1a07fccf-6922-49b1-ace2-e12d87fdb297 4453 rootfstype=ext4 4454 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u 4455 4456 ### lsusb: 4457 4458 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4459 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 4460 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 4461 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4462 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4463 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 4464 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4465 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4466 4467 ### lscpu: 4468 4469 Architecture: aarch64 4470 CPU op-mode(s): 32-bit, 64-bit 4471 Byte Order: Little Endian 4472 CPU(s): 4 4473 On-line CPU(s) list: 0-3 4474 Vendor ID: ARM 4475 Model name: Cortex-A53 4476 Model: 4 4477 Thread(s) per core: 1 4478 Core(s) per cluster: 4 4479 Socket(s): - 4480 Cluster(s): 1 4481 Stepping: r0p4 4482 BogoMIPS: 48.00 4483 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4484 NUMA node(s): 1 4485 NUMA node0 CPU(s): 0-3 4486 Vulnerability Itlb multihit: Not affected 4487 Vulnerability L1tf: Not affected 4488 Vulnerability Mds: Not affected 4489 Vulnerability Meltdown: Not affected 4490 Vulnerability Mmio stale data: Not affected 4491 Vulnerability Spec store bypass: Not affected 4492 Vulnerability Spectre v1: Mitigation; __user pointer sanitization 4493 Vulnerability Spectre v2: Not affected 4494 Vulnerability Srbds: Not affected 4495 Vulnerability Tsx async abort: Not affected 4496 4497 ### cpuinfo: 4498 4499 processor : 0 4500 BogoMIPS : 48.00 4501 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4502 CPU implementer : 0x41 4503 CPU architecture: 8 4504 CPU variant : 0x0 4505 CPU part : 0xd03 4506 CPU revision : 4 4507 4508 processor : 1 4509 BogoMIPS : 48.00 4510 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4511 CPU implementer : 0x41 4512 CPU architecture: 8 4513 CPU variant : 0x0 4514 CPU part : 0xd03 4515 CPU revision : 4 4516 4517 processor : 2 4518 BogoMIPS : 48.00 4519 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4520 CPU implementer : 0x41 4521 CPU architecture: 8 4522 CPU variant : 0x0 4523 CPU part : 0xd03 4524 CPU revision : 4 4525 4526 processor : 3 4527 BogoMIPS : 48.00 4528 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid 4529 CPU implementer : 0x41 4530 CPU architecture: 8 4531 CPU variant : 0x0 4532 CPU part : 0xd03 4533 CPU revision : 4 4534 4535 4536 ### meminfo: 4537 4538 MemTotal: 2037276 kB 4539 MemFree: 1892844 kB 4540 MemAvailable: 1887688 kB 4541 Buffers: 12164 kB 4542 Cached: 53360 kB 4543 SwapCached: 0 kB 4544 Active: 28920 kB 4545 Inactive: 49032 kB 4546 Active(anon): 596 kB 4547 Inactive(anon): 29352 kB 4548 Active(file): 28324 kB 4549 Inactive(file): 19680 kB 4550 Unevictable: 0 kB 4551 Mlocked: 0 kB 4552 SwapTotal: 0 kB 4553 SwapFree: 0 kB 4554 Dirty: 8 kB 4555 Writeback: 0 kB 4556 AnonPages: 12760 kB 4557 Mapped: 13392 kB 4558 Shmem: 17252 kB 4559 KReclaimable: 9260 kB 4560 Slab: 30880 kB 4561 SReclaimable: 9260 kB 4562 SUnreclaim: 21620 kB 4563 KernelStack: 2112 kB 4564 PageTables: 1156 kB 4565 NFS_Unstable: 0 kB 4566 Bounce: 0 kB 4567 WritebackTmp: 0 kB 4568 CommitLimit: 1018636 kB 4569 Committed_AS: 46016 kB 4570 VmallocTotal: 133143592960 kB 4571 VmallocUsed: 10212 kB 4572 VmallocChunk: 0 kB 4573 Percpu: 1072 kB 4574 AnonHugePages: 0 kB 4575 ShmemHugePages: 0 kB 4576 ShmemPmdMapped: 0 kB 4577 FileHugePages: 0 kB 4578 FilePmdMapped: 0 kB 4579 CmaTotal: 131072 kB 4580 CmaFree: 130304 kB 4581 HugePages_Total: 0 4582 HugePages_Free: 0 4583 HugePages_Rsvd: 0 4584 HugePages_Surp: 0 4585 Hugepagesize: 2048 kB 4586 Hugetlb: 0 kB 4587 4588 ### virtual memory: 4589 4590 vm.admin_reserve_kbytes = 8192 4591 vm.compaction_proactiveness = 20 4592 vm.compact_unevictable_allowed = 1 4593 vm.dirty_background_bytes = 0 4594 vm.dirty_background_ratio = 10 4595 vm.dirty_bytes = 0 4596 vm.dirty_expire_centisecs = 3000 4597 vm.dirty_ratio = 20 4598 vm.dirtytime_expire_seconds = 43200 4599 vm.dirty_writeback_centisecs = 500 4600 vm.extfrag_threshold = 500 4601 vm.hugetlb_shm_group = 0 4602 vm.laptop_mode = 0 4603 vm.legacy_va_layout = 0 4604 vm.lowmem_reserve_ratio = 256 256 32 0 4605 vm.max_map_count = 65530 4606 vm.min_free_kbytes = 22528 4607 vm.min_slab_ratio = 5 4608 vm.min_unmapped_ratio = 1 4609 vm.mmap_min_addr = 32768 4610 vm.mmap_rnd_bits = 18 4611 vm.mmap_rnd_compat_bits = 11 4612 vm.nr_hugepages = 0 4613 vm.nr_hugepages_mempolicy = 0 4614 vm.nr_overcommit_hugepages = 0 4615 vm.numa_stat = 1 4616 vm.numa_zonelist_order = Node 4617 vm.oom_dump_tasks = 1 4618 vm.oom_kill_allocating_task = 0 4619 vm.overcommit_kbytes = 0 4620 vm.overcommit_memory = 0 4621 vm.overcommit_ratio = 50 4622 vm.page-cluster = 3 4623 vm.page_lock_unfairness = 5 4624 vm.panic_on_oom = 0 4625 vm.percpu_pagelist_high_fraction = 0 4626 vm.stat_interval = 1 4627 vm.swappiness = 100 4628 vm.user_reserve_kbytes = 63000 4629 vm.vfs_cache_pressure = 100 4630 vm.watermark_boost_factor = 15000 4631 vm.watermark_scale_factor = 10 4632 vm.zone_reclaim_mode = 0 4633 4634 ### ip addr: 4635 4636 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 4637 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 4638 inet XXX.XXX.0.1/8 scope host lo 4639 valid_lft forever preferred_lft forever 4640 inet6 ::1/128 scope host 4641 valid_lft forever preferred_lft forever 4642 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 4643 link/ether 02:ba:85:77:17:e9 brd ff:ff:ff:ff:ff:ff 4644 4645 ### partitions: 4646 4647 major minor #blocks name 4648 4649 179 0 31260672 mmcblk0 4650 179 1 30928896 mmcblk0p1 4651 8 0 117220824 sda 4652 8 1 117218304 sda1 4653 4654 ### df: 4655 4656 tmpfs 199M 3.1M 196M 2% /run 4657 /dev/sda1 110G 29G 76G 28% / 4658 tmpfs 995M 0 995M 0% /dev/shm 4659 tmpfs 5.0M 0 5.0M 0% /run/lock 4660 tmpfs 995M 4.0K 995M 1% /tmp 4661 4662 ### lsblk: 4663 4664 NAME FSTYPE SIZE MOUNTPOINT UUID 4665 sda 111.8G 4666 └─sda1 ext4 111.8G / 933d6d44-0352-46aa-8100-fd703056ae3d 4667 mmcblk0 29.8G 4668 └─mmcblk0p1 ext4 29.5G 1a07fccf-6922-49b1-ace2-e12d87fdb297 4669 4670 ### zramctl: 4671 4672 4673 4674 ### mtab: 4675 4676 /dev/sda1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 4677 /dev/sda1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 4678 4679 ### mmc0:0001 info: 4680 4681 fwrev: 0x0 4682 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=EB1QT MODALIAS=mmc:block 4683 cid: 1b534d454231515430bc836120012941 4684 rca: 0x0001 4685 csd: 400e00325b590000ee7f7f800a404055 4686 manfid: 0x00001b 4687 ocr: 0x00200000 4688 preferred_erase_size: 4194304 4689 type: SD 4690 hwrev: 0x3 4691 date: 09/2018 4692 dsr: 0x404 4693 erase_size: 512 4694 oemid: 0x534d 4695 serial: 0xbc836120 4696 ssr: 0000000005000000040090000f051c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000 4697 scr: 02b5800200000000 4698 name: EB1QT 4699 4700 ### Boot system health: 4701 4702 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 4703 17:37:14: --- 0.23 54% 27% 20% 0% 5% 0% 39.1 °C 4704 17:37:15: --- 0.93 85% 18% 21% 0% 44% 1% 39.1 °C 4705 17:37:15: --- 0.93 80% 21% 25% 0% 31% 0% 36.2 °C 4706 17:37:16: --- 0.93 54% 9% 7% 1% 34% 0% 36.2 °C 4707 17:37:16: --- 0.93 39% 7% 2% 0% 29% 0% 34.1 °C 4708 4709 ### lsusb: 4710 4711 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4712 Bus 002 Device 003: ID 046d:081b Logitech, Inc. Webcam C310 4713 Bus 002 Device 002: ID 05e3:0610 Genesys Logic, Inc. Hub 4714 Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4715 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub 4716 Bus 001 Device 002: ID 1f75:0621 Innostor Technology Corporation IS621 SATA Storage Controller 4717 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4718 Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub 4719 4720 /: Bus 05.Port 1: Dev 1, Class=root_hub, Driver=musb-hdrc/1p, 480M 4721 /: Bus 04.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M 4722 /: Bus 03.Port 1: Dev 1, Class=root_hub, Driver=ohci-platform/1p, 12M 4723 /: Bus 02.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M 4724 |__ Port 1: Dev 2, If 0, Class=Hub, Driver=hub/4p, 480M 4725 |__ Port 1: Dev 3, If 0, Class=Video, Driver=, 480M 4726 |__ Port 1: Dev 3, If 1, Class=Video, Driver=, 480M 4727 |__ Port 1: Dev 3, If 2, Class=Audio, Driver=, 480M 4728 |__ Port 1: Dev 3, If 3, Class=Audio, Driver=, 480M 4729 /: Bus 01.Port 1: Dev 1, Class=root_hub, Driver=ehci-platform/1p, 480M 4730 |__ Port 1: Dev 2, If 0, Class=Mass Storage, Driver=usb-storage, 480M 4731 4732 ### Userland: 4733 4734 PRETTY_NAME="Armbian 22.11.1 Jammy" 4735 4736 ### Installed packages: 4737 4738 ii armbian-bsp-cli-pine64 22.11.1 arm64 Armbian board support files for pine64 4739 ii armbian-config 22.11.1 all Armbian configuration utility 4740 ii armbian-firmware 22.11.1 all Linux firmware 4741 ii armbian-zsh 22.11.1 all Armbian improved ZShell 4742 ii hostapd 3:2.10-6~armbian22.02.3+1 arm64 IEEE 802.11 AP and IEEE 802.1X/WPA/WPA2/EAP Authenticator 4743 ii linux-base 4.5ubuntu9 all Linux image base package 4744 ic linux-image-current-sunxi64 21.05.1 arm64 Linux kernel, version 5.10.34-sunxi64 4745 ii linux-image-edge-sunxi64 22.11.1 arm64 Linux kernel, armbian version 6.0.10-sunxi64 edge 4746 ii linux-libc-dev:arm64 22.11.1 arm64 Armbian Linux support headers for userspace development 4747 ii linux-u-boot-pine64-edge 22.08.6 arm64 Uboot loader 2022.07 4748 4749 ### Loaded modules: 4750 4751 Module Size Used by 4752 realtek 32768 1 4753 pinctrl_axp209 16384 0 4754 dwmac_sun8i 28672 0 4755 mdio_mux 16384 1 dwmac_sun8i 4756 i2c_mv64xxx 24576 0 4757 uas 28672 0 4758 4759 ### Current system health: 4760 4761 Time CPU n/a load %cpu %sys %usr %nice %io %irq CPU 4762 22:20:16: --- 0.02 1% 0% 0% 0% 0% 0% 41.0 °C 4763 22:20:16: --- 0.02 2% 2% 0% 0% 0% 0% 39.4 °C 4764 22:20:16: --- 0.02 4% 3% 0% 0% 0% 0% 39.4 °C 4765 22:20:17: --- 0.02 2% 2% 0% 0% 0% 0% 38.9 °C 4766 22:20:17: --- 0.02 2% 2% 0% 0% 0% 0% 38.9 °C 4767 22:20:20: --- 0.42 1% 0% 0% 0% 0% 0% 42.0 °C 4768 22:20:21: --- 0.42 76% 0% 75% 0% 0% 0% 41.5 °C 4769 22:20:21: --- 0.42 2% 2% 0% 0% 0% 0% 40.3 °C 4770 22:20:21: --- 0.42 2% 1% 0% 1% 0% 0% 40.3 °C 4771 22:20:22: --- 0.42 2% 2% 0% 0% 0% 0% 40.3 °C 4772 4773 ### resolv.conf 4774 4775 lrwxrwxrwx 1 root root 32 Aug 25 00:31 /etc/resolv.conf -> /run/systemd/resolve/resolv.conf 4776 # This is /run/systemd/resolve/resolv.conf managed by man:systemd-resolved(8). 4777 # Do not edit. 4778 # 4779 # This file might be symlinked as /etc/resolv.conf. If you're looking at 4780 # /etc/resolv.conf and seeing this text, you have followed the symlink. 4781 # 4782 # This is a dynamic resolv.conf file for connecting local clients directly to 4783 # all known uplink DNS servers. This file lists all configured search domains. 4784 # 4785 # Third party programs should typically not access this file directly, but only 4786 # through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a 4787 # different way, replace this symlink by a static file or a different symlink. 4788 # 4789 # See man:systemd-resolved.service(8) for details about the supported modes of 4790 # operation for /etc/resolv.conf. 4791 4792 nameserver XXX.XXX.0.1 4793 search . 4794 4795 ### Current sysinfo: 4796 4797 Linux 5.15.48-sunxi64 (pine64) 12/10/2022 _aarch64_ (4 CPU) 4798 4799 avg-cpu: %user %nice %system %iowait %steal %idle 4800 0.99 0.00 0.22 0.04 0.00 98.75 4801 4802 Device tps kB_read/s kB_wrtn/s kB_dscd/s kB_read kB_wrtn kB_dscd 4803 mmcblk0 0.01 0.43 0.00 0.00 7312 0 0 4804 mmcblk0p1 0.01 0.31 0.00 0.00 5200 0 0 4805 sda 1.96 35.05 86.56 0.00 596141 1472096 0 4806 sda1 1.95 34.93 86.56 0.00 593973 1472096 0 4807 4808 --procs-- -----------------------memory---------------------- ---swap-- -----io---- -system-- --------cpu-------- 4809 r b swpd free buff cache si so bi bo in cs us sy id wa st 4810 0 0 0 966728 32904 898212 0 0 9 22 49 29 1 0 99 0 0 4811 4812 total used free shared buff/cache available 4813 Mem: 1.9Gi 136Mi 944Mi 19Mi 909Mi 1.7Gi 4814 Swap: 0B 0B 0B 4815 4816 4817 4818 22:20:26 up 4:43, 1 user, load average: 0.39, 0.19, 0.10 4819 4820 [ 2.297491] ohci-platform 1c1a400.usb: Generic Platform OHCI controller 4821 [ 2.297525] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 3 4822 [ 2.297665] ohci-platform 1c1a400.usb: irq 29, io mem 0x01c1a400 4823 [ 2.361441] usb 1-1: new high-speed USB device number 2 using ehci-platform 4824 [ 2.361792] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4825 [ 2.361807] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4826 [ 2.361819] usb usb3: Product: Generic Platform OHCI controller 4827 [ 2.361828] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4828 [ 2.361838] usb usb3: SerialNumber: 1c1a400.usb 4829 [ 2.362354] hub 3-0:1.0: USB hub found 4830 [ 2.362408] hub 3-0:1.0: 1 port detected 4831 [ 2.363427] ohci-platform 1c1b400.usb: Generic Platform OHCI controller 4832 [ 2.363454] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 4 4833 [ 2.363578] ohci-platform 1c1b400.usb: irq 31, io mem 0x01c1b400 4834 [ 2.377404] usb 2-1: new high-speed USB device number 2 using ehci-platform 4835 [ 2.425658] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 4836 [ 2.425674] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4837 [ 2.425685] usb usb4: Product: Generic Platform OHCI controller 4838 [ 2.425695] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd 4839 [ 2.425704] usb usb4: SerialNumber: 1c1b400.usb 4840 [ 2.426224] hub 4-0:1.0: USB hub found 4841 [ 2.426277] hub 4-0:1.0: 1 port detected 4842 [ 2.427337] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator 4843 [ 2.427517] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests 4844 [ 2.505663] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver 4845 [ 2.505695] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 5 4846 [ 2.505957] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 4847 [ 2.505973] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 4848 [ 2.505985] usb usb5: Product: MUSB HDRC host driver 4849 [ 2.505995] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd 4850 [ 2.506005] usb usb5: SerialNumber: musb-hdrc.4.auto 4851 [ 2.506527] hub 5-0:1.0: USB hub found 4852 [ 2.506578] hub 5-0:1.0: 1 port detected 4853 [ 2.509984] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator 4854 [ 2.510034] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version 4855 [ 2.511064] sunxi-mmc 1c0f000.mmc: Got CD GPIO 4856 [ 2.511079] sunxi-mmc 1c10000.mmc: allocated mmc-pwrseq 4857 [ 2.511280] of_cfs_init 4858 [ 2.511411] of_cfs_init: OK 4859 [ 2.511772] ALSA device list: 4860 [ 2.511780] No soundcards found. 4861 [ 2.519395] usb 1-1: New USB device found, idVendor=1f75, idProduct=0621, bcdDevice= 0.36 4862 [ 2.519413] usb 1-1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 4863 [ 2.519425] usb 1-1: SerialNumber: 20181120 4864 [ 2.520389] usb-storage 1-1:1.0: USB Mass Storage device detected 4865 [ 2.520914] scsi host0: usb-storage 1-1:1.0 4866 [ 2.534507] sunxi-mmc 1c10000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4867 [ 2.536429] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.54 4868 [ 2.536445] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 4869 [ 2.536457] usb 2-1: Product: USB2.1 Hub 4870 [ 2.536478] usb 2-1: Manufacturer: GenesysLogic 4871 [ 2.536507] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB, uses new timings mode 4872 [ 2.537330] hub 2-1:1.0: USB hub found 4873 [ 2.537686] hub 2-1:1.0: 4 ports detected 4874 [ 2.538207] Freeing unused kernel memory: 2496K 4875 [ 2.538343] Run /init as init process 4876 [ 2.538351] with arguments: 4877 [ 2.538357] /init 4878 [ 2.538363] with environment: 4879 [ 2.538368] HOME=/ 4880 [ 2.538373] TERM=linux 4881 [ 2.538379] ubootpart=ea5e158f-01 4882 [ 2.538385] cgroup_enable=memory 4883 [ 2.573167] mmc0: new high speed SDHC card at address 0001 4884 [ 2.574258] mmcblk0: mmc0:0001 EB1QT 29.8 GiB 4885 [ 2.576671] mmcblk0: p1 4886 [ 2.849433] usb 2-1.1: new high-speed USB device number 3 using ehci-platform 4887 [ 3.061854] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-ph not found, using dummy regulator 4888 [ 3.062739] usbcore: registered new interface driver uas 4889 [ 3.076942] sun50i-a64-pinctrl 1c20800.pinctrl: supply vcc-pd not found, using dummy regulator 4890 [ 3.077214] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found 4891 [ 3.077227] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found 4892 [ 3.077612] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator 4893 [ 3.077889] dwmac-sun8i 1c30000.ethernet: PTP uses main clock 4894 [ 3.077938] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 6 (expect 0) 4895 [ 3.078417] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported 4896 [ 3.078436] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported 4897 [ 3.078445] dwmac-sun8i 1c30000.ethernet: COE Type 2 4898 [ 3.078457] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported 4899 [ 3.078465] dwmac-sun8i 1c30000.ethernet: Normal descriptors 4900 [ 3.078473] dwmac-sun8i 1c30000.ethernet: Chain mode enabled 4901 [ 3.098353] axp20x-gpio axp20x-gpio: DMA mask not set 4902 [ 3.100011] axp20x-gpio axp20x-gpio: AXP209 pinctrl and GPIO driver loaded 4903 [ 3.199063] usb 2-1.1: New USB device found, idVendor=046d, idProduct=081b, bcdDevice= 0.12 4904 [ 3.199103] usb 2-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=2 4905 [ 3.199115] usb 2-1.1: SerialNumber: AA5FCF90 4906 [ 3.526482] scsi 0:0:0:0: Direct-Access OCZ-VERT EX2 PQ: 0 ANSI: 6 4907 [ 3.527236] sd 0:0:0:0: Attached scsi generic sg0 type 0 4908 [ 3.528214] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB) 4909 [ 3.529529] sd 0:0:0:0: [sda] Write Protect is off 4910 [ 3.529559] sd 0:0:0:0: [sda] Mode Sense: 3b 00 00 00 4911 [ 3.531475] sd 0:0:0:0: [sda] No Caching mode page found 4912 [ 3.531505] sd 0:0:0:0: [sda] Assuming drive cache: write through 4913 [ 3.537462] sda: sda1 4914 [ 3.541056] sd 0:0:0:0: [sda] Attached SCSI disk 4915 [ 3.895680] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. 4916 [ 4.489896] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) 4917 [ 4.490608] systemd[1]: Detected architecture arm64. 4918 [ 4.493606] systemd[1]: Hostname set to <pine64>. 4919 [ 4.599592] dw-apb-uart 1c28000.serial: forbid DMA for kernel console 4920 [ 5.436125] systemd[1]: Queued start job for default target Graphical Interface. 4921 [ 5.438233] random: systemd: uninitialized urandom read (16 bytes read) 4922 [ 5.474009] systemd[1]: Created slice Slice /system/modprobe. 4923 [ 5.474766] random: systemd: uninitialized urandom read (16 bytes read) 4924 [ 5.477825] systemd[1]: Created slice Slice /system/serial-getty. 4925 [ 5.478258] random: systemd: uninitialized urandom read (16 bytes read) 4926 [ 5.480558] systemd[1]: Created slice User and Session Slice. 4927 [ 5.481041] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. 4928 [ 5.481625] systemd[1]: Started Forward Password Requests to Wall Directory Watch. 4929 [ 5.483133] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. 4930 [ 5.483703] systemd[1]: Reached target Local Encrypted Volumes. 4931 [ 5.484470] systemd[1]: Reached target Slice Units. 4932 [ 5.484799] systemd[1]: Reached target Swaps. 4933 [ 5.485093] systemd[1]: Reached target System Time Set. 4934 [ 5.485651] systemd[1]: Reached target Local Verity Protected Volumes. 4935 [ 5.507761] systemd[1]: Listening on RPCbind Server Activation Socket. 4936 [ 5.509967] systemd[1]: Listening on Syslog Socket. 4937 [ 5.511095] systemd[1]: Listening on fsck to fsckd communication Socket. 4938 [ 5.511745] systemd[1]: Listening on initctl Compatibility Named Pipe. 4939 [ 5.513245] systemd[1]: Listening on Journal Audit Socket. 4940 [ 5.514270] systemd[1]: Listening on Journal Socket (/dev/log). 4941 [ 5.515346] systemd[1]: Listening on Journal Socket. 4942 [ 5.516728] systemd[1]: Listening on udev Control Socket. 4943 [ 5.517792] systemd[1]: Listening on udev Kernel Socket. 4944 [ 5.523638] systemd[1]: Mounting Huge Pages File System... 4945 [ 5.530252] systemd[1]: Mounting POSIX Message Queue File System... 4946 [ 5.536431] systemd[1]: Mounting NFSD configuration filesystem... 4947 [ 5.543426] systemd[1]: Mounting Kernel Debug File System... 4948 [ 5.544609] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. 4949 [ 5.545716] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. 4950 [ 5.554688] systemd[1]: Starting Restore / save the current clock... 4951 [ 5.562976] systemd[1]: Starting Set the console keyboard layout... 4952 [ 5.563623] systemd[1]: Condition check resulted in Create List of Static Device Nodes being skipped. 4953 [ 5.570777] systemd[1]: Starting Load Kernel Module chromeos_pstore... 4954 [ 5.578534] systemd[1]: Starting Load Kernel Module configfs... 4955 [ 5.586367] systemd[1]: Starting Load Kernel Module drm... 4956 [ 5.597439] systemd[1]: Starting Load Kernel Module efi_pstore... 4957 [ 5.608279] systemd[1]: Starting Load Kernel Module fuse... 4958 [ 5.616212] systemd[1]: Starting Load Kernel Module pstore_blk... 4959 [ 5.624780] systemd[1]: Starting Load Kernel Module pstore_zone... 4960 [ 5.632873] systemd[1]: Starting Load Kernel Module ramoops... 4961 [ 5.641828] systemd[1]: Started Nameserver information manager. 4962 [ 5.643270] systemd[1]: Reached target Preparation for Network. 4963 [ 5.644665] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. 4964 [ 5.655105] systemd[1]: Starting Load Kernel Modules... 4965 [ 5.663362] systemd[1]: Starting Remount Root and Kernel File Systems... 4966 [ 5.672013] systemd[1]: Starting Coldplug All udev Devices... 4967 [ 5.687246] systemd[1]: Mounted Huge Pages File System. 4968 [ 5.688390] systemd[1]: Mounted POSIX Message Queue File System. 4969 [ 5.689688] systemd[1]: proc-fs-nfsd.mount: Mount process exited, code=exited, status=32/n/a 4970 [ 5.689738] systemd[1]: proc-fs-nfsd.mount: Failed with result 'exit-code'. 4971 [ 5.691946] systemd[1]: Failed to mount NFSD configuration filesystem. 4972 [ 5.692336] systemd[1]: Dependency failed for NFSv4 Client Tracking Daemon. 4973 [ 5.692499] systemd[1]: nfsdcld.service: Job nfsdcld.service/start failed with result 'dependency'. 4974 [ 5.692558] systemd[1]: Dependency failed for NFS server and services. 4975 [ 5.692686] systemd[1]: Dependency failed for NFS Mount Daemon. 4976 [ 5.692812] systemd[1]: nfs-mountd.service: Job nfs-mountd.service/start failed with result 'dependency'. 4977 [ 5.692867] systemd[1]: Dependency failed for NFSv4 ID-name mapping service. 4978 [ 5.692993] systemd[1]: nfs-idmapd.service: Job nfs-idmapd.service/start failed with result 'dependency'. 4979 [ 5.693030] systemd[1]: nfs-server.service: Job nfs-server.service/start failed with result 'dependency'. 4980 [ 5.694191] systemd[1]: Mounted Kernel Debug File System. 4981 [ 5.696991] systemd[1]: Finished Restore / save the current clock. 4982 [ 5.699539] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully. 4983 [ 5.700952] systemd[1]: Finished Load Kernel Module chromeos_pstore. 4984 [ 5.701756] EXT4-fs (sda1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. 4985 [ 5.708101] systemd[1]: modprobe@configfs.service: Deactivated successfully. 4986 [ 5.709490] systemd[1]: Finished Load Kernel Module configfs. 4987 [ 5.711668] systemd[1]: modprobe@drm.service: Deactivated successfully. 4988 [ 5.712954] systemd[1]: Finished Load Kernel Module drm. 4989 [ 5.715243] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. 4990 [ 5.716565] systemd[1]: Finished Load Kernel Module efi_pstore. 4991 [ 5.718937] systemd[1]: modprobe@fuse.service: Deactivated successfully. 4992 [ 5.720423] systemd[1]: Finished Load Kernel Module fuse. 4993 [ 5.770991] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully. 4994 [ 5.772462] systemd[1]: Finished Load Kernel Module pstore_blk. 4995 [ 5.774690] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully. 4996 [ 5.776199] systemd[1]: Finished Load Kernel Module pstore_zone. 4997 [ 5.778312] systemd[1]: modprobe@ramoops.service: Deactivated successfully. 4998 [ 5.779751] systemd[1]: Finished Load Kernel Module ramoops. 4999 [ 5.784883] systemd[1]: Finished Load Kernel Modules. 5000 [ 5.787871] systemd[1]: Finished Remount Root and Kernel File Systems. 5001 [ 5.790567] systemd[1]: Condition check resulted in FUSE Control File System being skipped. 5002 [ 5.795903] systemd[1]: Mounting Kernel Configuration File System... 5003 [ 5.796814] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. 5004 [ 5.806394] systemd[1]: Starting Load/Save Random Seed... 5005 [ 5.816255] systemd[1]: Starting Apply Kernel Variables... 5006 [ 5.823671] systemd[1]: Starting Create System Users... 5007 [ 5.863161] systemd[1]: Mounted Kernel Configuration File System. 5008 [ 5.880178] systemd[1]: Finished Create System Users. 5009 [ 5.890098] systemd[1]: Starting Create Static Device Nodes in /dev... 5010 [ 5.893181] systemd[1]: Finished Apply Kernel Variables. 5011 [ 5.950915] systemd[1]: Finished Create Static Device Nodes in /dev. 5012 [ 5.966116] systemd[1]: Starting Rule-based Manager for Device Events and Files... 5013 [ 5.969558] systemd[1]: Finished Set the console keyboard layout. 5014 [ 5.970817] systemd[1]: Reached target Preparation for Local File Systems. 5015 [ 5.978368] systemd[1]: Mounting /tmp... 5016 [ 5.995592] systemd[1]: Mounted /tmp. 5017 [ 5.996657] systemd[1]: Reached target Local File Systems. 5018 [ 6.003863] systemd[1]: Starting Armbian leds state... 5019 [ 6.013532] systemd[1]: Starting Armbian ZRAM config... 5020 [ 6.022012] systemd[1]: Starting Set console font and keymap... 5021 [ 6.022904] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. 5022 [ 6.023283] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. 5023 [ 6.030891] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. 5024 [ 6.050050] systemd[1]: Finished Set console font and keymap. 5025 [ 6.099364] systemd[1]: armbian-led-state.service: Main process exited, code=exited, status=1/FAILURE 5026 [ 6.100313] systemd[1]: armbian-led-state.service: Failed with result 'exit-code'. 5027 [ 6.102367] systemd[1]: Failed to start Armbian leds state. 5028 [ 6.226360] systemd[1]: Finished Coldplug All udev Devices. 5029 [ 6.251853] systemd[1]: Starting Helper to synchronize boot up for ifupdown... 5030 [ 6.258264] systemd[1]: Started Rule-based Manager for Device Events and Files. 5031 [ 6.368491] systemd[1]: armbian-zram-config.service: Main process exited, code=exited, status=1/FAILURE 5032 [ 6.369557] systemd[1]: armbian-zram-config.service: Failed with result 'exit-code'. 5033 [ 6.372617] systemd[1]: Failed to start Armbian ZRAM config. 5034 [ 6.406822] systemd[1]: Starting Armbian memory supported logging... 5035 [ 6.487579] urandom_read_iter: 51 callbacks suppressed 5036 [ 6.487608] random: systemd: uninitialized urandom read (16 bytes read) 5037 [ 6.579458] random: systemd: uninitialized urandom read (16 bytes read) 5038 [ 6.579604] random: systemd: uninitialized urandom read (16 bytes read) 5039 [ 6.726347] random: crng init done 5040 [ 6.726376] random: 8 urandom warning(s) missed due to ratelimiting 5041 [ 6.749762] systemd[1]: Finished Load/Save Random Seed. 5042 [ 6.751582] systemd[1]: Condition check resulted in First Boot Complete being skipped. 5043 [ 6.751830] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. 5044 [ 6.752051] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. 5045 [ 6.842318] systemd[1]: Found device /dev/ttyS0. 5046 [ 7.402050] systemd[1]: Found device /sys/subsystem/net/devices/eth0. 5047 [ 7.423452] systemd[1]: Started ifup for eth0. 5048 [ 7.427735] systemd[1]: Finished Helper to synchronize boot up for ifupdown. 5049 [ 7.435714] systemd[1]: Starting Raise network interfaces... 5050 [ 7.441059] systemd[1]: ifup@eth0.service: Main process exited, code=exited, status=1/FAILURE 5051 [ 7.442566] systemd[1]: ifup@eth0.service: Failed with result 'exit-code'. 5052 [ 8.004404] systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE 5053 [ 8.005291] systemd[1]: networking.service: Failed with result 'exit-code'. 5054 [ 8.007020] systemd[1]: Failed to start Raise network interfaces. 5055 [ 10.579844] systemd[1]: Finished Armbian memory supported logging. 5056 [ 10.625691] systemd[1]: Starting Journal Service... 5057 [ 10.883893] systemd[1]: Started Journal Service. 5058 [ 10.935071] systemd-journald[586]: Received client request to flush runtime journal. 5059 [ 15.133231] phy_rtl8211e_led_fixup in 5060 [ 15.137038] dwmac-sun8i 1c30000.ethernet eth0: PHY [stmmac-0:01] driver [RTL8211E Gigabit Ethernet] (irq=POLL) 5061 [ 15.138465] dwmac-sun8i 1c30000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0 5062 [ 15.139409] dwmac-sun8i 1c30000.ethernet eth0: No Safety Features support found 5063 [ 15.139434] dwmac-sun8i 1c30000.ethernet eth0: No MAC Management Counters available 5064 [ 15.139445] dwmac-sun8i 1c30000.ethernet eth0: PTP not supported by HW 5065 [ 15.140270] dwmac-sun8i 1c30000.ethernet eth0: configuring for phy/rgmii-txid link mode 5066 [ 17.194174] dwmac-sun8i 1c30000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx 5067 [ 17.194245] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 5068 [ 34.037165] vcc-mipi: disabling 5069 [ 34.037456] vcc-1v2-hsic: disabling 5070 5071 5072 5073 ### interrupts: 5074 CPU0 CPU1 CPU2 CPU3 5075 11: 464566 236186 253247 178562 GICv2 30 Level arch_timer 5076 14: 339196 0 0 0 GICv2 50 Level timer@1c20c00 5077 15: 0 0 0 0 GICv2 148 Level arm-pmu 5078 16: 0 0 0 0 GICv2 149 Level arm-pmu 5079 17: 0 0 0 0 GICv2 150 Level arm-pmu 5080 18: 0 0 0 0 GICv2 151 Level arm-pmu 5081 19: 0 0 0 0 GICv2 82 Level 1c02000.dma-controller 5082 20: 0 0 0 0 GICv2 118 Level 1c0c000.lcd-controller 5083 21: 0 0 0 0 GICv2 119 Level 1c0d000.lcd-controller 5084 23: 230 0 0 16654 GICv2 92 Level sunxi-mmc 5085 24: 25 0 0 0 GICv2 93 Level sunxi-mmc 5086 25: 0 0 0 0 GICv2 126 Level sun8i-ce-ns 5087 26: 0 0 0 0 GICv2 81 Level 1c17000.mailbox 5088 27: 0 0 0 0 GICv2 103 Level musb-hdrc.4.auto 5089 28: 7961 96518 0 0 GICv2 104 Level ehci_hcd:usb1 5090 29: 0 0 0 0 GICv2 105 Level ohci_hcd:usb3 5091 30: 65 0 0 0 GICv2 106 Level ehci_hcd:usb2 5092 31: 0 0 0 0 GICv2 107 Level ohci_hcd:usb4 5093 39: 0 0 0 0 GICv2 60 Level 1c22e00.codec 5094 40: 68052 0 0 0 GICv2 63 Level ths 5095 41: 4 0 0 0 GICv2 32 Level ttyS0 5096 43: 0 0 0 0 GICv2 39 Level mv64xxx_i2c 5097 44: 0 0 0 0 GICv2 97 Level sun6i-spi 5098 45: 660564 0 0 0 GICv2 114 Level eth0 5099 55: 0 0 0 0 GICv2 120 Level 1ee0000.hdmi 5100 56: 0 0 0 0 sun6i-r-intc 40 Level 1f00000.rtc 5101 59: 168 0 0 0 GICv2 71 Level sunxi-rsb 5102 93: 0 0 0 0 sun6i-r-intc 32 Level axp803 5103 120: 0 0 0 0 axp803 26 Edge axp20x-pek-dbr 5104 121: 0 0 0 0 axp803 27 Edge axp20x-pek-dbf 5105 IPI0: 75981 144466 135009 123221 Rescheduling interrupts 5106 IPI1: 15470 186070 177926 3412 Function call interrupts 5107 IPI2: 0 0 0 0 CPU stop interrupts 5108 IPI3: 0 0 0 0 CPU stop (for crash dump) interrupts 5109 IPI4: 0 48234 34466 36387 Timer broadcast interrupts 5110 IPI5: 0 0 0 0 IRQ work interrupts 5111 IPI6: 0 0 0 0 CPU wake-up interrupts 5112 Err: 0
  12. Dear all, I have a nanopi neo plus 2 and i need a realtime kernel to support mpd and SPDIF, where can i get one or how do i make one ? Thanks in advance, Klaas Eenkhoorn
  13. Hello, excuse in advance my English which is not my native language. I am electronicien, so i am a Noob on Linux, i prefer the hardware. I'm working on a "NanoPI NEO" and I would like to use an EMMC with an sd slot I drew. Because i kill 3 sd card last years. So i do it, like this i use the chip thgbmjg6c1lbail which is an emmc v5.1 8gO. https://jlcpcb.com/partdetail/Kioxia-THGBMJG6C1LBAIL/C524518 This card works very well on my computer with ubuntu, or my RPI4 with raspbian, but impossible to use it with armbian as well on my nanopi neo or my nanopi M1. as the log on my rpi4 with raspbian pi@raspberrypi:~ $ dmesg | grep mmc [ 1.705326] mmc-bcm2835 fe300000.mmcnr: mmc_debug:0 mmc_debug2:0 [ 1.705347] mmc-bcm2835 fe300000.mmcnr: DMA channel allocated [ 1.772023] mmc0: SDHCI controller on fe340000.mmc [fe340000.mmc] using ADMA [ 1.831850] mmc1: new high speed SDIO card at address 0001 [ 1.880942] mmc0: new DDR MMC card at address 0001 [ 1.881954] mmcblk0: mmc0:0001 008GB0 7.28 GiB [ 1.885195] mmcblk0: p1 p2 [ 1.885754] mmcblk0: mmc0:0001 008GB0 7.28 GiB [ 1.886297] mmcblk0boot0: mmc0:0001 008GB0 4.00 MiB [ 1.888974] mmcblk0boot1: mmc0:0001 008GB0 4.00 MiB [ 1.891241] mmcblk0rpmb: mmc0:0001 008GB0 4.00 MiB, chardev (242:0) [ 1.923025] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. [ 4.296326] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null). Quota mode: none. [ 7.851474] brcmfmac mmc1:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.raspberrypi,4-model-b.bin failed with error -2 but with my nano-pi, we can see that the u-boot recognized this emmc (I use armbian 22.08.1 Bullseye with kernel linux 5.17.11-sunxi) U-Boot 2021.10-armbian (Jun 22 2022 - 07:17:54 +0000) Allwinner Technology CPU: Allwinner H3 (SUN8I 1680) Model: FriendlyARM NanoPi NEO DRAM: 512 MiB MMC: mmc@1c0f000: 0, mmc@1c11000: 1 Loading Environment from FAT... Unable to use mmc 0:1... In: serial Out: serial Err: serial Net: phy interface0 Error: ethernet@1c30000 address not set. No ethernet found. starting USB... Bus usb@1c1a000: USB EHCI 1.00 Bus usb@1c1a400: USB OHCI 1.0 Bus usb@1c1d000: USB EHCI 1.00 Bus usb@1c1d400: USB OHCI 1.0 scanning bus usb@1c1a000 for devices... 1 USB Device(s) found scanning bus usb@1c1a400 for devices... 1 USB Device(s) found scanning bus usb@1c1d000 for devices... 1 USB Device(s) found scanning bus usb@1c1d400 for devices... 2 USB Device(s) found scanning usb for storage devices... 0 Storage Device(s) found Autoboot in 1 seconds, press <Space> to stop => mmc info Device: mmc@1c0f000 Manufacturer ID: 11 OEM: 100 Name: 008GB Bus Speed: 52000000 Mode: MMC High Speed (52MHz) Rd Block Len: 512 MMC version 5.1 High Capacity: Yes Capacity: 7.3 GiB Bus Width: 4-bit Erase Group Size: 512 KiB HC WP Group Size: 4 MiB User Capacity: 7.3 GiB WRREL Boot Capacity: 4 MiB ENH RPMB Capacity: 4 MiB ENH Boot area 0 is not write protected Boot area 1 is not write protected => but we would say that it blocks when writing to the emmc. [ 8.470442] sunxi-mmc 1c0f000.mmc: data error, sending stop command [ 9.423453] sched: RT throttling activated [ 9.475465] sunxi-mmc 1c0f000.mmc: send stop command failed switch to partitions #0, OK mmc0(part 0) is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 3964 bytes read in 2 ms (1.9 MiB/s) ## Executing script at 43100000 U-boot loaded from SD Boot script loaded from mmc 231 bytes read in 2 ms (112.3 KiB/s) 23183691 bytes read in 960 ms (23 MiB/s) 8394224 bytes read in 348 ms (23 MiB/s) Found mainline kernel configuration 32492 bytes read in 8 ms (3.9 MiB/s) 504 bytes read in 5 ms (97.7 KiB/s) Applying kernel provided DT overlay sun8i-h3-usbhost1.dtbo 504 bytes read in 4 ms (123 KiB/s) Applying kernel provided DT overlay sun8i-h3-usbhost2.dtbo 4185 bytes read in 4 ms (1021.5 KiB/s) Applying kernel provided DT fixup script (sun8i-h3-fixup.scr) ## Executing script at 45000000 Kernel image @ 0x42000000 [ 0x000000 - 0x8015f0 ] ## Loading init Ramdisk from Legacy Image at 43400000 ... Image Name: uInitrd Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 23183627 Bytes = 22.1 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 43000000 Booting using the fdt blob at 0x43000000 EHCI failed to shut down host controller. Loading Ramdisk to 489e3000, end 49fff10b ... OK Loading Device Tree to 48972000, end 489e2fff ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.17.11-sunxi (root@1cb3926c6d47) (arm-linux-gnueabihf-gcc (GNU Toolchain f2 [ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c5387d [ 0.000000] CPU: div instructions available: patching division code [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] OF: fdt: Machine model: FriendlyARM NanoPi NEO [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] cma: Reserved 104 MiB at 0x59400000 [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000040000000-0x000000005fffffff] [ 0.000000] HighMem empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x000000005fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000005fffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: Using PSCI v0.1 Function IDs from DT [ 0.000000] percpu: Embedded 16 pages/cpu s36812 r8192 d20532 u65536 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 129920 [ 0.000000] Kernel command line: root=UUID=e2fd2840-e65e-4df1-bbb5-1cd3ab3be8ad rootwait rootfstype=e1 [ 0.000000] Unknown kernel command line parameters "ubootpart=f7f5b488-01 ubootsource=mmc sunxi_ve_me. [ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] Memory: 373348K/524288K available (9216K kernel code, 1495K rwdata, 3396K rodata, 1024K i) [ 0.000000] random: get_random_u32 called from __kmem_cache_create+0x1b/0x2c0 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] ftrace: allocating 44496 entries in 131 pages [ 0.000000] ftrace: allocated 131 pages with 3 groups [ 0.000000] trace event string verifier disabled [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Rude variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns [ 0.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000038] Switching to timer-based delay loop, resolution 41ns [ 0.000531] Console: colour dummy device 80x30 [ 0.000650] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS) [ 0.000687] pid_max: default: 32768 minimum: 301 [ 0.001040] LSM: Security Framework initializing [ 0.001166] Yama: becoming mindful. [ 0.001467] AppArmor: AppArmor initialized [ 0.001682] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.001720] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.003684] CPU: Testing write buffer coherency: ok [ 0.004505] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.005645] cblist_init_generic: Setting adjustable number of callback queues. [ 0.005679] cblist_init_generic: Setting shift to 2 and lim to 1. [ 0.005852] cblist_init_generic: Setting shift to 2 and lim to 1. [ 0.006063] Setting up static identity map for 0x40100000 - 0x40100054 [ 0.006310] rcu: Hierarchical SRCU implementation. [ 0.008646] smp: Bringing up secondary CPUs ... [ 0.020021] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.031605] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002 [ 0.043017] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003 [ 0.043193] smp: Brought up 1 node, 4 CPUs [ 0.043252] SMP: Total of 4 processors activated (192.00 BogoMIPS). [ 0.043275] CPU: All CPU(s) started in HYP mode. [ 0.043288] CPU: Virtualization extensions available. [ 0.044217] allocated 524288 bytes of page_ext [ 0.045309] devtmpfs: initialized [ 0.060336] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5 [ 0.060764] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100s [ 0.060866] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.069781] pinctrl core: initialized pinctrl subsystem [ 0.072078] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.079152] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.080419] audit: initializing netlink subsys (disabled) [ 0.080797] audit: type=2000 audit(0.056:1): state=initialized audit_enabled=0 res=1 [ 0.081681] thermal_sys: Registered thermal governor 'fair_share' [ 0.081699] thermal_sys: Registered thermal governor 'bang_bang' [ 0.081720] thermal_sys: Registered thermal governor 'step_wise' [ 0.082531] cpuidle: using governor ladder [ 0.082607] cpuidle: using governor menu [ 0.083748] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.083780] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.094352] platform 1c0c000.lcd-controller: Fixing up cyclic dependency with 1100000.mixer [ 0.138027] cryptd: max_cpu_qlen set to 1000 [ 0.208046] raid6: neonx8 gen() 370 MB/s [ 0.276322] raid6: neonx4 gen() 391 MB/s [ 0.344543] raid6: neonx2 gen() 435 MB/s [ 0.412836] raid6: neonx1 gen() 388 MB/s [ 0.481195] raid6: int32x8 gen() 144 MB/s [ 0.549303] raid6: int32x4 gen() 168 MB/s [ 0.617558] raid6: int32x2 gen() 190 MB/s [ 0.685862] raid6: int32x1 gen() 191 MB/s [ 0.685883] raid6: using algorithm neonx2 gen() 435 MB/s [ 0.754054] raid6: .... xor() 311 MB/s, rmw enabled [ 0.754074] raid6: using neon recovery algorithm [ 0.756675] iommu: Default domain type: Translated [ 0.756703] iommu: DMA domain TLB invalidation policy: strict mode [ 0.757358] SCSI subsystem initialized [ 0.758282] usbcore: registered new interface driver usbfs [ 0.758388] usbcore: registered new interface driver hub [ 0.758476] usbcore: registered new device driver usb [ 0.758667] mc: Linux media interface: v0.10 [ 0.758737] videodev: Linux video capture interface: v2.00 [ 0.758982] pps_core: LinuxPPS API ver. 1 registered [ 0.759001] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.759046] PTP clock support registered [ 0.759986] Advanced Linux Sound Architecture Driver Initialized. [ 0.761595] NetLabel: Initializing [ 0.761621] NetLabel: domain hash size = 128 [ 0.761637] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.761817] NetLabel: unlabeled traffic allowed by default [ 0.763495] clocksource: Switched to clocksource arch_sys_counter [ 0.834969] VFS: Disk quotas dquot_6.6.0 [ 0.835166] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 0.836383] AppArmor: AppArmor Filesystem Enabled [ 1.057554] NET: Registered PF_INET protocol family [ 1.057896] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 1.059615] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 1.059921] TCP established hash table entries: 4096 (order: 2, 16384 bytes, linear) [ 1.060049] TCP bind hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 1.060187] TCP: Hash tables configured (established 4096 bind 4096) [ 1.060424] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 1.060497] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 1.060879] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.061564] Trying to unpack rootfs image as initramfs... [ 1.064148] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available [ 1.066526] Initialise system trusted keyrings [ 1.066661] Key type blacklist registered [ 1.067073] workingset: timestamp_bits=14 max_order=17 bucket_order=3 [ 1.079341] zbud: loaded [ 1.083290] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.085485] fuse: init (API version 7.36) [ 1.095167] integrity: Platform Keyring initialized [ 1.316216] xor: measuring software checksum speed [ 1.332239] arm4regs : 617 MB/sec [ 1.355288] 8regs : 428 MB/sec [ 1.379727] 32regs : 403 MB/sec [ 1.395503] neon : 626 MB/sec [ 1.395533] xor: using function: neon (626 MB/sec) [ 1.395568] Key type asymmetric registered [ 1.395588] Asymmetric key parser 'x509' registered [ 4.347069] Freeing initrd memory: 22644K [ 4.388727] alg: self-tests for CTR-KDF (hmac(sha256)) passed [ 4.389205] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 4.389525] io scheduler mq-deadline registered [ 4.389555] io scheduler kyber registered [ 4.390045] io scheduler bfq registered [ 4.414902] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled [ 4.421338] misc dump reg init [ 4.435222] brd: module loaded [ 4.444830] loop: module loaded [ 4.449716] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found [ 4.449759] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found [ 4.449911] dwmac-sun8i 1c30000.ethernet: supply phy not found, using dummy regulator [ 4.450208] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator [ 4.450565] dwmac-sun8i 1c30000.ethernet: PTP uses main clock [ 4.450640] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 148000 (expect 5800) [ 4.451261] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported [ 4.451298] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported [ 4.451319] dwmac-sun8i 1c30000.ethernet: COE Type 2 [ 4.451341] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported [ 4.451363] dwmac-sun8i 1c30000.ethernet: Normal descriptors [ 4.451383] dwmac-sun8i 1c30000.ethernet: Chain mode enabled [ 4.451420] dwmac-sun8i 1c30000.ethernet: device MAC address 62:23:d4:40:79:45 [ 4.454525] dwmac-sun8i 1c30000.ethernet: Found internal PHY node [ 4.455681] dwmac-sun8i 1c30000.ethernet: Switch mux to internal PHY [ 4.455759] dwmac-sun8i 1c30000.ethernet: Powering internal PHY [ 4.480097] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 4.480198] ehci-platform: EHCI generic platform driver [ 4.480618] ehci-platform 1c1a000.usb: EHCI Host Controller [ 4.480683] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 [ 4.482025] ehci-platform 1c1a000.usb: irq 36, io mem 0x01c1a000 [ 4.495522] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 [ 4.496235] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17 [ 4.496275] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.496302] usb usb1: Product: EHCI Host Controller [ 4.496324] usb usb1: Manufacturer: Linux 5.17.11-sunxi ehci_hcd [ 4.496347] usb usb1: SerialNumber: 1c1a000.usb [ 4.497468] hub 1-0:1.0: USB hub found [ 4.497617] hub 1-0:1.0: 1 port detected [ 4.498800] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 4.498851] ohci-platform: OHCI generic platform driver [ 4.499246] ohci-platform 1c1a400.usb: Generic Platform OHCI controller [ 4.499304] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 2 [ 4.499842] ohci-platform 1c1a400.usb: irq 37, io mem 0x01c1a400 [ 4.563990] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17 [ 4.564029] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.564056] usb usb2: Product: Generic Platform OHCI controller [ 4.564078] usb usb2: Manufacturer: Linux 5.17.11-sunxi ohci_hcd [ 4.564101] usb usb2: SerialNumber: 1c1a400.usb [ 4.565131] hub 2-0:1.0: USB hub found [ 4.565242] hub 2-0:1.0: 1 port detected [ 4.567270] usbcore: registered new interface driver usb-storage [ 4.569419] sun6i-rtc 1f00000.rtc: registered as rtc0 [ 4.569485] sun6i-rtc 1f00000.rtc: setting system clock to 1970-01-01T00:00:13 UTC (13) [ 4.569754] sun6i-rtc 1f00000.rtc: RTC enabled [ 4.570366] i2c_dev: i2c /dev entries driver [ 4.573219] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 4.575945] ledtrig-cpu: registered to indicate activity on CPUs [ 4.576848] sun8i-ce 1c15000.crypto: Set mod clock to 50000000 (50 Mhz) from 24000000 (24 Mhz) [ 4.577354] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 4.577994] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 4.578419] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 4.578811] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 4.579140] sun8i-ce 1c15000.crypto: Register cbc(aes) [ 4.579258] sun8i-ce 1c15000.crypto: Register ecb(aes) [ 4.579328] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) [ 4.579369] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) [ 4.579409] sun8i-ce 1c15000.crypto: Register md5 [ 4.579502] sun8i-ce 1c15000.crypto: Register sha1 [ 4.579549] sun8i-ce 1c15000.crypto: Register sha224 [ 4.579590] sun8i-ce 1c15000.crypto: Register sha256 [ 4.579630] sun8i-ce 1c15000.crypto: Register sha384 [ 4.579670] sun8i-ce 1c15000.crypto: Register sha512 [ 4.579710] sun8i-ce 1c15000.crypto: Register stdrng [ 4.579779] sun8i-ce 1c15000.crypto: TRNG not supported [ 4.579801] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 1 [ 4.580555] hid: raw HID events driver (C) Jiri Kosina [ 4.580843] usbcore: registered new interface driver usbhid [ 4.580867] usbhid: USB HID core driver [ 4.589251] Initializing XFRM netlink socket [ 4.590258] NET: Registered PF_INET6 protocol family [ 4.633029] Segment Routing with IPv6 [ 4.633186] In-situ OAM (IOAM) with IPv6 [ 4.633432] NET: Registered PF_PACKET protocol family [ 4.633503] NET: Registered PF_KEY protocol family [ 4.633650] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scr. [ 4.633901] 8021q: 802.1Q VLAN Support v1.8 [ 4.634021] Key type dns_resolver registered [ 4.634934] Registering SWP/SWPB emulation handler [ 4.636341] registered taskstats version 1 [ 4.636385] Loading compiled-in X.509 certificates [ 4.650808] Loaded X.509 cert 'Build time autogenerated kernel key: e62f9518e6442c2de07beea3ec409f9b0' [ 4.658787] zswap: loaded using pool zstd/z3fold [ 4.660130] Key type ._fscrypt registered [ 4.660169] Key type .fscrypt registered [ 4.660184] Key type fscrypt-provisioning registered [ 4.669839] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=yes [ 4.710303] Key type encrypted registered [ 4.710381] AppArmor: AppArmor sha1 policy hashing enabled [ 4.749871] sun8i-h3-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver [ 4.753318] sun8i-h3-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver [ 4.753959] sun8i-h3-pinctrl 1c20800.pinctrl: supply vcc-pa not found, using dummy regulator [ 4.755072] printk: console [ttyS0] disabled [ 4.755257] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 49, base_baud = 1500000) is a 16550A [ 6.230025] printk: console [ttyS0] enabled [ 6.241469] sun8i-h3-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator [ 6.241615] sun8i-h3-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator [ 6.242366] sun8i-h3-pinctrl 1c20800.pinctrl: supply vcc-pc not found, using dummy regulator [ 6.268088] leds-gpio: probe of leds failed with error -16 [ 6.275339] sun8i-h3-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator [ 6.279749] sunxi-mmc 1c0f000.mmc: Got CD GPIO [ 6.285295] sun8i-h3-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator [ 6.299970] ehci-platform 1c1b000.usb: EHCI Host Controller [ 6.300185] sunxi-mmc 1c11000.mmc: initialized, max. request size: 16384 KB [ 6.305640] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 3 [ 6.314011] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB [ 6.325320] sunxi-mmc 1c11000.mmc: no support for card's volts [ 6.333172] mmc2: error -22 whilst initialising SDIO card [ 6.339043] ehci-platform 1c1b000.usb: irq 38, io mem 0x01c1b000 [ 6.359504] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 [ 6.366291] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17 [ 6.374609] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 6.381882] usb usb3: Product: EHCI Host Controller [ 6.386794] usb usb3: Manufacturer: Linux 5.17.11-sunxi ehci_hcd [ 6.392853] usb usb3: SerialNumber: 1c1b000.usb [ 6.398519] hub 3-0:1.0: USB hub found [ 6.402413] hub 3-0:1.0: 1 port detected [ 6.408543] ehci-platform 1c1c000.usb: EHCI Host Controller [ 6.414218] ehci-platform 1c1c000.usb: new USB bus registered, assigned bus number 4 [ 6.422686] ehci-platform 1c1c000.usb: irq 40, io mem 0x01c1c000 [ 6.443518] ehci-platform 1c1c000.usb: USB 2.0 started, EHCI 1.00 [ 6.450293] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17 [ 6.458624] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 6.465885] usb usb4: Product: EHCI Host Controller [ 6.470796] usb usb4: Manufacturer: Linux 5.17.11-sunxi ehci_hcd [ 6.476833] usb usb4: SerialNumber: 1c1c000.usb [ 6.482446] hub 4-0:1.0: USB hub found [ 6.486334] hub 4-0:1.0: 1 port detected [ 6.492356] ehci-platform 1c1d000.usb: EHCI Host Controller [ 6.498017] ehci-platform 1c1d000.usb: new USB bus registered, assigned bus number 5 [ 6.506534] ehci-platform 1c1d000.usb: irq 42, io mem 0x01c1d000 [ 6.516636] mmc0: new DDR MMC card at address 0001 [ 6.524244] mmcblk0: mmc0:0001 008GB0 7.28 GiB [ 6.527591] ehci-platform 1c1d000.usb: USB 2.0 started, EHCI 1.00 [ 6.535325] mmcblk0: p1 [ 6.535839] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17 [ 6.540462] mmcblk0boot0: mmc0:0001 008GB0 4.00 MiB [ 6.546236] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 6.557425] mmcblk0boot1: mmc0:0001 008GB0 4.00 MiB [ 6.558466] usb usb5: Product: EHCI Host Controller [ 6.568361] usb usb5: Manufacturer: Linux 5.17.11-sunxi ehci_hcd [ 6.574417] usb usb5: SerialNumber: 1c1d000.usb [ 6.580256] hub 5-0:1.0: USB hub found [ 6.584180] hub 5-0:1.0: 1 port detected [ 6.590420] ohci-platform 1c1b400.usb: Generic Platform OHCI controller [ 6.597145] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 6 [ 6.605518] ohci-platform 1c1b400.usb: irq 39, io mem 0x01c1b400 [ 6.676034] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17 [ 6.684360] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 6.691617] usb usb6: Product: Generic Platform OHCI controller [ 6.697567] usb usb6: Manufacturer: Linux 5.17.11-sunxi ohci_hcd [ 6.703603] usb usb6: SerialNumber: 1c1b400.usb [ 6.709242] hub 6-0:1.0: USB hub found [ 6.713133] hub 6-0:1.0: 1 port detected [ 6.719206] ohci-platform 1c1c400.usb: Generic Platform OHCI controller [ 6.725959] ohci-platform 1c1c400.usb: new USB bus registered, assigned bus number 7 [ 6.734312] ohci-platform 1c1c400.usb: irq 41, io mem 0x01c1c400 [ 6.803992] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17 [ 6.812319] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 6.819579] usb usb7: Product: Generic Platform OHCI controller [ 6.825530] usb usb7: Manufacturer: Linux 5.17.11-sunxi ohci_hcd [ 6.831567] usb usb7: SerialNumber: 1c1c400.usb [ 6.837178] hub 7-0:1.0: USB hub found [ 6.841097] hub 7-0:1.0: 1 port detected [ 6.847031] ohci-platform 1c1d400.usb: Generic Platform OHCI controller [ 6.853781] ohci-platform 1c1d400.usb: new USB bus registered, assigned bus number 8 [ 6.862204] ohci-platform 1c1d400.usb: irq 43, io mem 0x01c1d400 [ 6.932003] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.17 [ 6.940326] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 6.947597] usb usb8: Product: Generic Platform OHCI controller [ 6.953548] usb usb8: Manufacturer: Linux 5.17.11-sunxi ohci_hcd [ 6.959585] usb usb8: SerialNumber: 1c1d400.usb [ 6.965257] hub 8-0:1.0: USB hub found [ 6.969142] hub 8-0:1.0: 1 port detected [ 6.974792] of_cfs_init [ 6.977627] of_cfs_init: OK [ 6.980757] ALSA device list: [ 6.983784] No soundcards found. [ 6.996882] Freeing unused kernel image (initmem) memory: 1024K [ 7.011971] Run /init as init process Loading, please wait... Starting version 247.3-7 [ 7.279556] usb 8-1: new full-speed USB device number 2 using ohci-platform [ 7.526606] usb 8-1: New USB device found, idVendor=0403, idProduct=6001, bcdDevice= 6.00 [ 7.535064] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 7.542267] usb 8-1: Product: EnOcean USB 300 DB [ 7.546932] usb 8-1: Manufacturer: EnOcean GmbH [ 7.551497] usb 8-1: SerialNumber: FT2LNY6B [ 7.980640] random: fast init done Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... Scanning for Btrfs filesystems done. Begin: Will now check root file system ... fsck from util-linux 2.36.1 [/sbin/fsck.ext4 (1) -- /dev/mmcblk0p1] fsck.ext4 -a -C0 /dev/mmcblk0p1 armbian_root: recovering journal [ 8.470442] sunxi-mmc 1c0f000.mmc: data error, sending stop command [ 9.423453] sched: RT throttling activated [ 9.475465] sunxi-mmc 1c0f000.mmc: send stop command failed [ 37.879518] vcc3v0: disabling [ 37.882552] vcc5v0: disabling and it's stop I know I did a novel. A big thank you in advance for your help, I've been obsessed with this problem for a month. Thanks a lot Best regard
  14. Hi, armbian failed to boot from nfs. It's mandatory to burn armbian on sdcard and do a first boot? I compiled uboot for orange pi pc. Then i burned uboot on a sdcard. I am able to boot the kernel and i show the nfs mount but it fail without an error message after [ OK ] Started Rule-based Manager for Device Events and Files. I mounted the nfs folder from another computer as nfs3 fs and i am able to write on it. But there are no user folder on the /home/ here the full boot log Hit any key to stop autoboot: 0 switch to partitions #0, OK mmc0 is current device Device 0: unknown device ethernet@1c30000 Waiting for PHY auto negotiation to complete. done BOOTP broadcast 1 DHCP client bound to address 192.168.2.210 (13 ms) Using ethernet@1c30000 device TFTP from server 192.168.2.1; our IP address is 192.168.2.210 Filename 'pxelinux.0'. Load address: 0x42000000 Loading: #### 1.6 MiB/s done Bytes transferred = 46909 (b73d hex) missing environment variable: pxeuuid Retrieving file: pxelinux.cfg/01-02-81-1b-1a-2e-09 Using ethernet@1c30000 device TFTP from server 192.168.2.1; our IP address is 192.168.2.210 Filename 'pxelinux.cfg/01-02-81-1b-1a-2e-09'. Load address: 0x43200000 Loading: # 49.8 KiB/s done Bytes transferred = 206 (ce hex) Config file 'pxelinux.0' found 1: linux Retrieving file: uInitrd-5.15.48-sunxi Using ethernet@1c30000 device TFTP from server 192.168.2.1; our IP address is 192.168.2.210 Filename 'uInitrd-5.15.48-sunxi'. Load address: 0x43400000 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ############# 1.6 MiB/s done Bytes transferred = 12591409 (c02131 hex) Retrieving file: vmlinuz-5.15.48-sunxi Using ethernet@1c30000 device TFTP from server 192.168.2.1; our IP address is 192.168.2.210 Filename 'vmlinuz-5.15.48-sunxi'. Load address: 0x42000000 Loading: ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################################# ################################################### 2.1 MiB/s done Bytes transferred = 8378512 (7fd890 hex) append: root=/dev/nfs initrd=uInitrd-5.15.48-sunxi nfsroot=192.168.1.2:/mnt/sda1/nfsshare/nfsroot/02-81-1B-1A-2E-09 ip=dhcp rw Retrieving file: dtb-5.15.48-sunxi/sun8i-h3-orangepi-pc.dtb Using ethernet@1c30000 device TFTP from server 192.168.2.1; our IP address is 192.168.2.210 Filename 'dtb-5.15.48-sunxi/sun8i-h3-orangepi-pc.dtb'. Load address: 0x43000000 Loading: ### 1.6 MiB/s done Bytes transferred = 32077 (7d4d hex) Kernel image @ 0x42000000 [ 0x000000 - 0x7fd890 ] ## Loading init Ramdisk from Legacy Image at 43400000 ... Image Name: uInitrd Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 12591345 Bytes = 12 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 43000000 Booting using the fdt blob at 0x43000000 EHCI failed to shut down host controller. Loading Ramdisk to 493fd000, end 49fff0f1 ... OK Loading Device Tree to 493f2000, end 493fcd4c ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 5.15.48-sunxi (root@0b76cad7afe5) (arm-linux-gnueabihf-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 2.32.0.20190321) #22.05.3 SMP Wed Jun 22 07:35:10 UTC 2022 [ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=50c5387d [ 0.000000] CPU: div instructions available: patching division code [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache [ 0.000000] OF: fdt: Machine model: Xunlong Orange Pi PC [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] cma: Reserved 128 MiB at 0x78000000 [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000040000000-0x000000006fffffff] [ 0.000000] HighMem [mem 0x0000000070000000-0x000000007fffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: Using PSCI v0.1 Function IDs from DT [ 0.000000] percpu: Embedded 17 pages/cpu s38540 r8192 d22900 u69632 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 260416 [ 0.000000] Kernel command line: root=/dev/nfs initrd=uInitrd-5.15.48-sunxi nfsroot=192.168.1.2:/mnt/sda1/nfsshare/nfsroot/02-81-1B-1A-2E-09 ip=dhcp rw [ 0.000000] Unknown kernel command line parameters "nfsroot=192.168.1.2:/mnt/sda1/nfsshare/nfsroot/02-81-1B-1A-2E-09", will be passed to user space. [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] Memory: 878608K/1048576K available (9216K kernel code, 1507K rwdata, 3388K rodata, 1024K init, 324K bss, 38896K reserved, 131072K cma-reserved, 131072K highmem) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] ftrace: allocating 43925 entries in 129 pages [ 0.000000] ftrace: allocated 129 pages with 2 groups [ 0.000000] trace event string verifier disabled [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Rude variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000019] Switching to timer-based delay loop, resolution 41ns [ 0.000341] Console: colour dummy device 80x30 [ 0.000848] printk: console [tty0] enabled [ 0.000917] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000951] pid_max: default: 32768 minimum: 301 [ 0.001437] LSM: Security Framework initializing [ 0.001530] Yama: becoming mindful. [ 0.001749] AppArmor: AppArmor initialized [ 0.001998] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.002036] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.003469] CPU: Testing write buffer coherency: ok [ 0.004020] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.004910] Setting up static identity map for 0x40100000 - 0x40100054 [ 0.005069] rcu: Hierarchical SRCU implementation. [ 0.006453] smp: Bringing up secondary CPUs ... [ 0.017467] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.028580] CPU2: thread -1, cpu 2, socket 0, mpidr 80000002 [ 0.039588] CPU3: thread -1, cpu 3, socket 0, mpidr 80000003 [ 0.039683] smp: Brought up 1 node, 4 CPUs [ 0.039748] SMP: Total of 4 processors activated (192.00 BogoMIPS). [ 0.039768] CPU: All CPU(s) started in HYP mode. [ 0.039781] CPU: Virtualization extensions available. [ 0.040612] allocated 1048576 bytes of page_ext [ 0.041399] devtmpfs: initialized [ 0.049081] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5 [ 0.049333] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.049403] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.054920] pinctrl core: initialized pinctrl subsystem [ 0.056620] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.060903] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.061691] audit: initializing netlink subsys (disabled) [ 0.062030] audit: type=2000 audit(0.036:1): state=initialized audit_enabled=0 res=1 [ 0.062544] thermal_sys: Registered thermal governor 'fair_share' [ 0.062554] thermal_sys: Registered thermal governor 'bang_bang' [ 0.062575] thermal_sys: Registered thermal governor 'step_wise' [ 0.063023] cpuidle: using governor ladder [ 0.063080] cpuidle: using governor menu [ 0.063334] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.063363] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.069275] platform 1c0c000.lcd-controller: Fixing up cyclic dependency with 1100000.mixer [ 0.074684] platform 1ee0000.hdmi: Fixing up cyclic dependency with 1c0c000.lcd-controller [ 0.079327] platform connector: Fixing up cyclic dependency with 1ee0000.hdmi [ 0.091312] cryptd: max_cpu_qlen set to 1000 [ 0.163885] raid6: neonx8 gen() 780 MB/s [ 0.231990] raid6: neonx8 xor() 576 MB/s [ 0.300118] raid6: neonx4 gen() 831 MB/s [ 0.368234] raid6: neonx4 xor() 631 MB/s [ 0.436344] raid6: neonx2 gen() 914 MB/s [ 0.504461] raid6: neonx2 xor() 652 MB/s [ 0.572586] raid6: neonx1 gen() 815 MB/s [ 0.640685] raid6: neonx1 xor() 564 MB/s [ 0.708842] raid6: int32x8 gen() 303 MB/s [ 0.776961] raid6: int32x8 xor() 180 MB/s [ 0.845080] raid6: int32x4 gen() 354 MB/s [ 0.913181] raid6: int32x4 xor() 205 MB/s [ 0.981284] raid6: int32x2 gen() 399 MB/s [ 1.049428] raid6: int32x2 xor() 213 MB/s [ 1.117511] raid6: int32x1 gen() 402 MB/s [ 1.185633] raid6: int32x1 xor() 192 MB/s [ 1.185651] raid6: using algorithm neonx2 gen() 914 MB/s [ 1.185668] raid6: .... xor() 652 MB/s, rmw enabled [ 1.185684] raid6: using neon recovery algorithm [ 1.187126] iommu: Default domain type: Translated [ 1.187158] iommu: DMA domain TLB invalidation policy: strict mode [ 1.187540] SCSI subsystem initialized [ 1.188037] usbcore: registered new interface driver usbfs [ 1.188101] usbcore: registered new interface driver hub [ 1.188176] usbcore: registered new device driver usb [ 1.188305] mc: Linux media interface: v0.10 [ 1.188347] videodev: Linux video capture interface: v2.00 [ 1.188484] pps_core: LinuxPPS API ver. 1 registered [ 1.188503] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.188539] PTP clock support registered [ 1.189061] Advanced Linux Sound Architecture Driver Initialized. [ 1.190003] NetLabel: Initializing [ 1.190025] NetLabel: domain hash size = 128 [ 1.190040] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.190135] NetLabel: unlabeled traffic allowed by default [ 1.190585] clocksource: Switched to clocksource arch_sys_counter [ 1.230702] VFS: Disk quotas dquot_6.6.0 [ 1.230856] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [ 1.231509] AppArmor: AppArmor Filesystem Enabled [ 1.336861] NET: Registered PF_INET protocol family [ 1.337122] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.338368] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 1.338522] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 1.338598] TCP established hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 1.338716] TCP bind hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 1.338845] TCP: Hash tables configured (established 8192 bind 8192) [ 1.339020] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.339094] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.339405] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.339889] Trying to unpack rootfs image as initramfs... [ 1.340944] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available [ 1.342517] Initialise system trusted keyrings [ 1.342699] Key type blacklist registered [ 1.342962] workingset: timestamp_bits=14 max_order=18 bucket_order=4 [ 1.349557] zbud: loaded [ 1.351569] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.352955] fuse: init (API version 7.34) [ 1.358449] integrity: Platform Keyring initialized [ 1.463794] xor: measuring software checksum speed [ 1.471506] arm4regs : 1296 MB/sec [ 1.482501] 8regs : 901 MB/sec [ 1.494134] 32regs : 848 MB/sec [ 1.501659] neon : 1320 MB/sec [ 1.501691] xor: using function: neon (1320 MB/sec) [ 1.501746] Key type asymmetric registered [ 1.501769] Asymmetric key parser 'x509' registered [ 1.502104] bounce: pool size: 64 pages [ 1.502239] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 1.502528] io scheduler mq-deadline registered [ 1.502551] io scheduler kyber registered [ 1.502781] io scheduler bfq registered [ 1.510635] sun8i-h3-pinctrl 1c20800.pinctrl: initialized sunXi PIO driver [ 1.512671] sun8i-h3-r-pinctrl 1f02c00.pinctrl: initialized sunXi PIO driver [ 1.520430] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled [ 1.523405] sun8i-h3-pinctrl 1c20800.pinctrl: supply vcc-pa not found, using dummy regulator [ 1.524190] 1c28000.serial: ttyS0 at MMIO 0x1c28000 (irq = 50, base_baud = 1500000) is a 16550A [ 2.144853] Freeing initrd memory: 12300K [ 2.145361] printk: console [ttyS0] enabled [ 2.484647] brd: module loaded [ 2.492886] loop: module loaded [ 2.498842] dwmac-sun8i 1c30000.ethernet: IRQ eth_wake_irq not found [ 2.505250] dwmac-sun8i 1c30000.ethernet: IRQ eth_lpi not found [ 2.511260] dwmac-sun8i 1c30000.ethernet: supply phy not found, using dummy regulator [ 2.519304] dwmac-sun8i 1c30000.ethernet: supply phy-io not found, using dummy regulator [ 2.527577] dwmac-sun8i 1c30000.ethernet: PTP uses main clock [ 2.533377] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 148000 (expect 58000) [ 2.543111] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported [ 2.550414] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported [ 2.557656] dwmac-sun8i 1c30000.ethernet: COE Type 2 [ 2.562637] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported [ 2.569440] dwmac-sun8i 1c30000.ethernet: Normal descriptors [ 2.575113] dwmac-sun8i 1c30000.ethernet: Chain mode enabled [ 2.582466] dwmac-sun8i 1c30000.ethernet: Found internal PHY node [ 2.589116] dwmac-sun8i 1c30000.ethernet: Switch mux to internal PHY [ 2.595531] dwmac-sun8i 1c30000.ethernet: Powering internal PHY [ 2.614199] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.620816] ehci-platform: EHCI generic platform driver [ 2.626318] ehci-platform 1c1a000.usb: EHCI Host Controller [ 2.631971] ehci-platform 1c1a000.usb: new USB bus registered, assigned bus number 1 [ 2.640315] ehci-platform 1c1a000.usb: irq 35, io mem 0x01c1a000 [ 2.658599] ehci-platform 1c1a000.usb: USB 2.0 started, EHCI 1.00 [ 2.665082] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.673386] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.680630] usb usb1: Product: EHCI Host Controller [ 2.685524] usb usb1: Manufacturer: Linux 5.15.48-sunxi ehci_hcd [ 2.691545] usb usb1: SerialNumber: 1c1a000.usb [ 2.696682] hub 1-0:1.0: USB hub found [ 2.700503] hub 1-0:1.0: 1 port detected [ 2.705102] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.711335] ohci-platform: OHCI generic platform driver [ 2.716814] ohci-platform 1c1a400.usb: Generic Platform OHCI controller [ 2.723476] ohci-platform 1c1a400.usb: new USB bus registered, assigned bus number 2 [ 2.731549] ohci-platform 1c1a400.usb: irq 36, io mem 0x01c1a400 [ 2.798872] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.807174] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.814416] usb usb2: Product: Generic Platform OHCI controller [ 2.820351] usb usb2: Manufacturer: Linux 5.15.48-sunxi ohci_hcd [ 2.826372] usb usb2: SerialNumber: 1c1a400.usb [ 2.831468] hub 2-0:1.0: USB hub found [ 2.835311] hub 2-0:1.0: 1 port detected [ 2.840361] usbcore: registered new interface driver usb-storage [ 2.847562] sun6i-rtc 1f00000.rtc: registered as rtc0 [ 2.852680] sun6i-rtc 1f00000.rtc: setting system clock to 1970-01-01T00:00:28 UTC (28) [ 2.860840] sun6i-rtc 1f00000.rtc: RTC enabled [ 2.865627] i2c_dev: i2c /dev entries driver [ 2.870143] sun8i-h3-r-pinctrl 1f02c00.pinctrl: supply vcc-pl not found, using dummy regulator [ 2.880715] sunxi-wdt 1c20ca0.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 2.889505] sun8i-h3-pinctrl 1c20800.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.898673] ledtrig-cpu: registered to indicate activity on CPUs [ 2.905203] sun8i-ce 1c15000.crypto: Set mod clock to 50000000 (50 Mhz) from 24000000 (24 Mhz) [ 2.914068] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 2.914113] sunxi-mmc 1c0f000.mmc: Got CD GPIO [ 2.926525] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 2.934319] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 2.942083] sun8i-ce 1c15000.crypto: will run requests pump with realtime priority [ 2.949829] sun8i-ce 1c15000.crypto: Register cbc(aes) [ 2.951436] sunxi-mmc 1c0f000.mmc: initialized, max. request size: 16384 KB [ 2.955146] sun8i-ce 1c15000.crypto: Register ecb(aes) [ 2.967251] sun8i-ce 1c15000.crypto: Register cbc(des3_ede) [ 2.972985] sun8i-ce 1c15000.crypto: Register ecb(des3_ede) [ 2.978718] sun8i-ce 1c15000.crypto: Register md5 [ 2.983564] sun8i-ce 1c15000.crypto: Register sha1 [ 2.988520] sun8i-ce 1c15000.crypto: Register sha224 [ 2.993626] sun8i-ce 1c15000.crypto: Register sha256 [ 2.995815] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.998735] sun8i-ce 1c15000.crypto: Register sha384 [ 3.006732] mmc0: new SD card at address a921 [ 3.011723] sun8i-ce 1c15000.crypto: Register sha512 [ 3.017446] mmcblk0: mmc0:a921 SR032 29.2 MiB [ 3.021182] sun8i-ce 1c15000.crypto: Register stdrng [ 3.029563] mmcblk0: p1 [ 3.030695] sun8i-ce 1c15000.crypto: TRNG not supported [ 3.038221] sun8i-ce 1c15000.crypto: CryptoEngine Die ID 1 [ 3.044169] hid: raw HID events driver (C) Jiri Kosina [ 3.049472] usbcore: registered new interface driver usbhid [ 3.055065] usbhid: USB HID core driver [ 3.063389] debugfs: Directory '1c22c00.codec' with parent 'H3 Audio Codec' already present! [ 3.076803] Initializing XFRM netlink socket [ 3.081849] NET: Registered PF_INET6 protocol family [ 3.125003] Segment Routing with IPv6 [ 3.128836] In-situ OAM (IOAM) with IPv6 [ 3.132891] NET: Registered PF_PACKET protocol family [ 3.137991] NET: Registered PF_KEY protocol family [ 3.142866] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 3.156008] 8021q: 802.1Q VLAN Support v1.8 [ 3.160291] Key type dns_resolver registered [ 3.164725] Registering SWP/SWPB emulation handler [ 3.170245] registered taskstats version 1 [ 3.174393] Loading compiled-in X.509 certificates [ 3.185969] Loaded X.509 cert 'Build time autogenerated kernel key: f42b5debf4cea41d9e8cde2bc3b3ec85a37db752' [ 3.201720] zswap: loaded using pool zstd/z3fold [ 3.207389] Key type ._fscrypt registered [ 3.211434] Key type .fscrypt registered [ 3.215379] Key type fscrypt-provisioning registered [ 3.225468] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=yes [ 3.250782] Key type encrypted registered [ 3.254857] AppArmor: AppArmor sha1 policy hashing enabled [ 3.272900] sun8i-h3-pinctrl 1c20800.pinctrl: supply vcc-pg not found, using dummy regulator [ 3.294463] sun4i-drm display-engine: bound 1100000.mixer (ops 0xc0aa2c00) [ 3.301787] sun4i-drm display-engine: bound 1c0c000.lcd-controller (ops 0xc0a9eb34) [ 3.309543] sun8i-dw-hdmi 1ee0000.hdmi: supply hvcc not found, using dummy regulator [ 3.318308] sun8i-dw-hdmi 1ee0000.hdmi: Detected HDMI TX controller v1.32a with HDCP (sun8i_dw_hdmi_phy) [ 3.328448] sun8i-dw-hdmi 1ee0000.hdmi: registered DesignWare HDMI I2C bus driver [ 3.336313] sun4i-drm display-engine: bound 1ee0000.hdmi (ops 0xc0aa21b4) [ 3.343794] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 3.351639] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes [ 3.359371] ehci-platform 1c1b000.usb: EHCI Host Controller [ 3.365000] ehci-platform 1c1b000.usb: new USB bus registered, assigned bus number 3 [ 3.372929] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes [ 3.380402] ehci-platform 1c1b000.usb: irq 37, io mem 0x01c1b000 [ 3.398598] ehci-platform 1c1b000.usb: USB 2.0 started, EHCI 1.00 [ 3.405040] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.413341] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.420584] usb usb3: Product: EHCI Host Controller [ 3.425478] usb usb3: Manufacturer: Linux 5.15.48-sunxi ehci_hcd [ 3.431505] usb usb3: SerialNumber: 1c1b000.usb [ 3.436611] hub 3-0:1.0: USB hub found [ 3.440453] hub 3-0:1.0: 1 port detected [ 3.445468] ehci-platform 1c1c000.usb: EHCI Host Controller [ 3.451104] ehci-platform 1c1c000.usb: new USB bus registered, assigned bus number 4 [ 3.459308] ehci-platform 1c1c000.usb: irq 39, io mem 0x01c1c000 [ 3.478600] ehci-platform 1c1c000.usb: USB 2.0 started, EHCI 1.00 [ 3.485003] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.493305] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.500548] usb usb4: Product: EHCI Host Controller [ 3.505441] usb usb4: Manufacturer: Linux 5.15.48-sunxi ehci_hcd [ 3.511462] usb usb4: SerialNumber: 1c1c000.usb [ 3.516551] hub 4-0:1.0: USB hub found [ 3.520384] hub 4-0:1.0: 1 port detected [ 3.525307] ehci-platform 1c1d000.usb: EHCI Host Controller [ 3.530944] ehci-platform 1c1d000.usb: new USB bus registered, assigned bus number 5 [ 3.539096] ehci-platform 1c1d000.usb: irq 41, io mem 0x01c1d000 [ 3.558599] ehci-platform 1c1d000.usb: USB 2.0 started, EHCI 1.00 [ 3.565020] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.573319] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.580560] usb usb5: Product: EHCI Host Controller [ 3.585454] usb usb5: Manufacturer: Linux 5.15.48-sunxi ehci_hcd [ 3.591475] usb usb5: SerialNumber: 1c1d000.usb [ 3.596564] hub 5-0:1.0: USB hub found [ 3.600397] hub 5-0:1.0: 1 port detected [ 3.605332] ohci-platform 1c1b400.usb: Generic Platform OHCI controller [ 3.612012] ohci-platform 1c1b400.usb: new USB bus registered, assigned bus number 6 [ 3.620051] ohci-platform 1c1b400.usb: irq 38, io mem 0x01c1b400 [ 3.686830] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.695133] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.702376] usb usb6: Product: Generic Platform OHCI controller [ 3.708312] usb usb6: Manufacturer: Linux 5.15.48-sunxi ohci_hcd [ 3.714333] usb usb6: SerialNumber: 1c1b400.usb [ 3.719398] hub 6-0:1.0: USB hub found [ 3.723229] hub 6-0:1.0: 1 port detected [ 3.728130] ohci-platform 1c1c400.usb: Generic Platform OHCI controller [ 3.734813] ohci-platform 1c1c400.usb: new USB bus registered, assigned bus number 7 [ 3.742947] ohci-platform 1c1c400.usb: irq 40, io mem 0x01c1c400 [ 3.810871] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.819174] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.826416] usb usb7: Product: Generic Platform OHCI controller [ 3.832360] usb usb7: Manufacturer: Linux 5.15.48-sunxi ohci_hcd [ 3.838385] usb usb7: SerialNumber: 1c1c400.usb [ 3.843498] hub 7-0:1.0: USB hub found [ 3.847335] hub 7-0:1.0: 1 port detected [ 3.852292] ohci-platform 1c1d400.usb: Generic Platform OHCI controller [ 3.858976] ohci-platform 1c1d400.usb: new USB bus registered, assigned bus number 8 [ 3.867035] ohci-platform 1c1d400.usb: irq 42, io mem 0x01c1d400 [ 3.934843] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.943139] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.950382] usb usb8: Product: Generic Platform OHCI controller [ 3.956316] usb usb8: Manufacturer: Linux 5.15.48-sunxi ohci_hcd [ 3.962336] usb usb8: SerialNumber: 1c1d400.usb [ 3.967399] hub 8-0:1.0: USB hub found [ 3.971257] hub 8-0:1.0: 1 port detected [ 3.976083] of_cfs_init [ 3.978661] of_cfs_init: OK [ 3.982639] dwmac-sun8i 1c30000.ethernet eth0: PHY [0.1:01] driver [Generic PHY] (irq=POLL) [ 3.991587] dwmac-sun8i 1c30000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0 [ 4.000938] dwmac-sun8i 1c30000.ethernet eth0: No Safety Features support found [ 4.008291] dwmac-sun8i 1c30000.ethernet eth0: No MAC Management Counters available [ 4.015972] dwmac-sun8i 1c30000.ethernet eth0: PTP not supported by HW [ 4.023038] dwmac-sun8i 1c30000.ethernet eth0: configuring for phy/mii link mode [ 5.047068] dwmac-sun8i 1c30000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx [ 5.055675] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 5.074599] Sending DHCP requests ., OK [ 5.094457] IP-Config: Got DHCP answer from 192.168.2.1, my address is 192.168.2.210 [ 5.102233] IP-Config: Complete: [ 5.105476] device=eth0, hwaddr=02:81:1b:1a:2e:09, ipaddr=192.168.2.210, mask=255.255.255.0, gw=192.168.2.1 [ 5.115669] host=pi, domain=lan, nis-domain=(none) [ 5.120907] bootserver=192.168.2.1, rootserver=192.168.2.1, rootpath= [ 5.120918] nameserver0=192.168.2.1 [ 5.132013] ALSA device list: [ 5.135011] #0: H3 Audio Codec [ 5.144586] Freeing unused kernel image (initmem) memory: 1024K [ 5.154844] Run /init as init process Loading, please wait... Starting version 249.11-0ubuntu3.3 [ 5.629766] input: r_gpio_keys as /devices/platform/r_gpio_keys/input/input0 [ 5.721574] usb_phy_generic usb_phy_generic.3.auto: supply vcc not found, using dummy regulator [ 5.730659] usb_phy_generic usb_phy_generic.3.auto: dummy supplies not allowed for exclusive requests [ 5.741181] musb-hdrc musb-hdrc.4.auto: MUSB HDRC host driver [ 5.747020] musb-hdrc musb-hdrc.4.auto: new USB bus registered, assigned bus number 9 [ 5.755183] usb usb9: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 5.763539] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 5.770810] usb usb9: Product: MUSB HDRC host driver [ 5.775812] usb usb9: Manufacturer: Linux 5.15.48-sunxi musb-hcd [ 5.781896] usb usb9: SerialNumber: musb-hdrc.4.auto [ 5.787824] hub 9-0:1.0: USB hub found [ 5.794802] hub 9-0:1.0: 1 port detected Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/nfs-top ... done. Begin: Running /scripts/nfs-premount ... done. Internet Systems Consortium DHCP Client 4.4.1 Copyright 2004-2018 Internet Systems Consortium. All rights reserved. For info, please visit https://www.isc.org/software/dhcp/ Listening on LPF/eth0/02:81:1b:1a:2e:09 Sending on LPF/eth0/02:81:1b:1a:2e:09 Sending on Socket/fallback DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3 (xid=0x482ddc08) DHCPOFFER of 192.168.2.210 from 192.168.2.1 DHCPREQUEST for 192.168.2.210 on eth0 to 255.255.255.255 port 67 (xid=0x8dc2d48) DHCPACK of 192.168.2.210 from 192.168.2.1 (xid=0x482ddc08) ip: RTNETLINK answers: File exists bound to 192.168.2.210 -- renewal in 18339 seconds. [ 6.172561] FS-Cache: Loaded [ 6.262371] RPC: Registered named UNIX socket transport module. [ 6.268367] RPC: Registered udp transport module. [ 6.273089] RPC: Registered tcp transport module. [ 6.277806] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 6.420747] FS-Cache: Netfs 'nfs' registered for caching done. Begin: Running /scripts/nfs-bottom ... done. Begin: Running /scripts/init-bottom ... done. [ 7.735421] systemd[1]: System time before build time, advancing clock. [ 7.790826] systemd[1]: Inserted module 'autofs4' [ 7.925950] systemd[1]: systemd 249.11-0ubuntu3.3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 7.957916] systemd[1]: Detected architecture arm. Welcome to Armbian 22.05.3 Jammy! [ 7.985766] systemd[1]: Hostname set to <orangepipc>. [ 10.048487] systemd[1]: Queued start job for default target Graphical Interface. [ 10.058079] random: systemd: uninitialized urandom read (16 bytes read) [ 10.070788] systemd[1]: Created slice Slice /system/modprobe. [ OK ] Created slice Slice /system/modprobe. [ 10.094870] random: systemd: uninitialized urandom read (16 bytes read) [ 10.104364] systemd[1]: Created slice Slice /system/serial-getty. [ OK ] Created slice Slice /system/serial-getty. [ 10.126845] random: systemd: uninitialized urandom read (16 bytes read) [ 10.135314] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 10.158855] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ 10.172662] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password R…uests to Wall Directory Watch. [ 10.200205] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ OK ] Set up automount Arbitrary…s File System Automount Point. [ 10.227118] systemd[1]: Reached target Local Encrypted Volumes. [ OK ] Reached target Local Encrypted Volumes. [ 10.251675] systemd[1]: Reached target Slice Units. [ OK ] Reached target Slice Units. [ 10.270935] systemd[1]: Reached target Swaps. [ OK ] Reached target Swaps. [ 10.290849] systemd[1]: Reached target System Time Set. [ OK ] Reached target System Time Set. [ 10.311229] systemd[1]: Reached target Local Verity Protected Volumes. [ OK ] Reached target Local Verity Protected Volumes. [ 10.360957] systemd[1]: Listening on RPCbind Server Activation Socket. [ OK ] Listening on RPCbind Server Activation Socket. [ 10.389690] systemd[1]: Listening on Syslog Socket. [ OK ] Listening on Syslog Socket. [ 10.411304] systemd[1]: Listening on initctl Compatibility Named Pipe. [ OK ] Listening on initctl Compatibility Named Pipe. [ 10.437545] systemd[1]: Listening on Journal Audit Socket. [ OK ] Listening on Journal Audit Socket. [ 10.459590] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 10.483692] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 10.505880] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 10.528564] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 10.550888] systemd[1]: Reached target Socket Units. [ OK ] Reached target Socket Units. [ 10.571582] systemd[1]: Condition check resulted in Huge Pages File System being skipped. [ 10.584965] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 10.612053] systemd[1]: Mounting NFSD configuration filesystem... Mounting NFSD configuration filesystem... [ 10.640984] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System... [ 10.668477] systemd[1]: Mounting Kernel Trace File System... Mounting Kernel Trace File System... [ 10.693385] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. [ 10.715486] systemd[1]: Starting Restore / save the current clock... Starting Restore / save the current clock... [ 10.754642] systemd[1]: Starting Set the console keyboard layout... Starting Set the console keyboard layout... [ 10.787943] systemd[1]: Starting Create List of Static Device Nodes... Starting Create List of Static Device Nodes... [ 10.819263] systemd[1]: Starting Load Kernel Module configfs... Starting Load Kernel Module configfs... [ 10.847881] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm... [ 10.878912] systemd[1]: Starting Load Kernel Module fuse... [ 10.880689] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). Starting Load Kernel Module fuse... [ 10.917260] systemd[1]: Started Nameserver information manager. [ OK ] Started Nameserver information manager. [ 10.943988] systemd[1]: Reached target Preparation for Network. [ OK ] Reached target Preparation for Network. [ 10.983261] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules... [ 11.009798] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems... [ 11.038840] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices... [ 11.073081] systemd[1]: Mounted POSIX Message Queue File System. [ OK ] Mounted POSIX Message Queue File System. [ 11.100052] systemd[1]: Mounted NFSD configuration filesystem. [ OK ] Mounted NFSD configuration filesystem. [ 11.127731] systemd[1]: Mounted Kernel Debug File System. [ OK ] Mounted Kernel Debug File System. [ 11.151672] systemd[1]: Mounted Kernel Trace File System. [ OK ] Mounted Kernel Trace File System. [ 11.181313] systemd[1]: Finished Restore / save the current clock. [ OK ] Finished Restore / save the current clock. [ 11.205423] systemd[1]: Finished Create List of Static Device Nodes. [ OK ] Finished Create List of Static Device Nodes. [ 11.232792] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 11.241496] systemd[1]: Finished Load Kernel Module configfs. [ OK ] Finished Load Kernel Module configfs. [ 11.264892] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 11.273337] systemd[1]: Finished Load Kernel Module drm. [ OK ] Finished Load Kernel Module drm. [ 11.301689] systemd[1]: Finished Set the console keyboard layout. [ OK ] Finished Set the console keyboard layout. [ 11.324627] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 11.332841] systemd[1]: Finished Load Kernel Module fuse. [ OK ] Finished Load Kernel Module fuse. [ 11.358741] systemd[1]: Finished Load Kernel Modules. [ OK ] Finished Load Kernel Modules. [ 11.384832] systemd[1]: Finished Remount Root and Kernel File Systems. [ OK ] Finished Remount Root and Kernel File Systems. [ 11.423069] urandom_read_iter: 31 callbacks suppressed [ 11.423086] random: systemd: uninitialized urandom read (16 bytes read) [ 11.440616] systemd[1]: Mounting FUSE Control File System... Mounting FUSE Control File System... [ 11.463405] random: systemd: uninitialized urandom read (16 bytes read) [ 11.475277] systemd[1]: Mounting Kernel Configuration File System... Mounting Kernel Configuration File System... [ 11.499310] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.509044] random: systemd: uninitialized urandom read (16 bytes read) [ 11.521981] systemd[1]: Starting Load/Save Random Seed... Starting Load/Save Random Seed... [ 11.549646] systemd[1]: Starting Apply Kernel Variables... Starting Apply Kernel Variables... [ 11.580131] systemd[1]: Starting Create System Users... Starting Create System Users... [ 11.619836] systemd[1]: Mounted FUSE Control File System. [ OK ] Mounted FUSE Control File System. [ 11.643840] systemd[1]: Mounted Kernel Configuration File System. [ OK ] Mounted Kernel Configuration File System. [ OK ] Finished Create System Users. Starting Create Static Device Nodes in /dev... [ OK ] Finished Apply Kernel Variables. [ OK ] Finished Coldplug All udev Devices. Starting Helper to synchronize boot up for ifupdown... [ OK ] Finished Helper to synchronize boot up for ifupdown. [ OK ] Finished Create Static Device Nodes in /dev. [ OK ] Reached target Preparation for Local File Systems. Mounting /tmp... Starting Rule-based Manage…for Device Events and Files... [ OK ] Finished Load/Save Random Seed. [ OK ] Mounted /tmp. [ OK ] Reached target Local File Systems. Starting Armbian leds state... Starting Armbian ZRAM config... Starting Set console font and keymap... Starting Raise network interfaces... [ OK ] Finished Armbian leds state. [ OK ] Finished Set console font and keymap. [ OK ] Started Rule-based Manager for Device Events and Files.
  15. I would like to build a hard realtime Linux kernel for Orange Pi SoC. Using Xenomai technologies (Installing Xenomai 3.x , Xenomai Documentation). This would be a great extension of the SoC application area. I did this for the x86 architecture. And I've already assembled the core using your Arabian technology. But building the realtime Xenomai kernel requires pre-patching from a third-party project Adeos (Adaptive Domain Environment for Operating Systems). Patch files for different architectures can be found here: Index of /downloads/ipipe/v4.x Is it possible to build a realtime kernel using Arabian? P.S. I apologize for my poor English.
  16. kao@orangepi3-lts:~$ armbianmonitor -u Network/firewall problem detected. Not able to upload debug info. Please fix this or use "-U" instead and upload whole output manually kao@orangepi3-lts:~$ armbianmonitor -U armbian-hardware-monitor.log ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Thu Jun 23 03:13:46 AM UTC 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.271389] ohci-platform: OHCI generic platform driver [ 1.271884] usbcore: registered new interface driver usb-storage [ 1.272440] mousedev: PS/2 mouse device common for all mice [ 1.273452] sun6i-rtc 7000000.rtc: registered as rtc0 [ 1.273485] sun6i-rtc 7000000.rtc: setting system clock to 1970-01-01T00:00:04 UTC (4) [ 1.273599] sun6i-rtc 7000000.rtc: RTC enabled [ 1.273742] i2c_dev: i2c /dev entries driver [ 1.274541] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.276070] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.276491] sdhci: Secure Digital Host Controller Interface driver [ 1.276500] sdhci: Copyright(c) Pierre Ossman [ 1.276524] Synopsys Designware Multimedia Card Interface Driver [ 1.277348] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.277525] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.278836] ledtrig-cpu: registered to indicate activity on CPUs [ 1.279412] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.279723] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279850] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279963] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280080] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280162] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.280314] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.280452] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.280568] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.280687] sun8i-ce 1904000.crypto: Register md5 [ 1.280795] sun8i-ce 1904000.crypto: Register sha1 [ 1.280905] sun8i-ce 1904000.crypto: Register sha224 [ 1.281020] sun8i-ce 1904000.crypto: Register sha256 [ 1.281127] sun8i-ce 1904000.crypto: Register sha384 [ 1.281232] sun8i-ce 1904000.crypto: Register sha512 [ 1.281398] sun8i-ce 1904000.crypto: Register stdrng [ 1.282121] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.282719] hid: raw HID events driver (C) Jiri Kosina [ 1.282852] usbcore: registered new interface driver usbhid [ 1.282859] usbhid: USB HID core driver [ 1.283588] random: crng init done [ 1.285840] NET: Registered PF_INET6 protocol family [ 1.870798] Freeing initrd memory: 12684K [ 1.899454] Segment Routing with IPv6 [ 1.899519] In-situ OAM (IOAM) with IPv6 [ 1.899604] NET: Registered PF_PACKET protocol family [ 1.899720] 8021q: 802.1Q VLAN Support v1.8 [ 1.899880] 9pnet: Installing 9P2000 support [ 1.899952] Key type dns_resolver registered [ 1.900422] registered taskstats version 1 [ 1.900443] Loading compiled-in X.509 certificates [ 1.904300] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.907185] zswap: loaded using pool zstd/z3fold [ 1.907825] Key type ._fscrypt registered [ 1.907833] Key type .fscrypt registered [ 1.907837] Key type fscrypt-provisioning registered [ 1.908859] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922659] Key type encrypted registered [ 1.922691] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922730] ima: No TPM chip found, activating TPM-bypass! [ 1.922775] ima: Allocated hash algorithm: sha1 [ 1.922808] ima: No architecture policies found [ 1.922878] evm: Initialising EVM extended attributes: [ 1.922883] evm: security.selinux [ 1.922888] evm: security.SMACK64 [ 1.922892] evm: security.SMACK64EXEC [ 1.922897] evm: security.SMACK64TRANSMUTE [ 1.922901] evm: security.SMACK64MMAP [ 1.922905] evm: security.apparmor [ 1.922909] evm: security.ima [ 1.922913] evm: security.capability [ 1.922917] evm: HMAC attrs: 0x1 [ 1.935969] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.936305] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.938389] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.938422] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938574] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938635] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.939086] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.939102] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939113] usb usb1: Product: xHCI Host Controller [ 1.939122] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939130] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939679] hub 1-0:1.0: USB hub found [ 1.939724] hub 1-0:1.0: 1 port detected [ 1.940079] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.940099] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.940117] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.940231] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.940397] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.940410] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.940420] usb usb2: Product: xHCI Host Controller [ 1.940428] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.940436] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940851] hub 2-0:1.0: USB hub found [ 1.940889] hub 2-0:1.0: 1 port detected [ 1.943532] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.945371] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951715] of_cfs_init [ 1.951850] of_cfs_init: OK [ 1.952183] ALSA device list: [ 1.952189] No soundcards found. [ 1.953328] Freeing unused kernel memory: 2496K [ 1.965392] Run /init as init process [ 1.965399] with arguments: [ 1.965405] /init [ 1.965410] with environment: [ 1.965415] HOME=/ [ 1.965419] TERM=linux [ 1.965424] ubootpart=ce3dfe46-01 [ 1.965430] cgroup_enable=memory [ 2.197360] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.352212] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.352245] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.352256] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.352264] usb 1-1: Manufacturer: Microsoft [ 2.371628] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.397833] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.406456] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.430062] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.434077] vdd-cpu: supplied by vcc-5v [ 2.439356] vdd-gpu: supplied by vcc-5v [ 2.440064] vdd-sys: Bringing 900000uV into 960000-960000uV [ 2.440498] vdd-sys: supplied by vcc-5v [ 2.441417] vcc-dram: supplied by vcc-5v [ 2.442291] vcc-pl-led-ir: supplied by vcc-5v [ 2.443422] vcc33-audio-tv-ephy-mac: Bringing 700000uV into 3300000-3300000uV [ 2.443821] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.444503] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.444994] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.501752] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.511185] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.550092] vcc33-io-pd-emmc-sd-usb-uart-1: Bringing 700000uV into 3300000-3300000uV [ 2.550453] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.551481] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.552559] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.553234] vcc-wifi-io-pm-pg: Bringing 700000uV into 1800000-1800000uV [ 2.553572] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.554668] bldo4: supplied by vcc-5v [ 2.555185] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.555987] cldo2: supplied by vcc-5v [ 2.556633] cldo3: supplied by vcc-5v [ 2.556863] sw: supplied by regulator-dummy [ 2.557449] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.570248] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.570764] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.574626] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.575152] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.576079] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.581609] printk: console [ttyS0] disabled [ 2.581741] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.581965] printk: console [ttyS0] enabled [ 2.583370] sun4i-drm display-engine: Adding to iommu group 0 [ 2.602997] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.603353] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.603765] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.603887] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.604602] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.604931] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.605461] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.610057] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.610881] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.610942] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.765113] Console: switching to colour frame buffer device 240x67 [ 2.814958] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.839020] acx00-codec acx00-codec: DMA mask not set [ 2.842787] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.844953] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.845563] vcc-wifi-io: supplied by vcc33-wifi [ 2.847905] ehci-platform 5101000.usb: EHCI Host Controller [ 2.847948] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.848105] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.857343] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.861347] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.861683] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.861698] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.861709] usb usb3: Product: EHCI Host Controller [ 2.861717] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.861726] usb usb3: SerialNumber: 5101000.usb [ 2.862270] hub 3-0:1.0: USB hub found [ 2.862312] hub 3-0:1.0: 1 port detected [ 2.863447] ehci-platform 5311000.usb: EHCI Host Controller [ 2.863501] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.863651] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.869618] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.877334] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.877662] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.877677] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.877687] usb usb4: Product: EHCI Host Controller [ 2.877696] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.877704] usb usb4: SerialNumber: 5311000.usb [ 2.878275] hub 4-0:1.0: USB hub found [ 2.878317] hub 4-0:1.0: 1 port detected [ 2.879527] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.879591] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.879731] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.904258] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.906028] mmc0: Problem switching card into high-speed mode! [ 2.906141] mmc0: new SDHC card at address 0001 [ 2.907012] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.909094] mmcblk0: p1 [ 2.941592] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.941618] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.941629] usb usb5: Product: Generic Platform OHCI controller [ 2.941637] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.941646] usb usb5: SerialNumber: 5101400.usb [ 2.942382] hub 5-0:1.0: USB hub found [ 2.942478] hub 5-0:1.0: 1 port detected [ 2.943732] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.943797] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.943945] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 2.997466] mmc2: new HS200 MMC card at address 0001 [ 2.998519] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.000828] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.002395] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.005697] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.005727] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.005738] usb usb6: Product: Generic Platform OHCI controller [ 3.005746] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.005755] usb usb6: SerialNumber: 5311400.usb [ 3.006413] hub 6-0:1.0: USB hub found [ 3.006468] hub 6-0:1.0: 1 port detected [ 3.007749] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.007972] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.109696] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.109741] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.110006] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.110022] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.110032] usb usb7: Product: MUSB HDRC host driver [ 3.110041] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.110049] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.110654] hub 7-0:1.0: USB hub found [ 3.110724] hub 7-0:1.0: 1 port detected [ 3.130721] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.130747] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.131045] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.131271] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.131313] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.237621] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.237647] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.237655] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.237666] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.237673] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.237680] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.478371] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.673352] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.910374] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.910404] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.910415] usb 5-1: Product: USB Receiver [ 3.910424] usb 5-1: Manufacturer: Logitech [ 3.919527] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 3.977996] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 3.984266] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 3.984724] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.041716] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.042095] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.046730] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.781944] systemd[1]: System time before build time, advancing clock. [ 4.870091] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 4.879064] systemd[1]: systemd 249.11-0ubuntu3.1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS -OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.879739] systemd[1]: Detected architecture arm64. [ 4.883086] systemd[1]: Hostname set to <orangepi3-lts>. [ 5.105388] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 5.122726] mmc1: new high speed SDIO card at address 8800 [ 6.193555] systemd[1]: Queued start job for default target Graphical Interface. [ 6.199452] systemd[1]: Created slice Slice /system/modprobe. [ 6.202231] systemd[1]: Created slice Slice /system/serial-getty. [ 6.204080] systemd[1]: Created slice User and Session Slice. [ 6.204943] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.206453] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.207405] systemd[1]: Reached target Remote File Systems. [ 6.207760] systemd[1]: Reached target Slice Units. [ 6.208108] systemd[1]: Reached target Swaps. [ 6.208409] systemd[1]: Reached target System Time Set. [ 6.208987] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.210061] systemd[1]: Listening on Syslog Socket. [ 6.210934] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.211571] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.212959] systemd[1]: Listening on Journal Audit Socket. [ 6.213968] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.215050] systemd[1]: Listening on Journal Socket. [ 6.226846] systemd[1]: Listening on udev Control Socket. [ 6.227964] systemd[1]: Listening on udev Kernel Socket. [ 6.232507] systemd[1]: Mounting Huge Pages File System... [ 6.237816] systemd[1]: Mounting POSIX Message Queue File System... [ 6.243581] systemd[1]: Mounting Kernel Debug File System... [ 6.244898] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.252149] systemd[1]: Starting Restore / save the current clock... [ 6.257902] systemd[1]: Starting Set the console keyboard layout... [ 6.264301] systemd[1]: Starting Create List of Static Device Nodes... [ 6.270918] systemd[1]: Starting Load Kernel Module configfs... [ 6.277786] systemd[1]: Starting Load Kernel Module drm... [ 6.284675] systemd[1]: Starting Load Kernel Module fuse... [ 6.292060] systemd[1]: Started Nameserver information manager. [ 6.293725] systemd[1]: Reached target Preparation for Network. [ 6.294932] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.306924] systemd[1]: Starting Load Kernel Modules... [ 6.312706] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.318432] systemd[1]: Starting Coldplug All udev Devices... [ 6.328490] systemd[1]: Mounted Huge Pages File System. [ 6.329589] fuse: init (API version 7.34) [ 6.330211] systemd[1]: Mounted POSIX Message Queue File System. [ 6.331670] systemd[1]: Mounted Kernel Debug File System. [ 6.334979] systemd[1]: Finished Restore / save the current clock. [ 6.338419] systemd[1]: Finished Create List of Static Device Nodes. [ 6.340843] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.342500] systemd[1]: Finished Load Kernel Module configfs. [ 6.344775] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.346521] systemd[1]: Finished Load Kernel Module drm. [ 6.348776] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.350118] systemd[1]: Finished Load Kernel Module fuse. [ 6.357102] systemd[1]: Mounting FUSE Control File System... [ 6.363222] systemd[1]: Mounting Kernel Configuration File System... [ 6.371020] systemd[1]: Mounted FUSE Control File System. [ 6.374967] systemd[1]: Mounted Kernel Configuration File System. [ 6.387839] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.393209] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.394291] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.398918] systemd[1]: Starting Load/Save Random Seed... [ 6.404754] systemd[1]: Starting Create System Users... [ 6.605011] WCN: marlin_init entry! [ 6.605666] WCN: wcn config bt wake host [ 6.605940] WCN_ERR: dts node for bt_wake not found [ 6.605943] WCN: marlin2 parse_dt some para not config [ 6.605957] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.613551] sdiohal:sdiohal_init ok [ 6.614342] WCN: marlin_probe ok! [ 6.615383] systemd[1]: Finished Load/Save Random Seed. [ 6.616503] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.629638] mtty_probe init device addr: 0x00000000e4ddf53f [ 6.629847] -->rfkill_bluetooth_init [ 6.629985] bluetooth_set_power: start_block=1 [ 6.629996] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.630006] bluetooth_set_power: end_block=1 [ 6.630024] <--rfkill_bluetooth_init [ 6.642377] systemd[1]: Finished Create System Users. [ 6.648577] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.718136] systemd[1]: Finished Set the console keyboard layout. [ 6.724088] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.725783] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.746999] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.747155] [ADDR_MGT] addr_mgt_probe: success. [ 6.812225] WCN: start_marlin [MARLIN_WIFI] [ 6.812252] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.812260] WCN: the first power on start [ 6.818045] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.825520] systemd[1]: Reached target Preparation for Local File Systems. [ 6.837722] systemd[1]: Mounting /tmp... [ 6.851964] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.862991] systemd[1]: Mounted /tmp. [ 6.870324] systemd[1]: Reached target Local File Systems. [ 6.882576] systemd[1]: Starting Armbian leds state... [ 6.895047] systemd[1]: Starting Armbian ZRAM config... [ 6.907291] systemd[1]: Starting Set console font and keymap... [ 6.917410] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 6.919805] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 6.943858] systemd[1]: Starting Set Up Additional Binary Formats... [ 6.945374] sdiohal:sdiohal_scan_card [ 6.945565] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 6.945658] WCN: marlin_scan_finish! [ 6.945663] sdiohal:probe ok [ 6.945774] sdiohal:scan end! [ 6.945780] WCN: then marlin start to download [ 6.946019] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 6.946032] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 6.952293] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 6.952618] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 6.955861] systemd[1]: Finished Set console font and keymap. [ 6.968835] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 362 (systemd-binfmt) [ 6.974598] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 6.993966] systemd[1]: Finished Coldplug All udev Devices. [ 7.002822] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.098961] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.109231] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.132532] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.160398] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.209436] systemd[1]: Finished Armbian leds state. [ 7.513983] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.521754] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.522417] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.533479] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.533648] systemd[1]: Reached target Local Encrypted Volumes. [ 7.575897] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.627231] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.777051] systemd[1]: Started Load/Save RF Kill Switch Status. [ 7.954890] systemd[1]: Found device /dev/ttyS0. [ 8.014195] panfrost 1800000.gpu: clock rate = 432000000 [ 8.014230] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.014548] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.014559] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.014566] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.014573] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.014613] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.014901] WCN: marlin_start_run read reset reg val:0x1 [ 8.014906] WCN: after do marlin_start_run reset reg val:0x0 [ 8.015080] WCN: s_marlin_bootup_time=8015079802 [ 8.015466] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.021616] WCN: clock mode: TSX [ 8.021814] WCN: marlin_write_cali_data sync init_state:0x91036042 [ 8.049599] WCN: marlin_write_cali_data sync init_state:0x91036042 [ 8.068392] mc: Linux media interface: v0.10 [ 8.077689] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.077720] WCN: sdio_config bt_wake_host trigger:[high] [ 8.077723] WCN: sdio_config irq:[inband] [ 8.077725] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.077731] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.077733] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.078060] WCN: marlin_write_cali_data finish [ 8.078227] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.105573] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.137562] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.165584] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.184903] videodev: Linux video capture interface: v2.00 [ 8.193587] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.193612] WCN: marlin_bind_verify confuse data: 0x33fea07bef5424afb3eb92a5307b8c0e [ 8.193627] WCN: marlin_bind_verify verify data: 0xbe88975721254815cb97ad470d21e601 [ 8.194121] WCN: check_cp_ready sync val:0xf0f0f0f7, prj_type val:0x0 [ 8.221621] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.221645] sdiohal:sdiohal_runtime_get entry [ 8.224117] WCN: get_cp2_version entry! [ 8.268773] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.268824] WCN: switch_cp2_log - close entry! [ 8.270121] WCN: WCND at cmd read:OK [ 8.270208] WCN: then marlin download finished and run ok [ 8.270214] WCN: start_loopcheck [ 8.288538] WCN: get_board_ant_num [one_ant] [ 8.288563] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.357396] Registered IR keymap rc-empty [ 8.357535] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.358087] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.358296] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.358715] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.379249] zram: Added device: zram0 [ 8.379675] zram: Added device: zram1 [ 8.380117] zram: Added device: zram2 [ 8.410616] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.416810] systemd[1]: Finished Load Kernel Modules. [ 8.425572] systemd[1]: Starting Apply Kernel Variables... [ 8.502238] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.503493] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.509361] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.569078] systemd[1]: Finished Apply Kernel Variables. [ 8.615426] zram0: detected capacity change from 0 to 2037304 [ 8.633094] systemd[1]: Starting Raise network interfaces... [ 8.650146] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.824826] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 8.894117] zram1: detected capacity change from 0 to 102400 [ 8.958383] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.009858] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.036255] systemd[1]: Finished Armbian ZRAM config. [ 9.044253] systemd[1]: Starting Armbian memory supported logging... [ 9.171018] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.198787] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.199362] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.697942] systemd[1]: Finished Raise network interfaces. [ 9.704493] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.704773] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.705128] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.710522] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.710654] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.710772] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.710855] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.857115] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.857354] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.857432] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.857521] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.857622] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.857735] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.391375] systemd[1]: Finished Armbian memory supported logging. [ 11.400571] systemd[1]: Starting Journal Service... [ 11.544107] systemd[1]: Started Journal Service. [ 11.573374] systemd-journald[677]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 ### lsusb: Thu Jun 23 03:13:46 AM UTC 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1849616 kB MemAvailable: 1851652 kB Buffers: 11672 kB Cached: 50624 kB SwapCached: 0 kB Active: 31520 kB Inactive: 51264 kB Active(anon): 444 kB Inactive(anon): 23568 kB Active(file): 31076 kB Inactive(file): 27696 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 1676 kB Writeback: 0 kB AnonPages: 20500 kB Mapped: 16968 kB Shmem: 3392 kB KReclaimable: 10432 kB Slab: 45848 kB SReclaimable: 10432 kB SUnreclaim: 35416 kB KernelStack: 2512 kB PageTables: 1688 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 43924 kB VmallocTotal: 133143592960 kB VmallocUsed: 22764 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63009 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 6500352 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 6.0G 4.9G 1.1G 83% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 1.6M 42M 4% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 6.2G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 728B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### [resize2fs] Leaving 1% spare area. Start resizing partition /dev/mmcblk0p1 now: major minor #blocks name 179 0 31205376 mmcblk0 179 1 6500352 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 Executing fdisk, fsck and partprobe: Welcome to fdisk (util-linux 2.37.2). Changes will remain in memory only, until you decide to write them. Be careful before using the write command. This disk is currently in use - repartitioning is probably a bad idea. It's recommended to umount all file systems, and swapoff all swap partitions on this disk. Command (m for help): Selected partition 1 Partition 1 has been deleted. Command (m for help): Partition type p primary (0 primary, 0 extended, 4 free) e extended (container for logical partitions) Select (default p): Partition number (1-4, default 1): First sector (2048-62410751, default 2048): Last sector, +/-sectors or +/-size{K,M,G,T,P} (8192-62410751, default 62410751): Created a new partition 1 of type 'Linux' and of size 29.4 GiB. Partition #1 contains a ext4 signature. Command (m for help): ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 The partition table has been altered. Syncing disks. erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block New partition table: cid: 15010038475446345206d410e21fc801 major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 Now trying to resize ext4 filesystem on /dev/mmcblk0p1 to the limits: rel_sectors: 0x1 resize2fs 1.46.5 (30-Dec-2021) enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 03:13:49: 1080MHz 1.34 51% 19% 13% 0% 18% 0% 49.3°C 0/9 03:13:50: 1080MHz 1.71 53% 7% 3% 0% 42% 0% 48.5°C 0/9 03:13:50: 1488MHz 1.71 35% 9% 2% 0% 22% 0% 48.7°C 0/9 03:13:50: 1080MHz 1.71 32% 8% 2% 0% 20% 0% 48.7°C 0/9 03:13:51: 1080MHz 1.71 35% 8% 4% 1% 21% 0% 49.1°C 0/9 Filesystem at /dev/mmcblk0p1 is mounted on /; on-line resizing required old_desc_blocks = 1, new_desc_blocks = 2 The filesystem on /dev/mmcblk0p1 is now 7719936 (4k) blocks long. ### [resize2fs] Start resizing ext4 partition /dev/mmcblk0p1 now resize2fs 1.46.5 (30-Dec-2021) The filesystem is already 7719936 (4k) blocks long. Nothing to do! ### quick iozone test: 4 144 824 6811 6817 6446 2242 ### [firstrun] Recreated SSH keys (entropy: 256 256) ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Thu Jun 23 11:40:42 AM CST 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.272840] i2c_dev: i2c /dev entries driver [ 1.273687] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.275263] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.275681] sdhci: Secure Digital Host Controller Interface driver [ 1.275689] sdhci: Copyright(c) Pierre Ossman [ 1.275714] Synopsys Designware Multimedia Card Interface Driver [ 1.276505] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.276668] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.277837] ledtrig-cpu: registered to indicate activity on CPUs [ 1.278440] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.278705] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.278843] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.278941] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279034] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.279118] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.279270] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.279382] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.279491] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.279598] sun8i-ce 1904000.crypto: Register md5 [ 1.279710] sun8i-ce 1904000.crypto: Register sha1 [ 1.279822] sun8i-ce 1904000.crypto: Register sha224 [ 1.279933] sun8i-ce 1904000.crypto: Register sha256 [ 1.280039] sun8i-ce 1904000.crypto: Register sha384 [ 1.280147] sun8i-ce 1904000.crypto: Register sha512 [ 1.280254] sun8i-ce 1904000.crypto: Register stdrng [ 1.280979] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.281617] hid: raw HID events driver (C) Jiri Kosina [ 1.281760] usbcore: registered new interface driver usbhid [ 1.281768] usbhid: USB HID core driver [ 1.282505] random: crng init done [ 1.284692] NET: Registered PF_INET6 protocol family [ 1.870669] Freeing initrd memory: 12684K [ 1.899337] Segment Routing with IPv6 [ 1.899410] In-situ OAM (IOAM) with IPv6 [ 1.899505] NET: Registered PF_PACKET protocol family [ 1.899615] 8021q: 802.1Q VLAN Support v1.8 [ 1.899772] 9pnet: Installing 9P2000 support [ 1.899846] Key type dns_resolver registered [ 1.900287] registered taskstats version 1 [ 1.900304] Loading compiled-in X.509 certificates [ 1.904160] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.907062] zswap: loaded using pool zstd/z3fold [ 1.907708] Key type ._fscrypt registered [ 1.907716] Key type .fscrypt registered [ 1.907721] Key type fscrypt-provisioning registered [ 1.908736] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922610] Key type encrypted registered [ 1.922643] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922683] ima: No TPM chip found, activating TPM-bypass! [ 1.922711] ima: Allocated hash algorithm: sha1 [ 1.922743] ima: No architecture policies found [ 1.922791] evm: Initialising EVM extended attributes: [ 1.922796] evm: security.selinux [ 1.922800] evm: security.SMACK64 [ 1.922805] evm: security.SMACK64EXEC [ 1.922809] evm: security.SMACK64TRANSMUTE [ 1.922813] evm: security.SMACK64MMAP [ 1.922818] evm: security.apparmor [ 1.922822] evm: security.ima [ 1.922826] evm: security.capability [ 1.922830] evm: HMAC attrs: 0x1 [ 1.935894] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.936246] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.938307] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.938338] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938483] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938551] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.939042] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.939058] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939069] usb usb1: Product: xHCI Host Controller [ 1.939077] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939086] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939617] hub 1-0:1.0: USB hub found [ 1.939666] hub 1-0:1.0: 1 port detected [ 1.940002] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.940022] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.940045] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.940139] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.940297] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.940310] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.940321] usb usb2: Product: xHCI Host Controller [ 1.940329] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.940337] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940741] hub 2-0:1.0: USB hub found [ 1.940778] hub 2-0:1.0: 1 port detected [ 1.943495] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.945277] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951649] of_cfs_init [ 1.951764] of_cfs_init: OK [ 1.952094] ALSA device list: [ 1.952101] No soundcards found. [ 1.953207] Freeing unused kernel memory: 2496K [ 1.977591] Run /init as init process [ 1.977600] with arguments: [ 1.977606] /init [ 1.977612] with environment: [ 1.977616] HOME=/ [ 1.977621] TERM=linux [ 1.977626] ubootpart=ce3dfe46-01 [ 1.977631] cgroup_enable=memory [ 2.193555] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.359296] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.359334] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.359345] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.359353] usb 1-1: Manufacturer: Microsoft [ 2.380572] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.405951] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.416250] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.440095] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.444209] vdd-cpu: supplied by vcc-5v [ 2.445995] vdd-gpu: supplied by vcc-5v [ 2.446737] vdd-sys: Bringing 900000uV into 960000-960000uV [ 2.447163] vdd-sys: supplied by vcc-5v [ 2.448220] vcc-dram: supplied by vcc-5v [ 2.449137] vcc-pl-led-ir: supplied by vcc-5v [ 2.450174] vcc33-audio-tv-ephy-mac: Bringing 700000uV into 3300000-3300000uV [ 2.450587] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.457417] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.458172] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.517969] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.530047] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.558277] vcc33-io-pd-emmc-sd-usb-uart-1: Bringing 700000uV into 3300000-3300000uV [ 2.558638] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.559627] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.560734] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.561386] vcc-wifi-io-pm-pg: Bringing 700000uV into 1800000-1800000uV [ 2.561719] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.562819] bldo4: supplied by vcc-5v [ 2.563341] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.564136] cldo2: supplied by vcc-5v [ 2.564801] cldo3: supplied by vcc-5v [ 2.565035] sw: supplied by regulator-dummy [ 2.565598] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.579120] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.579642] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.580524] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.581205] printk: console [ttyS0] disabled [ 2.581316] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.581600] printk: console [ttyS0] enabled [ 2.582895] sun4i-drm display-engine: Adding to iommu group 0 [ 2.589957] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.590397] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.602524] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.602880] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.603276] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.603403] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.603905] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.604269] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.608442] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.608956] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.609998] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.610059] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.766758] Console: switching to colour frame buffer device 240x67 [ 2.816582] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.837317] acx00-codec acx00-codec: DMA mask not set [ 2.841040] vcc-wifi-io: supplied by vcc33-wifi [ 2.841454] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.842711] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.846375] ehci-platform 5101000.usb: EHCI Host Controller [ 2.846421] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.846575] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.848622] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 2.865562] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.865575] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.865860] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.865911] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.865925] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.865936] usb usb3: Product: EHCI Host Controller [ 2.865945] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.865953] usb usb3: SerialNumber: 5101000.usb [ 2.866566] hub 3-0:1.0: USB hub found [ 2.866635] hub 3-0:1.0: 1 port detected [ 2.867969] ehci-platform 5311000.usb: EHCI Host Controller [ 2.868052] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.868209] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.881527] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.881876] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.881891] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.881901] usb usb4: Product: EHCI Host Controller [ 2.881914] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.881923] usb usb4: SerialNumber: 5311000.usb [ 2.882497] hub 4-0:1.0: USB hub found [ 2.882543] hub 4-0:1.0: 1 port detected [ 2.883659] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.883696] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.883846] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.901121] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.902890] mmc0: Problem switching card into high-speed mode! [ 2.903010] mmc0: new SDHC card at address 0001 [ 2.903892] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.905998] mmcblk0: p1 [ 2.945815] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.945843] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.945853] usb usb5: Product: Generic Platform OHCI controller [ 2.945862] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.945870] usb usb5: SerialNumber: 5101400.usb [ 2.946508] hub 5-0:1.0: USB hub found [ 2.946564] hub 5-0:1.0: 1 port detected [ 2.947693] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.947732] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.947873] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 3.005682] mmc2: new HS200 MMC card at address 0001 [ 3.006689] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.009191] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.009899] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.009929] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.009940] usb usb6: Product: Generic Platform OHCI controller [ 3.009949] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.009957] usb usb6: SerialNumber: 5311400.usb [ 3.010742] hub 6-0:1.0: USB hub found [ 3.010820] hub 6-0:1.0: 1 port detected [ 3.011003] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.012287] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.012471] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.078113] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 3.095714] mmc1: new high speed SDIO card at address 8800 [ 3.109911] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.109956] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.110288] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.110305] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.110316] usb usb7: Product: MUSB HDRC host driver [ 3.110324] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.110333] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.110923] hub 7-0:1.0: USB hub found [ 3.110989] hub 7-0:1.0: 1 port detected [ 3.127115] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.127143] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.127455] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.127695] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.127740] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.233767] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.233793] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.233800] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.233809] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.233817] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.233824] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.470451] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.693548] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.934574] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.934605] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.934616] usb 5-1: Product: USB Receiver [ 3.934624] usb 5-1: Manufacturer: Logitech [ 3.943645] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 4.002215] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 4.008419] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 4.008877] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.065886] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.066269] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.070836] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.842234] systemd[1]: System time before build time, advancing clock. [ 4.939393] systemd[1]: systemd 249.11-0ubuntu3.1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS -OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.940061] systemd[1]: Detected architecture arm64. [ 4.943463] systemd[1]: Hostname set to <orangepi3-lts>. [ 6.280645] systemd[1]: Queued start job for default target Graphical Interface. [ 6.286592] systemd[1]: Created slice Slice /system/modprobe. [ 6.289331] systemd[1]: Created slice Slice /system/serial-getty. [ 6.291295] systemd[1]: Created slice User and Session Slice. [ 6.292193] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.293712] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.294623] systemd[1]: Reached target Remote File Systems. [ 6.294972] systemd[1]: Reached target Slice Units. [ 6.295321] systemd[1]: Reached target Swaps. [ 6.295639] systemd[1]: Reached target System Time Set. [ 6.296162] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.297245] systemd[1]: Listening on Syslog Socket. [ 6.298236] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.298936] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.300397] systemd[1]: Listening on Journal Audit Socket. [ 6.301308] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.302450] systemd[1]: Listening on Journal Socket. [ 6.314214] systemd[1]: Listening on udev Control Socket. [ 6.315305] systemd[1]: Listening on udev Kernel Socket. [ 6.319750] systemd[1]: Mounting Huge Pages File System... [ 6.324879] systemd[1]: Mounting POSIX Message Queue File System... [ 6.330662] systemd[1]: Mounting Kernel Debug File System... [ 6.331975] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.339409] systemd[1]: Starting Restore / save the current clock... [ 6.345147] systemd[1]: Starting Set the console keyboard layout... [ 6.351732] systemd[1]: Starting Create List of Static Device Nodes... [ 6.358465] systemd[1]: Starting Load Kernel Module configfs... [ 6.365077] systemd[1]: Starting Load Kernel Module drm... [ 6.371961] systemd[1]: Starting Load Kernel Module fuse... [ 6.379481] systemd[1]: Started Nameserver information manager. [ 6.380900] systemd[1]: Reached target Preparation for Network. [ 6.382190] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.395121] systemd[1]: Starting Load Kernel Modules... [ 6.401214] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.407382] systemd[1]: Starting Coldplug All udev Devices... [ 6.419152] systemd[1]: Mounted Huge Pages File System. [ 6.420837] systemd[1]: Mounted POSIX Message Queue File System. [ 6.422359] systemd[1]: Mounted Kernel Debug File System. [ 6.425432] systemd[1]: Finished Restore / save the current clock. [ 6.425773] fuse: init (API version 7.34) [ 6.428513] systemd[1]: Finished Create List of Static Device Nodes. [ 6.431938] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.433283] systemd[1]: Finished Load Kernel Module configfs. [ 6.435491] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.436886] systemd[1]: Finished Load Kernel Module drm. [ 6.439563] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.440948] systemd[1]: Finished Load Kernel Module fuse. [ 6.447052] systemd[1]: Mounting FUSE Control File System... [ 6.452353] systemd[1]: Mounting Kernel Configuration File System... [ 6.459715] systemd[1]: Mounted FUSE Control File System. [ 6.466857] systemd[1]: Mounted Kernel Configuration File System. [ 6.475597] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.481220] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.482545] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.487218] systemd[1]: Starting Load/Save Random Seed... [ 6.493049] systemd[1]: Starting Create System Users... [ 6.672733] WCN: marlin_init entry! [ 6.673295] WCN: wcn config bt wake host [ 6.673640] WCN_ERR: dts node for bt_wake not found [ 6.673650] WCN: marlin2 parse_dt some para not config [ 6.673674] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.678896] sdiohal:sdiohal_init ok [ 6.679750] systemd[1]: Finished Load/Save Random Seed. [ 6.679837] WCN: marlin_probe ok! [ 6.680959] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.701362] systemd[1]: Finished Create System Users. [ 6.703749] mtty_probe init device addr: 0x00000000fe1f7fb4 [ 6.703958] -->rfkill_bluetooth_init [ 6.704103] bluetooth_set_power: start_block=1 [ 6.704117] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.704127] bluetooth_set_power: end_block=1 [ 6.704144] <--rfkill_bluetooth_init [ 6.708485] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.792500] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.794213] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.815600] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.815713] [ADDR_MGT] addr_mgt_probe: success. [ 6.820941] systemd[1]: Finished Set the console keyboard layout. [ 6.882354] WCN: start_marlin [MARLIN_WIFI] [ 6.882379] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.882388] WCN: the first power on start [ 6.885320] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.892712] systemd[1]: Reached target Preparation for Local File Systems. [ 6.905003] systemd[1]: Mounting /tmp... [ 6.919680] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.930260] systemd[1]: Mounted /tmp. [ 6.937592] systemd[1]: Reached target Local File Systems. [ 6.949729] systemd[1]: Starting Armbian leds state... [ 6.962125] systemd[1]: Starting Armbian ZRAM config... [ 6.974560] systemd[1]: Starting Set console font and keymap... [ 6.986826] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 6.989569] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 7.012697] systemd[1]: Starting Set Up Additional Binary Formats... [ 7.017639] sdiohal:sdiohal_scan_card [ 7.017848] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 7.017940] WCN: marlin_scan_finish! [ 7.017944] sdiohal:probe ok [ 7.018067] sdiohal:scan end! [ 7.018073] WCN: then marlin start to download [ 7.018305] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 7.018318] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 7.021202] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 7.021629] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 7.024765] systemd[1]: Finished Set console font and keymap. [ 7.035619] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 366 (systemd-binfmt) [ 7.043152] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 7.060577] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.072721] systemd[1]: Finished Coldplug All udev Devices. [ 7.167303] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.177862] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.199741] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.228170] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.301685] systemd[1]: Finished Armbian leds state. [ 7.582111] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.589917] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.590620] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.601725] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.601909] systemd[1]: Reached target Local Encrypted Volumes. [ 7.649290] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.693825] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.870964] bluetooth_set_power: start_block=0 [ 7.870991] WCN: start_marlin [MARLIN_BLUETOOTH] [ 8.041648] systemd[1]: Found device /dev/ttyS0. [ 8.075381] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.075778] WCN: marlin_start_run read reset reg val:0x1 [ 8.075797] WCN: after do marlin_start_run reset reg val:0x0 [ 8.076026] WCN: s_marlin_bootup_time=8076026176 [ 8.081928] WCN: clock mode: TSX [ 8.082132] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.109796] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.137839] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.137866] WCN: sdio_config bt_wake_host trigger:[high] [ 8.137869] WCN: sdio_config irq:[inband] [ 8.137871] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.137876] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.137878] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.138205] WCN: marlin_write_cali_data finish [ 8.138370] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.157809] panfrost 1800000.gpu: clock rate = 432000000 [ 8.157843] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.158153] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.158164] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.158170] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.158178] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.159096] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.165839] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.179510] mc: Linux media interface: v0.10 [ 8.193765] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.221809] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.249807] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.249830] WCN: marlin_bind_verify confuse data: 0x70f591d68e01b18d315da6e670879a4a [ 8.249845] WCN: marlin_bind_verify verify data: 0xa5709470f0031226394ebee725230b0c [ 8.250344] WCN: check_cp_ready sync val:0xf0f0f0f7, prj_type val:0x0 [ 8.277783] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.277802] sdiohal:sdiohal_runtime_get entry [ 8.277980] WCN: get_cp2_version entry! [ 8.299009] videodev: Linux video capture interface: v2.00 [ 8.317158] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.317230] WCN: switch_cp2_log - close entry! [ 8.318674] WCN: WCND at cmd read:OK [ 8.318761] WCN: then marlin download finished and run ok [ 8.318778] WCN: start_loopcheck [ 8.318884] WCN: marlin power state:4, subsys: [MARLIN_BLUETOOTH] power 1 [ 8.318895] WCN: marlin have open, GNSS is closed [ 8.318899] bluetooth_set_power: end_block=0 [ 8.320107] systemd[1]: Started Load/Save RF Kill Switch Status. [ 8.324478] zram: Added device: zram0 [ 8.325230] zram: Added device: zram1 [ 8.326075] zram: Added device: zram2 [ 8.354162] WCN: get_board_ant_num [one_ant] [ 8.354186] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.365170] Registered IR keymap rc-empty [ 8.365298] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.366074] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.366236] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.378494] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.434915] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.448849] systemd[1]: Finished Load Kernel Modules. [ 8.458292] systemd[1]: Starting Apply Kernel Variables... [ 8.514088] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.515483] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.518502] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.567882] zram0: detected capacity change from 0 to 2037304 [ 8.631035] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.653605] systemd[1]: Finished Apply Kernel Variables. [ 8.681160] systemd[1]: Starting Raise network interfaces... [ 8.791511] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 8.853254] zram1: detected capacity change from 0 to 102400 [ 8.977295] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.045252] systemd[1]: Finished Armbian ZRAM config. [ 9.054870] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.055168] systemd[1]: Starting Armbian memory supported logging... [ 9.169531] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.215009] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.215550] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.699754] systemd[1]: Finished Raise network interfaces. [ 9.731709] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.732012] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.732412] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.738645] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.738778] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.738913] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.739051] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.894684] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.894922] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.894994] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.895091] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.895204] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.895323] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.563278] systemd[1]: Finished Armbian memory supported logging. [ 11.572525] systemd[1]: Starting Journal Service... [ 11.714105] systemd[1]: Started Journal Service. [ 11.743225] systemd-journald[691]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable BRANCH=current ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u ### lsusb: Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1847312 kB MemAvailable: 1852580 kB Buffers: 12528 kB Cached: 52716 kB SwapCached: 0 kB Active: 32252 kB Inactive: 53072 kB Active(anon): 440 kB Inactive(anon): 22936 kB Active(file): 31812 kB Inactive(file): 30136 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 2404 kB Writeback: 0 kB AnonPages: 20120 kB Mapped: 16908 kB Shmem: 3384 kB KReclaimable: 10544 kB Slab: 46252 kB SReclaimable: 10544 kB SUnreclaim: 35708 kB KernelStack: 2480 kB PageTables: 1508 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 42864 kB VmallocTotal: 133143592960 kB VmallocUsed: 22732 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63007 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 29G 4.9G 24G 18% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 2.4M 42M 6% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 29.4G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 721B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block cid: 15010038475446345206d410e21fc801 rel_sectors: 0x1 enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 11:40:44: 1320MHz 0.23 46% 19% 13% 0% 12% 0% 63.6°C 0/9 11:40:44: 888MHz 0.23 12% 8% 2% 1% 0% 0% 63.6°C 0/9 11:40:44: 1080MHz 0.23 12% 9% 2% 0% 0% 0% 58.2°C 0/9 11:40:45: 1800MHz 0.23 12% 6% 4% 1% 0% 0% 58.3°C 0/9 11:40:45: 1800MHz 0.23 14% 9% 2% 1% 0% 0% 59.3°C 0/9 ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Thu Jun 23 11:48:16 AM CST 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.272120] ohci-platform: OHCI generic platform driver [ 1.272614] usbcore: registered new interface driver usb-storage [ 1.273128] mousedev: PS/2 mouse device common for all mice [ 1.274160] sun6i-rtc 7000000.rtc: registered as rtc0 [ 1.274198] sun6i-rtc 7000000.rtc: setting system clock to 1970-01-01T00:07:55 UTC (475) [ 1.274306] sun6i-rtc 7000000.rtc: RTC enabled [ 1.274449] i2c_dev: i2c /dev entries driver [ 1.275241] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.276799] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.277224] sdhci: Secure Digital Host Controller Interface driver [ 1.277234] sdhci: Copyright(c) Pierre Ossman [ 1.277258] Synopsys Designware Multimedia Card Interface Driver [ 1.278091] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.278268] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.279331] ledtrig-cpu: registered to indicate activity on CPUs [ 1.279930] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.280188] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280330] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280432] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280526] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.280606] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.280754] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.280864] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.280972] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.281079] sun8i-ce 1904000.crypto: Register md5 [ 1.281186] sun8i-ce 1904000.crypto: Register sha1 [ 1.281293] sun8i-ce 1904000.crypto: Register sha224 [ 1.281401] sun8i-ce 1904000.crypto: Register sha256 [ 1.281507] sun8i-ce 1904000.crypto: Register sha384 [ 1.281665] sun8i-ce 1904000.crypto: Register sha512 [ 1.281777] sun8i-ce 1904000.crypto: Register stdrng [ 1.282517] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.283115] hid: raw HID events driver (C) Jiri Kosina [ 1.283240] usbcore: registered new interface driver usbhid [ 1.283247] usbhid: USB HID core driver [ 1.284060] random: crng init done [ 1.286213] NET: Registered PF_INET6 protocol family [ 1.870216] Freeing initrd memory: 12684K [ 1.898965] Segment Routing with IPv6 [ 1.899073] In-situ OAM (IOAM) with IPv6 [ 1.899164] NET: Registered PF_PACKET protocol family [ 1.899302] 8021q: 802.1Q VLAN Support v1.8 [ 1.899459] 9pnet: Installing 9P2000 support [ 1.899532] Key type dns_resolver registered [ 1.899974] registered taskstats version 1 [ 1.899990] Loading compiled-in X.509 certificates [ 1.903826] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.906701] zswap: loaded using pool zstd/z3fold [ 1.907326] Key type ._fscrypt registered [ 1.907334] Key type .fscrypt registered [ 1.907338] Key type fscrypt-provisioning registered [ 1.908346] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922075] Key type encrypted registered [ 1.922109] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922149] ima: No TPM chip found, activating TPM-bypass! [ 1.922177] ima: Allocated hash algorithm: sha1 [ 1.922209] ima: No architecture policies found [ 1.922282] evm: Initialising EVM extended attributes: [ 1.922286] evm: security.selinux [ 1.922291] evm: security.SMACK64 [ 1.922296] evm: security.SMACK64EXEC [ 1.922300] evm: security.SMACK64TRANSMUTE [ 1.922304] evm: security.SMACK64MMAP [ 1.922308] evm: security.apparmor [ 1.922312] evm: security.ima [ 1.922316] evm: security.capability [ 1.922320] evm: HMAC attrs: 0x1 [ 1.935478] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.935838] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.937884] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.937915] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938068] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938129] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.938581] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.938597] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.938607] usb usb1: Product: xHCI Host Controller [ 1.938615] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.938624] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939157] hub 1-0:1.0: USB hub found [ 1.939202] hub 1-0:1.0: 1 port detected [ 1.939537] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.939557] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.939576] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.939668] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.939826] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.939839] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939849] usb usb2: Product: xHCI Host Controller [ 1.939857] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939866] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940303] hub 2-0:1.0: USB hub found [ 1.940340] hub 2-0:1.0: 1 port detected [ 1.942990] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.944802] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951206] of_cfs_init [ 1.951337] of_cfs_init: OK [ 1.951677] ALSA device list: [ 1.951684] No soundcards found. [ 1.952785] Freeing unused kernel memory: 2496K [ 1.973623] Run /init as init process [ 1.973631] with arguments: [ 1.973637] /init [ 1.973643] with environment: [ 1.973647] HOME=/ [ 1.973652] TERM=linux [ 1.973657] ubootpart=ce3dfe46-01 [ 1.973662] cgroup_enable=memory [ 2.193601] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.346592] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.346627] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.346638] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.346646] usb 1-1: Manufacturer: Microsoft [ 2.367970] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.416093] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.429907] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.437381] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.446665] vdd-cpu: supplied by vcc-5v [ 2.449719] vdd-gpu: supplied by vcc-5v [ 2.450579] vdd-sys: supplied by vcc-5v [ 2.451449] vcc-dram: supplied by vcc-5v [ 2.453703] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.454269] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.456626] vcc-pl-led-ir: supplied by vcc-5v [ 2.457495] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.513978] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.527597] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.566336] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.567031] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.568106] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.568777] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.569573] bldo4: supplied by vcc-5v [ 2.570101] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.570919] cldo2: supplied by vcc-5v [ 2.571561] cldo3: supplied by vcc-5v [ 2.571822] sw: supplied by regulator-dummy [ 2.572376] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.578873] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.579353] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.580357] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.581186] printk: console [ttyS0] disabled [ 2.581302] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.581573] printk: console [ttyS0] enabled [ 2.582872] sun4i-drm display-engine: Adding to iommu group 0 [ 2.587091] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.588237] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.602484] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.602783] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.603132] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.603237] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.607552] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.610193] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.611789] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.612790] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.614453] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.614521] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.770264] Console: switching to colour frame buffer device 240x67 [ 2.820085] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.841915] acx00-codec acx00-codec: DMA mask not set [ 2.844695] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.846014] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.846566] vcc-wifi-io: supplied by vcc33-wifi [ 2.848944] ehci-platform 5101000.usb: EHCI Host Controller [ 2.849108] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.849277] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.861619] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.861961] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.861976] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.861987] usb usb3: Product: EHCI Host Controller [ 2.861995] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.862004] usb usb3: SerialNumber: 5101000.usb [ 2.862573] hub 3-0:1.0: USB hub found [ 2.862616] hub 3-0:1.0: 1 port detected [ 2.863716] ehci-platform 5311000.usb: EHCI Host Controller [ 2.863754] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.863897] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.869591] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.869910] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.877571] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.877916] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.877932] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.877943] usb usb4: Product: EHCI Host Controller [ 2.877951] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.877960] usb usb4: SerialNumber: 5311000.usb [ 2.878516] hub 4-0:1.0: USB hub found [ 2.878560] hub 4-0:1.0: 1 port detected [ 2.879652] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.879690] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.879830] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.904492] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.906262] mmc0: Problem switching card into high-speed mode! [ 2.906374] mmc0: new SDHC card at address 0001 [ 2.907229] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.909255] mmcblk0: p1 [ 2.941827] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.941852] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.941862] usb usb5: Product: Generic Platform OHCI controller [ 2.941871] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.941879] usb usb5: SerialNumber: 5101400.usb [ 2.942627] hub 5-0:1.0: USB hub found [ 2.942693] hub 5-0:1.0: 1 port detected [ 2.943898] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.943950] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.944086] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 2.997703] mmc2: new HS200 MMC card at address 0001 [ 2.998755] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.001037] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.002672] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.005930] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.005972] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.005984] usb usb6: Product: Generic Platform OHCI controller [ 3.005992] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.006001] usb usb6: SerialNumber: 5311400.usb [ 3.006674] hub 6-0:1.0: USB hub found [ 3.006731] hub 6-0:1.0: 1 port detected [ 3.008066] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.008361] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.113914] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.113960] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.114250] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.114265] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.114276] usb usb7: Product: MUSB HDRC host driver [ 3.114284] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.114293] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.114896] hub 7-0:1.0: USB hub found [ 3.114955] hub 7-0:1.0: 1 port detected [ 3.135122] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.135149] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.135453] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.135754] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.135801] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.241842] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.241868] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.241876] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.241886] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.241894] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.241901] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.460812] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.685578] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.922615] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.922646] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.922656] usb 5-1: Product: USB Receiver [ 3.922665] usb 5-1: Manufacturer: Logitech [ 3.931703] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 3.990240] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 3.996409] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 3.996878] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.053923] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.054273] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.058954] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.755008] systemd[1]: System time before build time, advancing clock. [ 4.843289] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 4.852360] systemd[1]: systemd 249.11-0ubuntu3.1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS -OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.853031] systemd[1]: Detected architecture arm64. [ 4.856401] systemd[1]: Hostname set to <orangepi3-lts>. [ 5.073589] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 5.093717] mmc1: new high speed SDIO card at address 8800 [ 6.193792] systemd[1]: Queued start job for default target Graphical Interface. [ 6.199673] systemd[1]: Created slice Slice /system/modprobe. [ 6.202438] systemd[1]: Created slice Slice /system/serial-getty. [ 6.204317] systemd[1]: Created slice User and Session Slice. [ 6.205203] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.206686] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.207616] systemd[1]: Reached target Remote File Systems. [ 6.207972] systemd[1]: Reached target Slice Units. [ 6.208316] systemd[1]: Reached target Swaps. [ 6.208615] systemd[1]: Reached target System Time Set. [ 6.209148] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.210233] systemd[1]: Listening on Syslog Socket. [ 6.211099] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.211773] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.213196] systemd[1]: Listening on Journal Audit Socket. [ 6.214166] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.215189] systemd[1]: Listening on Journal Socket. [ 6.226972] systemd[1]: Listening on udev Control Socket. [ 6.228070] systemd[1]: Listening on udev Kernel Socket. [ 6.232463] systemd[1]: Mounting Huge Pages File System... [ 6.237480] systemd[1]: Mounting POSIX Message Queue File System... [ 6.243196] systemd[1]: Mounting Kernel Debug File System... [ 6.244530] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.251806] systemd[1]: Starting Restore / save the current clock... [ 6.257507] systemd[1]: Starting Set the console keyboard layout... [ 6.264010] systemd[1]: Starting Create List of Static Device Nodes... [ 6.270697] systemd[1]: Starting Load Kernel Module configfs... [ 6.277248] systemd[1]: Starting Load Kernel Module drm... [ 6.284225] systemd[1]: Starting Load Kernel Module fuse... [ 6.290950] systemd[1]: Started Nameserver information manager. [ 6.293372] systemd[1]: Reached target Preparation for Network. [ 6.294676] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.305486] systemd[1]: Starting Load Kernel Modules... [ 6.311575] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.318055] systemd[1]: Starting Coldplug All udev Devices... [ 6.329070] systemd[1]: Mounted Huge Pages File System. [ 6.330531] systemd[1]: Mounted POSIX Message Queue File System. [ 6.331866] systemd[1]: Mounted Kernel Debug File System. [ 6.334637] systemd[1]: Finished Restore / save the current clock. [ 6.337208] fuse: init (API version 7.34) [ 6.338287] systemd[1]: Finished Create List of Static Device Nodes. [ 6.340802] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.342196] systemd[1]: Finished Load Kernel Module configfs. [ 6.344794] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.346196] systemd[1]: Finished Load Kernel Module drm. [ 6.348702] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.350366] systemd[1]: Finished Load Kernel Module fuse. [ 6.358420] systemd[1]: Mounting FUSE Control File System... [ 6.363565] systemd[1]: Mounting Kernel Configuration File System... [ 6.370549] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.378619] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.380232] systemd[1]: Mounted FUSE Control File System. [ 6.381348] systemd[1]: Mounted Kernel Configuration File System. [ 6.382326] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.387071] systemd[1]: Starting Load/Save Random Seed... [ 6.392540] systemd[1]: Starting Create System Users... [ 6.586419] WCN: marlin_init entry! [ 6.586991] WCN: wcn config bt wake host [ 6.587221] WCN_ERR: dts node for bt_wake not found [ 6.587225] WCN: marlin2 parse_dt some para not config [ 6.587238] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.592123] sdiohal:sdiohal_init ok [ 6.592878] WCN: marlin_probe ok! [ 6.620583] mtty_probe init device addr: 0x00000000e28a0d2b [ 6.620797] -->rfkill_bluetooth_init [ 6.620939] bluetooth_set_power: start_block=1 [ 6.620953] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.620964] bluetooth_set_power: end_block=1 [ 6.620984] <--rfkill_bluetooth_init [ 6.623689] systemd[1]: Finished Load/Save Random Seed. [ 6.626442] systemd[1]: Finished Create System Users. [ 6.627758] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.634972] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.763812] systemd[1]: Finished Set the console keyboard layout. [ 6.786911] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.788524] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.809385] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.809498] [ADDR_MGT] addr_mgt_probe: success. [ 6.875323] WCN: start_marlin [MARLIN_WIFI] [ 6.875350] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.875357] WCN: the first power on start [ 6.882798] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.890198] systemd[1]: Reached target Preparation for Local File Systems. [ 6.902433] systemd[1]: Mounting /tmp... [ 6.917110] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.928017] systemd[1]: Mounted /tmp. [ 6.935371] systemd[1]: Reached target Local File Systems. [ 6.947700] systemd[1]: Starting Armbian leds state... [ 6.960150] systemd[1]: Starting Armbian ZRAM config... [ 6.973058] systemd[1]: Starting Set console font and keymap... [ 6.981654] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 6.985303] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 7.009278] systemd[1]: Starting Set Up Additional Binary Formats... [ 7.009633] sdiohal:sdiohal_scan_card [ 7.009865] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 7.009980] WCN: marlin_scan_finish! [ 7.009984] sdiohal:probe ok [ 7.010121] sdiohal:scan end! [ 7.010127] WCN: then marlin start to download [ 7.010352] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 7.010365] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 7.016147] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 7.016455] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 7.019509] systemd[1]: Finished Coldplug All udev Devices. [ 7.028350] systemd[1]: Finished Set console font and keymap. [ 7.059177] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.068115] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.075631] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 363 (systemd-binfmt) [ 7.080419] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 7.176429] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.195698] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.204781] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.302466] systemd[1]: Finished Armbian leds state. [ 7.578280] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.586089] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.586742] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.594078] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.594232] systemd[1]: Reached target Local Encrypted Volumes. [ 7.650629] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.690721] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.861430] bluetooth_set_power: start_block=0 [ 7.861457] WCN: start_marlin [MARLIN_BLUETOOTH] [ 8.022021] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.022313] WCN: marlin_start_run read reset reg val:0x1 [ 8.022320] WCN: after do marlin_start_run reset reg val:0x0 [ 8.022497] WCN: s_marlin_bootup_time=8022497218 [ 8.027371] mc: Linux media interface: v0.10 [ 8.029116] WCN: clock mode: TSX [ 8.029325] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.042428] panfrost 1800000.gpu: clock rate = 432000000 [ 8.042461] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.048008] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.048034] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.048042] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.048050] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.053842] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.078362] videodev: Linux video capture interface: v2.00 [ 8.079820] systemd[1]: Found device /dev/ttyS0. [ 8.081868] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.081894] WCN: sdio_config bt_wake_host trigger:[high] [ 8.081897] WCN: sdio_config irq:[inband] [ 8.081899] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.081903] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.081906] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.082330] WCN: marlin_write_cali_data finish [ 8.082591] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.083099] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.109908] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.130243] zram: Added device: zram0 [ 8.137813] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.165793] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.181921] zram: Added device: zram1 [ 8.193819] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.193843] WCN: marlin_bind_verify confuse data: 0x2e197f4f5a1107df30c640a9405a3d69 [ 8.193860] WCN: marlin_bind_verify verify data: 0x016d6ab91e1d071b3ae4604f224021aa [ 8.194409] WCN: check_cp_ready sync val:0xf0f0f0f7, prj_type val:0x0 [ 8.198061] zram: Added device: zram2 [ 8.227589] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.227616] sdiohal:sdiohal_runtime_get entry [ 8.233394] WCN: get_cp2_version entry! [ 8.280833] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.280868] WCN: switch_cp2_log - close entry! [ 8.282187] WCN: WCND at cmd read:OK [ 8.282244] WCN: then marlin download finished and run ok [ 8.282258] WCN: start_loopcheck [ 8.282550] WCN: marlin power state:4, subsys: [MARLIN_BLUETOOTH] power 1 [ 8.282561] WCN: marlin have open, GNSS is closed [ 8.282565] bluetooth_set_power: end_block=0 [ 8.288920] systemd[1]: Started Load/Save RF Kill Switch Status. [ 8.306629] WCN: get_board_ant_num [one_ant] [ 8.306654] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.380720] Registered IR keymap rc-empty [ 8.380846] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.381036] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.381128] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.381466] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.387814] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.392387] systemd[1]: Finished Load Kernel Modules. [ 8.402147] systemd[1]: Starting Apply Kernel Variables... [ 8.499610] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.500798] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.501857] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.621340] zram0: detected capacity change from 0 to 2037304 [ 8.651781] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.687059] systemd[1]: Finished Apply Kernel Variables. [ 8.716975] systemd[1]: Starting Raise network interfaces... [ 8.871439] zram1: detected capacity change from 0 to 102400 [ 8.949631] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 9.026075] systemd[1]: Finished Armbian ZRAM config. [ 9.036822] systemd[1]: Starting Armbian memory supported logging... [ 9.110343] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.157338] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.171004] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.327377] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.328295] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.690644] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.691310] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.692362] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.697275] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.697501] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.697835] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.697994] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.755895] systemd[1]: Finished Raise network interfaces. [ 9.998313] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.998546] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.998617] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.998708] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.998815] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.998931] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.573639] systemd[1]: Finished Armbian memory supported logging. [ 11.584810] systemd[1]: Starting Journal Service... [ 11.722369] systemd[1]: Started Journal Service. [ 11.750846] systemd-journald[690]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable BRANCH=current ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u ### lsusb: Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1845772 kB MemAvailable: 1851244 kB Buffers: 12532 kB Cached: 52908 kB SwapCached: 0 kB Active: 32344 kB Inactive: 52708 kB Active(anon): 428 kB Inactive(anon): 22452 kB Active(file): 31916 kB Inactive(file): 30256 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 2836 kB Writeback: 0 kB AnonPages: 19400 kB Mapped: 16772 kB Shmem: 3376 kB KReclaimable: 10500 kB Slab: 45964 kB SReclaimable: 10500 kB SUnreclaim: 35464 kB KernelStack: 2448 kB PageTables: 1528 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 42340 kB VmallocTotal: 133143592960 kB VmallocUsed: 22684 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63011 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 29G 4.9G 24G 18% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 2.8M 41M 7% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 29.4G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 728B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block cid: 15010038475446345206d410e21fc801 rel_sectors: 0x1 enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 11:48:18: 1608MHz 1.34 46% 19% 13% 0% 12% 0% 65.9°C 0/9 11:48:18: 1080MHz 1.34 11% 6% 4% 1% 0% 0% 65.9°C 0/9 11:48:18: 816MHz 1.34 12% 7% 3% 1% 0% 0% 61.8°C 0/9 11:48:19: 888MHz 1.34 13% 9% 2% 1% 0% 0% 60.3°C 0/9 11:48:19: 1800MHz 1.34 12% 10% 2% 0% 0% 0% 62.2°C 0/9 ### Activated 1 lzo-rle zram swap devices with 994MB each. ### Activated Armbian ramlog partition with zstd compression Tue Jun 28 07:44:49 AM CST 2022 | Orange Pi 3 LTS | 22.05.3 | arm64 | aarch64 | 5.15.48-sunxi64 ### dmesg: [ 1.271004] i2c_dev: i2c /dev entries driver [ 1.271798] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.273360] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pm not found, using dummy regulator [ 1.273780] sdhci: Secure Digital Host Controller Interface driver [ 1.273788] sdhci: Copyright(c) Pierre Ossman [ 1.273812] Synopsys Designware Multimedia Card Interface Driver [ 1.274605] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.274770] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.276126] ledtrig-cpu: registered to indicate activity on CPUs [ 1.276686] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.276980] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277121] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277218] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277342] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.277430] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.277588] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.277706] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.277822] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.277932] sun8i-ce 1904000.crypto: Register md5 [ 1.278040] sun8i-ce 1904000.crypto: Register sha1 [ 1.278147] sun8i-ce 1904000.crypto: Register sha224 [ 1.278256] sun8i-ce 1904000.crypto: Register sha256 [ 1.278363] sun8i-ce 1904000.crypto: Register sha384 [ 1.278481] sun8i-ce 1904000.crypto: Register sha512 [ 1.278588] sun8i-ce 1904000.crypto: Register stdrng [ 1.279328] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.279920] hid: raw HID events driver (C) Jiri Kosina [ 1.280051] usbcore: registered new interface driver usbhid [ 1.280059] usbhid: USB HID core driver [ 1.280834] random: crng init done [ 1.283096] NET: Registered PF_INET6 protocol family [ 1.870220] Freeing initrd memory: 12684K [ 1.898842] Segment Routing with IPv6 [ 1.898907] In-situ OAM (IOAM) with IPv6 [ 1.898991] NET: Registered PF_PACKET protocol family [ 1.899097] 8021q: 802.1Q VLAN Support v1.8 [ 1.899247] 9pnet: Installing 9P2000 support [ 1.899322] Key type dns_resolver registered [ 1.899785] registered taskstats version 1 [ 1.899801] Loading compiled-in X.509 certificates [ 1.903658] Loaded X.509 cert 'Build time autogenerated kernel key: 32330adefd2da02e444296fafd37464380789679' [ 1.906608] zswap: loaded using pool zstd/z3fold [ 1.907226] Key type ._fscrypt registered [ 1.907235] Key type .fscrypt registered [ 1.907240] Key type fscrypt-provisioning registered [ 1.908245] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.922095] Key type encrypted registered [ 1.922126] AppArmor: AppArmor sha1 policy hashing enabled [ 1.922166] ima: No TPM chip found, activating TPM-bypass! [ 1.922195] ima: Allocated hash algorithm: sha1 [ 1.922227] ima: No architecture policies found [ 1.922282] evm: Initialising EVM extended attributes: [ 1.922287] evm: security.selinux [ 1.922292] evm: security.SMACK64 [ 1.922296] evm: security.SMACK64EXEC [ 1.922300] evm: security.SMACK64TRANSMUTE [ 1.922304] evm: security.SMACK64MMAP [ 1.922308] evm: security.apparmor [ 1.922313] evm: security.ima [ 1.922317] evm: security.capability [ 1.922321] evm: HMAC attrs: 0x1 [ 1.935406] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.935756] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.937838] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.937871] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 1.938040] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f064 hci version 0x100 quirks 0x0000000002010010 [ 1.938102] xhci-hcd xhci-hcd.1.auto: irq 43, io mem 0x05200000 [ 1.938567] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.938584] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.938594] usb usb1: Product: xHCI Host Controller [ 1.938603] usb usb1: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.938611] usb usb1: SerialNumber: xhci-hcd.1.auto [ 1.939145] hub 1-0:1.0: USB hub found [ 1.939190] hub 1-0:1.0: 1 port detected [ 1.939527] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.939547] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.939567] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 1.939664] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.939823] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.939836] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.939846] usb usb2: Product: xHCI Host Controller [ 1.939854] usb usb2: Manufacturer: Linux 5.15.48-sunxi64 xhci-hcd [ 1.939863] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.940275] hub 2-0:1.0: USB hub found [ 1.940310] hub 2-0:1.0: 1 port detected [ 1.942951] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 1.944731] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 1.951102] of_cfs_init [ 1.951222] of_cfs_init: OK [ 1.951547] ALSA device list: [ 1.951553] No soundcards found. [ 1.952660] Freeing unused kernel memory: 2496K [ 1.985358] Run /init as init process [ 1.985366] with arguments: [ 1.985373] /init [ 1.985378] with environment: [ 1.985383] HOME=/ [ 1.985388] TERM=linux [ 1.985393] ubootpart=ce3dfe46-01 [ 1.985398] cgroup_enable=memory [ 2.197340] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 2.350433] usb 1-1: New USB device found, idVendor=045e, idProduct=0745, bcdDevice= 6.33 [ 2.350464] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.350474] usb 1-1: Product: Microsoft® 2.4GHz Transceiver v7.0 [ 2.350483] usb 1-1: Manufacturer: Microsoft [ 2.375225] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.0/0003:045E:0745.0001/input/input0 [ 2.438207] hid-generic 0003:045E:0745.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input0 [ 2.442434] axp20x-i2c 0-0036: AXP20x variant AXP806 found [ 2.450726] input: axp20x-pek as /devices/platform/soc/7081400.i2c/i2c-0/0-0036/axp221-pek/input/input1 [ 2.454955] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Mouse as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input2 [ 2.460662] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.1/0003:045E:0745.0002/input/input3 [ 2.462363] vdd-cpu: supplied by vcc-5v [ 2.463981] vdd-gpu: supplied by vcc-5v [ 2.464566] vdd-sys: Bringing 900000uV into 960000-960000uV [ 2.464950] vdd-sys: supplied by vcc-5v [ 2.465877] vcc-dram: supplied by vcc-5v [ 2.466667] vcc-pl-led-ir: supplied by vcc-5v [ 2.467435] vcc33-audio-tv-ephy-mac: Bringing 700000uV into 3300000-3300000uV [ 2.467815] vcc33-audio-tv-ephy-mac: supplied by vcc-5v [ 2.517838] hid-generic 0003:045E:0745.0002: input,hidraw1: USB HID v1.11 Mouse [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input1 [ 2.526830] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 Consumer Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input4 [ 2.574062] vcc33-io-pd-emmc-sd-usb-uart-1: Bringing 700000uV into 3300000-3300000uV [ 2.574423] vcc33-io-pd-emmc-sd-usb-uart-1: supplied by vcc-5v [ 2.575457] vcc18-dram-bias-pll: supplied by vcc-5v [ 2.576536] vcc-efuse-pcie-hdmi-pc: supplied by vcc-5v [ 2.577198] vcc-wifi-io-pm-pg: Bringing 700000uV into 1800000-1800000uV [ 2.577534] vcc-wifi-io-pm-pg: supplied by vcc-5v [ 2.578659] bldo4: supplied by vcc-5v [ 2.579187] vcc33-io-pd-emmc-sd-usb-uart-2: supplied by vcc-5v [ 2.580004] cldo2: supplied by vcc-5v [ 2.580651] cldo3: supplied by vcc-5v [ 2.580881] sw: supplied by regulator-dummy [ 2.581462] axp20x-i2c 0-0036: AXP20X driver loaded [ 2.587289] input: Microsoft Microsoft® 2.4GHz Transceiver v7.0 System Control as /devices/platform/soc/5200000.usb/xhci-hcd.1.auto/usb1/1-1/1-1:1.2/0003:045E:0745.0003/input/input6 [ 2.587787] hid-generic 0003:045E:0745.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Microsoft Microsoft® 2.4GHz Transceiver v7.0] on usb-xhci-hcd.1.auto-1/input2 [ 2.590166] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 2.590661] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pb not found, using dummy regulator [ 2.591648] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 2.592259] printk: console [ttyS0] disabled [ 2.592370] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 35, base_baud = 1500000) is a 16550A [ 2.592603] printk: console [ttyS0] enabled [ 2.594026] sun4i-drm display-engine: Adding to iommu group 0 [ 2.614241] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e16990) [ 2.614521] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e1abb8) [ 2.614859] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e11ba0) [ 2.614950] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 2.615547] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 2.615931] sun8i-dw-hdmi 6000000.hdmi: EVENT=plugin [ 2.616321] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 2.616766] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e15cc8) [ 2.627717] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 2.627781] sun8i-dw-hdmi 6000000.hdmi: read_hpd result: 1 [ 2.785963] Console: switching to colour frame buffer device 240x67 [ 2.835811] sun4i-drm display-engine: [drm] fb0: sun4i-drmdrmfb frame buffer device [ 2.857467] acx00-codec acx00-codec: DMA mask not set [ 2.859822] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 2.862436] sunxi-mmc 4020000.mmc: Got CD GPIO [ 2.862855] vcc-wifi-io: supplied by vcc33-wifi [ 2.865691] ehci-platform 5101000.usb: EHCI Host Controller [ 2.865735] ehci-platform 5101000.usb: new USB bus registered, assigned bus number 3 [ 2.865880] ehci-platform 5101000.usb: irq 41, io mem 0x05101000 [ 2.885309] ehci-platform 5101000.usb: USB 2.0 started, EHCI 1.00 [ 2.885313] sunxi-mmc 4022000.mmc: initialized, max. request size: 2048 KB, uses new timings mode [ 2.885574] sunxi-mmc 4020000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 2.885643] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.885658] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.885669] usb usb3: Product: EHCI Host Controller [ 2.885677] usb usb3: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.885686] usb usb3: SerialNumber: 5101000.usb [ 2.886286] hub 3-0:1.0: USB hub found [ 2.886349] hub 3-0:1.0: 1 port detected [ 2.887655] ehci-platform 5311000.usb: EHCI Host Controller [ 2.887708] ehci-platform 5311000.usb: new USB bus registered, assigned bus number 4 [ 2.887848] ehci-platform 5311000.usb: irq 44, io mem 0x05311000 [ 2.905298] ehci-platform 5311000.usb: USB 2.0 started, EHCI 1.00 [ 2.905653] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 2.905668] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.905678] usb usb4: Product: EHCI Host Controller [ 2.905687] usb usb4: Manufacturer: Linux 5.15.48-sunxi64 ehci_hcd [ 2.905695] usb usb4: SerialNumber: 5311000.usb [ 2.906266] hub 4-0:1.0: USB hub found [ 2.906311] hub 4-0:1.0: 1 port detected [ 2.907463] ohci-platform 5101400.usb: Generic Platform OHCI controller [ 2.907502] ohci-platform 5101400.usb: new USB bus registered, assigned bus number 5 [ 2.907639] ohci-platform 5101400.usb: irq 42, io mem 0x05101400 [ 2.920322] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.922092] mmc0: Problem switching card into high-speed mode! [ 2.922211] mmc0: new SDHC card at address 0001 [ 2.923101] mmcblk0: mmc0:0001 USD 29.8 GiB [ 2.925179] mmcblk0: p1 [ 2.969595] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 2.969624] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.969635] usb usb5: Product: Generic Platform OHCI controller [ 2.969643] usb usb5: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 2.969652] usb usb5: SerialNumber: 5101400.usb [ 2.970330] hub 5-0:1.0: USB hub found [ 2.970383] hub 5-0:1.0: 1 port detected [ 2.971617] ohci-platform 5311400.usb: Generic Platform OHCI controller [ 2.971660] ohci-platform 5311400.usb: new USB bus registered, assigned bus number 6 [ 2.971801] ohci-platform 5311400.usb: irq 45, io mem 0x05311400 [ 3.017445] mmc2: new HS200 MMC card at address 0001 [ 3.018424] mmcblk2: mmc2:0001 8GTF4R 7.28 GiB [ 3.020685] mmcblk2boot0: mmc2:0001 8GTF4R 4.00 MiB [ 3.022339] mmcblk2boot1: mmc2:0001 8GTF4R 4.00 MiB [ 3.033624] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.15 [ 3.033662] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.033673] usb usb6: Product: Generic Platform OHCI controller [ 3.033682] usb usb6: Manufacturer: Linux 5.15.48-sunxi64 ohci_hcd [ 3.033690] usb usb6: SerialNumber: 5311400.usb [ 3.034410] hub 6-0:1.0: USB hub found [ 3.034470] hub 6-0:1.0: 1 port detected [ 3.035805] usb_phy_generic usb_phy_generic.4.auto: supply vcc not found, using dummy regulator [ 3.036009] usb_phy_generic usb_phy_generic.4.auto: dummy supplies not allowed for exclusive requests [ 3.133661] musb-hdrc musb-hdrc.5.auto: MUSB HDRC host driver [ 3.133704] musb-hdrc musb-hdrc.5.auto: new USB bus registered, assigned bus number 7 [ 3.133977] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 3.133993] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.134004] usb usb7: Product: MUSB HDRC host driver [ 3.134012] usb usb7: Manufacturer: Linux 5.15.48-sunxi64 musb-hcd [ 3.134020] usb usb7: SerialNumber: musb-hdrc.5.auto [ 3.134715] hub 7-0:1.0: USB hub found [ 3.134773] hub 7-0:1.0: 1 port detected [ 3.150722] dwmac-sun8i 5020000.ethernet: IRQ eth_wake_irq not found [ 3.150748] dwmac-sun8i 5020000.ethernet: IRQ eth_lpi not found [ 3.151052] dwmac-sun8i 5020000.ethernet: supply phy-io not found, using dummy regulator [ 3.151322] dwmac-sun8i 5020000.ethernet: PTP uses main clock [ 3.151370] dwmac-sun8i 5020000.ethernet: Current syscon value is not the default 58000 (expect 50000) [ 3.257560] dwmac-sun8i 5020000.ethernet: No HW DMA feature register supported [ 3.257587] dwmac-sun8i 5020000.ethernet: RX Checksum Offload Engine supported [ 3.257594] dwmac-sun8i 5020000.ethernet: COE Type 2 [ 3.257604] dwmac-sun8i 5020000.ethernet: TX Checksum insertion supported [ 3.257612] dwmac-sun8i 5020000.ethernet: Normal descriptors [ 3.257619] dwmac-sun8i 5020000.ethernet: Chain mode enabled [ 3.485042] EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null). Quota mode: none. [ 3.701321] usb 5-1: new full-speed USB device number 2 using ohci-platform [ 3.938354] usb 5-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.10 [ 3.938383] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.938394] usb 5-1: Product: USB Receiver [ 3.938402] usb 5-1: Manufacturer: Logitech [ 3.947518] input: Logitech USB Receiver as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.0/0003:046D:C52B.0004/input/input7 [ 4.006002] hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-5101400.usb-1/input0 [ 4.012208] input: Logitech USB Receiver Mouse as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input8 [ 4.012665] input: Logitech USB Receiver Consumer Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input9 [ 4.069662] input: Logitech USB Receiver System Control as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.1/0003:046D:C52B.0005/input/input10 [ 4.070031] hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-5101400.usb-1/input1 [ 4.074797] hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 4.780230] systemd[1]: System time before build time, advancing clock. [ 4.868365] sunxi-mmc 4021000.mmc: allocated mmc-pwrseq [ 4.877545] systemd[1]: systemd 249.11-0ubuntu3.1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS -OPENSSL +ACL +BLKID +CURL +ELFUTILS -FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 4.878226] systemd[1]: Detected architecture arm64. [ 4.881592] systemd[1]: Hostname set to <orangepi3-lts>. [ 5.101862] sunxi-mmc 4021000.mmc: initialized, max. request size: 16384 KB, uses new timings mode [ 5.119516] mmc1: new high speed SDIO card at address 8800 [ 6.293876] systemd[1]: Queued start job for default target Graphical Interface. [ 6.299750] systemd[1]: Created slice Slice /system/modprobe. [ 6.302537] systemd[1]: Created slice Slice /system/serial-getty. [ 6.304385] systemd[1]: Created slice User and Session Slice. [ 6.305369] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.306819] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.307696] systemd[1]: Reached target Remote File Systems. [ 6.308041] systemd[1]: Reached target Slice Units. [ 6.308380] systemd[1]: Reached target Swaps. [ 6.308677] systemd[1]: Reached target System Time Set. [ 6.309210] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.310301] systemd[1]: Listening on Syslog Socket. [ 6.311159] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.311801] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.313180] systemd[1]: Listening on Journal Audit Socket. [ 6.314227] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.315211] systemd[1]: Listening on Journal Socket. [ 6.326975] systemd[1]: Listening on udev Control Socket. [ 6.328076] systemd[1]: Listening on udev Kernel Socket. [ 6.332683] systemd[1]: Mounting Huge Pages File System... [ 6.338074] systemd[1]: Mounting POSIX Message Queue File System... [ 6.343823] systemd[1]: Mounting Kernel Debug File System... [ 6.345097] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 6.352304] systemd[1]: Starting Restore / save the current clock... [ 6.358015] systemd[1]: Starting Set the console keyboard layout... [ 6.364390] systemd[1]: Starting Create List of Static Device Nodes... [ 6.371017] systemd[1]: Starting Load Kernel Module configfs... [ 6.377727] systemd[1]: Starting Load Kernel Module drm... [ 6.384315] systemd[1]: Starting Load Kernel Module fuse... [ 6.391403] systemd[1]: Started Nameserver information manager. [ 6.392936] systemd[1]: Reached target Preparation for Network. [ 6.394122] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 6.406943] systemd[1]: Starting Load Kernel Modules... [ 6.412637] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.418869] systemd[1]: Starting Coldplug All udev Devices... [ 6.429912] systemd[1]: Mounted Huge Pages File System. [ 6.431274] systemd[1]: Mounted POSIX Message Queue File System. [ 6.432661] systemd[1]: Mounted Kernel Debug File System. [ 6.435426] systemd[1]: Finished Restore / save the current clock. [ 6.438862] systemd[1]: Finished Create List of Static Device Nodes. [ 6.439496] fuse: init (API version 7.34) [ 6.441770] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.443183] systemd[1]: Finished Load Kernel Module configfs. [ 6.446061] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.447247] systemd[1]: Finished Load Kernel Module drm. [ 6.449663] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.450951] systemd[1]: Finished Load Kernel Module fuse. [ 6.458776] systemd[1]: Mounting FUSE Control File System... [ 6.464040] systemd[1]: Mounting Kernel Configuration File System... [ 6.474677] systemd[1]: Mounted FUSE Control File System. [ 6.475071] EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro. Quota mode: none. [ 6.481615] systemd[1]: Finished Remount Root and Kernel File Systems. [ 6.483009] systemd[1]: Mounted Kernel Configuration File System. [ 6.483907] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 6.488816] systemd[1]: Starting Load/Save Random Seed... [ 6.494729] systemd[1]: Starting Create System Users... [ 6.660140] WCN: marlin_init entry! [ 6.660666] WCN: wcn config bt wake host [ 6.660887] WCN_ERR: dts node for bt_wake not found [ 6.660891] WCN: marlin2 parse_dt some para not config [ 6.660903] sdiohal:sdiohal_parse_dt adma_tx:1, adma_rx:1, pwrseq:0, irq type:data, gpio_num:0, blksize:840 [ 6.665745] sdiohal:sdiohal_init ok [ 6.666445] WCN: marlin_probe ok! [ 6.691458] mtty_probe init device addr: 0x00000000009926d4 [ 6.691698] -->rfkill_bluetooth_init [ 6.691861] bluetooth_set_power: start_block=1 [ 6.691875] WCN: marlin power state:0, subsys: [MARLIN_BLUETOOTH] power 0 [ 6.691886] bluetooth_set_power: end_block=1 [ 6.691905] <--rfkill_bluetooth_init [ 6.715886] systemd[1]: Finished Load/Save Random Seed. [ 6.718379] systemd[1]: Finished Create System Users. [ 6.719559] systemd[1]: Condition check resulted in First Boot Complete being skipped. [ 6.724878] systemd[1]: Starting Create Static Device Nodes in /dev... [ 6.796727] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 6.798565] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 6.819533] [ADDR_MGT] addr_mgt_probe: module version: v1.0.9 [ 6.819648] [ADDR_MGT] addr_mgt_probe: success. [ 6.863106] systemd[1]: Finished Set the console keyboard layout. [ 6.887348] WCN: start_marlin [MARLIN_WIFI] [ 6.887375] WCN: marlin power state:0, subsys: [MARLIN_WIFI] power 1 [ 6.887385] WCN: the first power on start [ 6.894415] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.901977] systemd[1]: Reached target Preparation for Local File Systems. [ 6.914256] systemd[1]: Mounting /tmp... [ 6.928825] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 6.939787] systemd[1]: Mounted /tmp. [ 6.947152] systemd[1]: Reached target Local File Systems. [ 6.959184] systemd[1]: Starting Armbian leds state... [ 6.971551] systemd[1]: Starting Armbian ZRAM config... [ 6.984210] systemd[1]: Starting Set console font and keymap... [ 6.993355] WCN: marlin chip en dummy pull up -- need manually set GPIO [ 6.996364] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data... [ 7.021397] sdiohal:sdiohal_scan_card [ 7.021668] sdiohal:sdiohal_probe: func->class=0, vendor=0x0000, device=0x0000, func_num=0x0001, clock=50000000 [ 7.021795] systemd[1]: Starting Set Up Additional Binary Formats... [ 7.021816] WCN: marlin_scan_finish! [ 7.021823] sdiohal:probe ok [ 7.021979] sdiohal:scan end! [ 7.021987] WCN: then marlin start to download [ 7.022257] WCN: marlin_get_wcn_chipid: chipid: 0x2355b001 [ 7.022272] WCN: marlin_request_firmware from /lib/firmware/wcnmodem.bin start! [ 7.029127] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 7.029487] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 7.032823] systemd[1]: Finished Set console font and keymap. [ 7.046131] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 365 (systemd-binfmt) [ 7.052057] systemd[1]: Mounting Arbitrary Executable File Formats File System... [ 7.083231] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data. [ 7.134889] systemd[1]: Finished Coldplug All udev Devices. [ 7.189454] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 7.200737] systemd[1]: Mounted Arbitrary Executable File Formats File System. [ 7.220106] systemd[1]: Finished Set Up Additional Binary Formats. [ 7.250460] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 7.311656] systemd[1]: Finished Armbian leds state. [ 7.592733] systemd[1]: Started Rule-based Manager for Device Events and Files. [ 7.600572] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 7.601200] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 7.616428] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 7.616576] systemd[1]: Reached target Local Encrypted Volumes. [ 7.674195] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 7.714809] systemd[1]: Starting Load/Save RF Kill Switch Status... [ 7.775762] bluetooth_set_power: start_block=0 [ 7.775792] WCN: start_marlin [MARLIN_BLUETOOTH] [ 7.975324] zram: Added device: zram0 [ 7.975654] zram: Added device: zram1 [ 7.976033] zram: Added device: zram2 [ 8.094917] WCN: combin_img 0 marlin_firmware_write finish and successful [ 8.095242] WCN: marlin_start_run read reset reg val:0x1 [ 8.095250] WCN: after do marlin_start_run reset reg val:0x0 [ 8.095433] WCN: s_marlin_bootup_time=8095432843 [ 8.101544] WCN: clock mode: TSX [ 8.101736] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.132768] WCN: marlin_write_cali_data sync init_state:0x0 [ 8.159666] WCN: marlin_write_cali_data sync init_state:0xf0f0f0f1 [ 8.159698] WCN: sdio_config bt_wake_host trigger:[high] [ 8.159701] WCN: sdio_config irq:[inband] [ 8.159703] WCN: sdio_config wake_host_level_duration_time:[20ms] [ 8.159708] WCN: sdio_config wake_host_data_separation:[bt/wifi reuse] [ 8.159710] WCN: marlin_send_sdio_config_to_cp sdio_config:0x80f01 (enable config) [ 8.160558] WCN: marlin_write_cali_data finish [ 8.161314] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.177333] mc: Linux media interface: v0.10 [ 8.190592] panfrost 1800000.gpu: clock rate = 432000000 [ 8.190630] panfrost 1800000.gpu: bus_clock rate = 100000000 [ 8.191105] panfrost 1800000.gpu: mali-t720 id 0x720 major 0x1 minor 0x1 status 0x0 [ 8.191128] panfrost 1800000.gpu: features: 00000000,10309e40, issues: 00000000,21054400 [ 8.191136] panfrost 1800000.gpu: Features: L2:0x07110206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002821 AS:0xf JS:0x7 [ 8.191144] panfrost 1800000.gpu: shader_present=0x3 l2_present=0x1 [ 8.191541] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.192979] [drm] Initialized panfrost 1.2.0 20180908 for 1800000.gpu on minor 1 [ 8.217760] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.228323] videodev: Linux video capture interface: v2.00 [ 8.248869] zram0: detected capacity change from 0 to 2037304 [ 8.249575] WCN: check_cp_ready sync val:0xf0f0f0f2, prj_type val:0x0 [ 8.279502] systemd[1]: Found device /dev/ttyS0. [ 8.287283] WCN: check_cp_ready sync val:0xf0f0f0f6, prj_type val:0x0 [ 8.287302] WCN: marlin_bind_verify confuse data: 0xe5ae06b9a313020e4477650022a32ad5 [ 8.287317] WCN: marlin_bind_verify verify data: 0xa5ab8048e6a32ce226d910652b504834 [ 8.288057] WCN: check_cp_ready sync val:0xf0f0f0f8, prj_type val:0x0 [ 8.313569] WCN: check_cp_ready sync val:0xf0f0f0ff, prj_type val:0x0 [ 8.313595] sdiohal:sdiohal_runtime_get entry [ 8.317949] WCN: get_cp2_version entry! [ 8.337651] Adding 1018648k swap on /dev/zram0. Priority:5 extents:1 across:1018648k SSFS [ 8.357401] WCN: WCND at cmd read:WCN_VER:Platform Version:MARLIN3_19B_W20.37.4~Project Version:sc2355_marlin3_lite_ott~09-11-2020 21:27:32~ [ 8.358024] WCN: switch_cp2_log - close entry! [ 8.359418] WCN: WCND at cmd read:OK [ 8.359553] WCN: then marlin download finished and run ok [ 8.359585] WCN: start_loopcheck [ 8.359607] WCN: marlin power state:4, subsys: [MARLIN_BLUETOOTH] power 1 [ 8.359615] WCN: marlin have open, GNSS is closed [ 8.359620] bluetooth_set_power: end_block=0 [ 8.377701] systemd[1]: Started Load/Save RF Kill Switch Status. [ 8.392873] WCN: get_board_ant_num [one_ant] [ 8.392894] wifi ini path = /lib/firmware/wifi_2355b001_1ant.ini [ 8.421557] sunxi_cedrus: module is from the staging directory, the quality is unknown, you have been warned. [ 8.426838] cedrus 1c0e000.video-codec: Adding to iommu group 0 [ 8.435265] cedrus 1c0e000.video-codec: Device registered as /dev/video0 [ 8.475450] Registered IR keymap rc-empty [ 8.493733] rc rc0: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0 [ 8.508606] rc rc0: lirc_dev: driver sunxi-ir registered at minor = 0, raw IR receiver, no transmitter [ 8.514745] input: sunxi-ir as /devices/platform/soc/7040000.ir/rc/rc0/input12 [ 8.515268] sunxi-ir 7040000.ir: initialized sunXi IR driver [ 8.558655] unisoc_wifi unisoc_wifi wlan0: mixed HW and IP checksum settings. [ 8.571387] zram1: detected capacity change from 0 to 102400 [ 8.589949] systemd[1]: Finished Load Kernel Modules. [ 8.626023] systemd[1]: Starting Apply Kernel Variables... [ 8.701400] systemd[1]: Finished Armbian ZRAM config. [ 8.724623] systemd[1]: Starting Armbian memory supported logging... [ 8.741406] systemd[1]: Finished Apply Kernel Variables. [ 8.759248] systemd[1]: Starting Raise network interfaces... [ 8.928132] EXT4-fs (zram1): mounted filesystem without journal. Opts: discard. Quota mode: none. [ 9.050204] logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-5101400.usb-1/input2 [ 9.206494] input: Logitech Wireless Device PID:4004 Keyboard as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input13 [ 9.274225] hid-generic 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4004] on usb-5101400.usb-1/input2:1 [ 9.465060] input: Logitech K360 as /devices/platform/soc/5101400.usb/usb5/5-1/5-1:1.2/0003:046D:C52B.0006/0003:046D:4004.0007/input/input17 [ 9.465977] logitech-hidpp-device 0003:046D:4004.0007: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-5101400.usb-1/input2:1 [ 9.758059] systemd[1]: Finished Raise network interfaces. [ 9.909199] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.909534] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.909890] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 9.913981] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.914092] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.914197] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.914269] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 9.998835] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 9.999036] systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped. [ 9.999099] systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. [ 9.999176] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 9.999275] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 9.999378] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 11.570712] systemd[1]: Finished Armbian memory supported logging. [ 11.580348] systemd[1]: Starting Journal Service... [ 11.722747] systemd[1]: Started Journal Service. [ 11.751364] systemd-journald[691]: Received client request to flush runtime journal. ### armbian-release: # PLEASE DO NOT EDIT THIS FILE BOARD=orangepi3-lts BOARD_NAME="Orange Pi 3 LTS" BOARDFAMILY=sun50iw6 BUILD_REPOSITORY_URL=https://github.com/armbian/build BUILD_REPOSITORY_COMMIT=13f5fba13c VERSION=22.05.3 LINUXFAMILY=sunxi64 ARCH=arm64 IMAGE_TYPE=stable BOARD_TYPE=conf INITRD_ARCH=arm64 KERNEL_IMAGE_TYPE=stable BRANCH=current ### boot environment: verbosity=1 bootlogo=false console=both disp_mode=1920x1080p60 overlay_prefix=sun50i-h6 rootdev=UUID=71b44a6c-5bb8-4352-afe7-d22b8e62de4c rootfstype=ext4 usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u ### lsusb: Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 045e:0745 Microsoft Corp. Nano Transceiver v1.0 for Bluetooth Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 005 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 007 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub ### lscpu: Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Vendor ID: ARM Model name: Cortex-A53 Model: 4 Thread(s) per core: 1 Core(s) per cluster: 4 Socket(s): - Cluster(s): 1 Stepping: r0p4 CPU max MHz: 1800.0000 CPU min MHz: 480.0000 BogoMIPS: 48.00 Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid NUMA node(s): 1 NUMA node0 CPU(s): 0-3 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Mmio stale data: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected ### cpuinfo: processor : 0 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 1 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 2 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 processor : 3 BogoMIPS : 48.00 Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid CPU implementer : 0x41 CPU architecture: 8 CPU variant : 0x0 CPU part : 0xd03 CPU revision : 4 ### meminfo: MemTotal: 2037300 kB MemFree: 1845816 kB MemAvailable: 1851728 kB Buffers: 12532 kB Cached: 53568 kB SwapCached: 0 kB Active: 32208 kB Inactive: 52908 kB Active(anon): 444 kB Inactive(anon): 22100 kB Active(file): 31764 kB Inactive(file): 30808 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 1018648 kB SwapFree: 1018648 kB Dirty: 3392 kB Writeback: 0 kB AnonPages: 19056 kB Mapped: 16768 kB Shmem: 3388 kB KReclaimable: 10580 kB Slab: 45824 kB SReclaimable: 10580 kB SUnreclaim: 35244 kB KernelStack: 2464 kB PageTables: 1652 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 2037296 kB Committed_AS: 42432 kB VmallocTotal: 133143592960 kB VmallocUsed: 22700 kB VmallocChunk: 0 kB Percpu: 976 kB AnonHugePages: 0 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB CmaTotal: 131072 kB CmaFree: 128768 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB ### virtual memory: vm.admin_reserve_kbytes = 8192 vm.compaction_proactiveness = 20 vm.compact_unevictable_allowed = 1 vm.dirty_background_bytes = 0 vm.dirty_background_ratio = 10 vm.dirty_bytes = 0 vm.dirty_expire_centisecs = 3000 vm.dirty_ratio = 20 vm.dirtytime_expire_seconds = 43200 vm.dirty_writeback_centisecs = 500 vm.extfrag_threshold = 500 vm.hugetlb_shm_group = 0 vm.laptop_mode = 0 vm.legacy_va_layout = 0 vm.lowmem_reserve_ratio = 256 256 32 0 vm.max_map_count = 65530 vm.min_free_kbytes = 22528 vm.min_slab_ratio = 5 vm.min_unmapped_ratio = 1 vm.mmap_min_addr = 32768 vm.mmap_rnd_bits = 18 vm.mmap_rnd_compat_bits = 11 vm.nr_hugepages = 0 vm.nr_hugepages_mempolicy = 0 vm.nr_overcommit_hugepages = 0 vm.numa_stat = 1 vm.numa_zonelist_order = Node vm.oom_dump_tasks = 1 vm.oom_kill_allocating_task = 0 vm.overcommit_kbytes = 0 vm.overcommit_memory = 0 vm.overcommit_ratio = 50 vm.page-cluster = 0 vm.page_lock_unfairness = 5 vm.panic_on_oom = 0 vm.percpu_pagelist_high_fraction = 0 vm.stat_interval = 1 vm.swappiness = 100 vm.user_reserve_kbytes = 63004 vm.vfs_cache_pressure = 100 vm.watermark_boost_factor = 15000 vm.watermark_scale_factor = 10 vm.zone_reclaim_mode = 0 ### ip addr: 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 02:07:29:30:86:8c brd ff:ff:ff:ff:ff:ff 3: wlan0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 00:32:c3:9f:6a:08 brd ff:ff:ff:ff:ff:ff ### partitions: major minor #blocks name 179 0 31205376 mmcblk0 179 1 30879744 mmcblk0p1 179 32 7634944 mmcblk2 252 0 1018652 zram0 252 1 51200 zram1 ### df: tmpfs 199M 3.4M 196M 2% /run /dev/mmcblk0p1 29G 5.1G 24G 18% / tmpfs 995M 0 995M 0% /dev/shm tmpfs 5.0M 4.0K 5.0M 1% /run/lock tmpfs 995M 0 995M 0% /tmp /dev/zram1 47M 3.3M 41M 8% /var/log ### lsblk: NAME FSTYPE SIZE MOUNTPOINT UUID mmcblk0 29.8G └─mmcblk0p1 ext4 29.4G / 71b44a6c-5bb8-4352-afe7-d22b8e62de4c mmcblk2 swap 7.3G 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot0 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 mmcblk2boot1 swap 4M 6a6f4ef8-bcc6-4021-a70f-de04ada07a25 zram1 50M /var/log zram2 0B ### zramctl: NAME ALGORITHM DISKSIZE DATA COMPR TOTAL STREAMS MOUNTPOINT /dev/zram1 zstd 50M 68K 728B 44K 4 /var/log /dev/zram0 lzo-rle 994.8M 4K 74B 12K 4 [SWAP] ### mtab: /dev/mmcblk0p1 / ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/mmcblk0p1 /var/log.hdd ext4 rw,noatime,errors=remount-ro,commit=600 0 0 /dev/zram1 /var/log ext4 rw,relatime,discard 0 0 ### mmc0:0001 info: fwrev: 0x0 uevent: DRIVER=mmcblk MMC_TYPE=SD MMC_NAME=USD MODALIAS=mmc:block cid: 1d414455534400001000005ae0016181 rca: 0x0001 csd: 400e00325b590000ee137f800a40004d manfid: 0x00001d ocr: 0x00200000 preferred_erase_size: 4194304 type: SD hwrev: 0x1 date: 01/2022 dsr: 0x404 erase_size: 512 oemid: 0x4144 serial: 0x00005ae0 ssr: 000000000500000004049000080a190a000800000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000 scr: 02b5808200000000 name: USD ### mmc2:0001 info: fwrev: 0x0600000000000000 uevent: DRIVER=mmcblk MMC_TYPE=MMC MMC_NAME=8GTF4R MODALIAS=mmc:block cid: 15010038475446345206d410e21fc801 rel_sectors: 0x1 enhanced_rpmb_supported: 0x1 rca: 0x0001 pre_eol_info: 0x01 csd: d02701320f5903fff6dbffef8e40400d manfid: 0x000015 ocr: 0x00200000 preferred_erase_size: 4194304 enhanced_area_offset: 18446744073709551594 raw_rpmb_size_mult: 0x4 type: MMC hwrev: 0x0 date: 12/2021 prv: 0x6 ffu_capable: 1 dsr: 0x404 erase_size: 524288 life_time: 0x01 0x01 enhanced_area_size: 4294967274 oemid: 0x0100 serial: 0xd410e21f cmdq_en: 0 rev: 0x8 name: 8GTF4R ### Boot system health: Time CPU load %cpu %sys %usr %nice %io %irq CPU C.St. 07:44:50: 1704MHz 1.34 47% 20% 14% 0% 12% 0% 59.7°C 0/9 07:44:51: 1320MHz 1.34 11% 6% 3% 1% 0% 0% 59.7°C 0/9 07:44:51: 1080MHz 1.34 18% 11% 4% 1% 0% 0% 55.4°C 0/9 07:44:52: 1080MHz 1.34 11% 7% 2% 1% 0% 0% 54.6°C 0/9 07:44:52: 1080MHz 1.34 19% 15% 2% 0% 0% 0% 54.6°C 0/9
  17. Hey,guys.I get a TV/box which use S905L-3 CPU,but I can't install any version of armbian.It always like this(any version) bable150's builds. maybe try other .dtbs ? here is the entire logs. btw,I use tll to flash. ~~~ GXLX2:BL1:3cfee7:42a5ae;FEAT:ADFC318C:0;POC:3;RCY:0;EMMC:0;READ:0;0.0;CHK:0; TE: 78176 BL2 Built : 14:48:45, Sep 26 2018. gxl g6d68897 - yao.zhang@droid07 Board ID = 4, adc=302 set vcck to 1070 mv set vddee to 1070 mv CPU clk: 1200MHz DDR3 DDR3 chl: Rank0+1 @ 792MHz - FAIL DDR3 chl: Rank0 @ 792MHz bist_test rank: 0 2a 06 4e 3a 17 5d 24 00 49 3e 1c 61 24 01 47 3a 17 5e 28 02 4f 3a 16 5f 618 - PASS Rank0: 2048MB(auto)-2T-11 AddrBus test pass! -s Load fip header from eMMC, src: 0x0000c200, des: 0x01400000, size: 0x00004000 New fip structure! Load bl30 from eMMC, src: 0x00010200, des: 0x013c0000, size: 0x00007600 Load bl301 from eMMC, src: 0x00018200, des: 0x01380000, size: 0x00002200 Load bl31 from eMMC, src: 0x0001c200, des: 0x10100000, size: 0x00019600 Load bl33 from eMMC, src: 0x00038200, des: 0x01000000, size: 0x00047400 NOTICE: BL3-1: v1.0(debug):361f8a7 NOTICE: BL3-1: Built : 16:43:26, Dec 19 2018 NOTICE: BL31: GXL normal boot! NOTICE: BL31: BL33 decompress pass [Image: gxl_v1.1.3103-9234004 2018-12-27 10:43:23 yao.zhang@droid07] efuse init ops = c5 efuse init hdcp = c, cf9=7 x2_hp_e = 0 bl30: check_permit, count is 1 bl30: check_permit: ok! chipid: 0 0 3 c c 0 ad b3 60 a0 0 c5 not ES chip [0.561599 Inits done] INFO: BL3-1: Initializing runtime services WARNING: No OPTEE provided by BL2 boot loader ERROR: Error initializing runtime service opteed_fast INFO: BL3-1: Preparing for EL3 exit to normal world INFO: BL3-1: Next image address = 0x1000000 INFO: BL3-1: Next image spsr = 0x3c9 DRAM: MMC: In: Out: Err: wipe_data=successfulSecd wipe_cache=successful upgrade_step=2 [BL31]: tee size: 0 rebootmode=cold_boot Starting the controller () start amlogic old u-boot () [BL31]: tee size: 0 [BL31]: tee size: 0 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.9.0-arm-64 (root@vbox) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #20.10 SMP PREEMPT Wed Oct 14 12:04:42 MSK 2020 [ 0.000000] Machine model: Amlogic Meson GXL (S905X) P212 Development Board [ 0.000000] efi: UEFI not found. [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! [ 0.000000] Reserved memory: created CMA memory pool at 0x000000006b400000, size 256 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000001000000-0x000000007fffffff] [ 0.000000] NUMA: NODE_DATA [mem 0x7fbf1100-0x7fbf2fff] [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000001000000-0x000000003fffffff] [ 0.000000] DMA32 [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000001000000-0x0000000004ffffff] [ 0.000000] node 0: [mem 0x0000000007300000-0x000000000fffffff] [ 0.000000] node 0: [mem 0x0000000010200000-0x000000007fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000001000000-0x000000007fffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv0.2 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: Trusted OS migration not required [ 0.000000] percpu: Embedded 22 pages/cpu s51480 r8192 d30440 u90112 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 502592 [ 0.000000] Policy zone: DMA32 [ 0.000000] Kernel command line: root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: mapped [mem 0x3bfff000-0x3ffff000] (64MB) [ 0.000000] Memory: 1636236K/2042880K available (16188K kernel code, 1308K rwdata, 6464K rodata, 3392K init, 927K bss, 144500K reserved, 262144K cma-reserved) [ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x80/0x150 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] irq_meson_gpio: 110 to 8 gpio interrupt mux initialized [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000314] Console: colour dummy device 80x25 [ 0.000733] printk: console [tty0] enabled [ 0.000834] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000855] pid_max: default: 32768 minimum: 301 [ 0.000960] LSM: Security Framework initializing [ 0.001062] AppArmor: AppArmor initialized [ 0.001120] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.001143] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.002525] rcu: Hierarchical SRCU implementation. [ 0.003476] EFI services will not be available. [ 0.003771] smp: Bringing up secondary CPUs ... [ 0.004348] Detected VIPT I-cache on CPU1 [ 0.004406] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.004948] Detected VIPT I-cache on CPU2 [ 0.004996] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.005527] Detected VIPT I-cache on CPU3 [ 0.005572] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.005647] smp: Brought up 1 node, 4 CPUs [ 0.005710] SMP: Total of 4 processors activated. [ 0.005721] CPU features: detected: 32-bit EL0 Support [ 0.005733] CPU features: detected: CRC32 instructions [ 0.015612] CPU: All CPU(s) started at EL2 [ 0.015671] alternatives: patching kernel code [ 0.016973] devtmpfs: initialized [ 0.022355] Registered cp15_barrier emulation handler [ 0.022386] Registered setend emulation handler [ 0.022401] KASLR disabled due to lack of seed [ 0.022746] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.022780] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.029913] xor: measuring software checksum speed [ 0.068170] 8regs : 2373.000 MB/sec [ 0.108202] 32regs : 2723.000 MB/sec [ 0.148242] arm64_neon: 2310.000 MB/sec [ 0.148253] xor: using function: 32regs (2723.000 MB/sec) [ 0.148312] pinctrl core: initialized pinctrl subsystem [ 0.148865] DMI not present or invalid. [ 0.149364] NET: Registered protocol family 16 [ 0.150931] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.151000] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.151141] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.151242] audit: initializing netlink subsys (disabled) [ 0.151464] audit: type=2000 audit(0.148:1): state=initialized audit_enabled=0 res=1 [ 0.152504] thermal_sys: Registered thermal governor 'step_wise' [ 0.152751] cpuidle: using governor ladder [ 0.152790] cpuidle: using governor menu [ 0.153123] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.153216] ASID allocator initialised with 65536 entries [ 0.154030] Serial: AMBA PL011 UART driver [ 0.179058] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.179084] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.179097] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.179110] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.180967] cryptd: max_cpu_qlen set to 1000 [ 0.248474] raid6: neonx8 gen() 2146 MB/s [ 0.316517] raid6: neonx8 xor() 1608 MB/s [ 0.384577] raid6: neonx4 gen() 2192 MB/s [ 0.452625] raid6: neonx4 xor() 1590 MB/s [ 0.520677] raid6: neonx2 gen() 2096 MB/s [ 0.588734] raid6: neonx2 xor() 1479 MB/s [ 0.656785] raid6: neonx1 gen() 1826 MB/s [ 0.724839] raid6: neonx1 xor() 1249 MB/s [ 0.792894] raid6: int64x8 gen() 1491 MB/s [ 0.860964] raid6: int64x8 xor() 784 MB/s [ 0.929012] raid6: int64x4 gen() 1667 MB/s [ 0.997054] raid6: int64x4 xor() 839 MB/s [ 1.065115] raid6: int64x2 gen() 1420 MB/s [ 1.133166] raid6: int64x2 xor() 730 MB/s [ 1.201225] raid6: int64x1 gen() 1060 MB/s [ 1.269276] raid6: int64x1 xor() 559 MB/s [ 1.269286] raid6: using algorithm neonx4 gen() 2192 MB/s [ 1.269295] raid6: .... xor() 1590 MB/s, rmw enabled [ 1.269306] raid6: using neon recovery algorithm [ 1.269780] ACPI: Interpreter disabled. [ 1.270894] iommu: Default domain type: Translated [ 1.271149] vgaarb: loaded [ 1.271706] SCSI subsystem initialized [ 1.272131] usbcore: registered new interface driver usbfs [ 1.272182] usbcore: registered new interface driver hub [ 1.272247] usbcore: registered new device driver usb [ 1.272652] pps_core: LinuxPPS API ver. 1 registered [ 1.272665] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.272689] PTP clock support registered [ 1.272725] EDAC MC: Ver: 3.0.0 [ 1.273569] FPGA manager framework [ 1.273674] Advanced Linux Sound Architecture Driver Initialized. [ 1.274228] NetLabel: Initializing [ 1.274243] NetLabel: domain hash size = 128 [ 1.274252] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.274303] NetLabel: unlabeled traffic allowed by default [ 1.274823] clocksource: Switched to clocksource arch_sys_counter [ 1.275096] VFS: Disk quotas dquot_6.6.0 [ 1.275158] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.275283] FS-Cache: Loaded [ 1.275760] AppArmor: AppArmor Filesystem Enabled [ 1.276000] pnp: PnP ACPI: disabled [ 1.281115] NET: Registered protocol family 2 [ 1.281640] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 1.281690] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.281808] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 1.282018] TCP: Hash tables configured (established 16384 bind 16384) [ 1.282179] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.282235] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.282444] NET: Registered protocol family 1 [ 1.282935] RPC: Registered named UNIX socket transport module. [ 1.282956] RPC: Registered udp transport module. [ 1.282965] RPC: Registered tcp transport module. [ 1.282974] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.282991] NET: Registered protocol family 44 [ 1.283011] PCI: CLS 0 bytes, default 64 [ 1.283215] Trying to unpack rootfs image as initramfs... [ 1.701209] Freeing initrd memory: 9776K [ 1.702103] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.705606] Initialise system trusted keyrings [ 1.705807] workingset: timestamp_bits=44 max_order=19 bucket_order=0 [ 1.710462] zbud: loaded [ 1.711820] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.712099] FS-Cache: Netfs 'nfs' registered for caching [ 1.712645] NFS: Registering the id_resolver key type [ 1.712680] Key type id_resolver registered [ 1.712690] Key type id_legacy registered [ 1.712781] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.712795] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 1.713790] FS-Cache: Netfs 'cifs' registered for caching [ 1.714087] Key type cifs.spnego registered [ 1.714115] Key type cifs.idmap registered [ 1.714138] ntfs: driver 2.1.32 [Flags: R/W]. [ 1.714674] JFS: nTxBlock = 8192, nTxLock = 65536 [ 1.719140] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled [ 1.720613] ocfs2: Registered cluster interface o2cb [ 1.720818] OCFS2 User DLM kernel interface loaded [ 1.722462] gfs2: GFS2 installed [ 1.759528] NET: Registered protocol family 38 [ 1.759560] Key type asymmetric registered [ 1.759571] Asymmetric key parser 'x509' registered [ 1.759580] Asymmetric key parser 'pkcs8' registered [ 1.759648] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 1.759807] io scheduler mq-deadline registered [ 1.759821] io scheduler kyber registered [ 1.759980] io scheduler bfq registered [ 1.773764] soc soc0: Amlogic Meson Unknown (Unknown) Revision 2a:e (c5:2) Detected [ 1.777799] Serial: 8250/16550 driver, 5 ports, IRQ sharing enabled [ 1.779723] Serial: AMBA driver [ 1.780117] c11084c0.serial: ttyAML6 at MMIO 0xc11084c0 (irq = 12, base_baud = 1500000) is a meson_uart [ 1.780283] serial serial0: tty port ttyAML6 registered [ 1.780678] c81004c0.serial: ttyAML0 at MMIO 0xc81004c0 (irq = 15, base_baud = 1500000) is a meson_uart [ 2.847999] printk: console [ttyAML0] enabled [ 2.865417] brd: module loaded [ 2.873312] loop: module loaded [ 2.874139] Loading iSCSI transport class v2.0-870. [ 2.876270] iscsi: registered transport (tcp) [ 2.883855] libphy: Fixed MDIO Bus: probed [ 2.885796] VFIO - User Level meta-driver version: 0.3 [ 2.890545] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.895627] ehci-pci: EHCI PCI platform driver [ 2.900060] ehci-platform: EHCI generic platform driver [ 2.905334] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.911326] ohci-pci: OHCI PCI platform driver [ 2.915760] ohci-platform: OHCI generic platform driver [ 2.921396] usbcore: registered new interface driver usb-storage [ 2.927045] mousedev: PS/2 mouse device common for all mice [ 2.933275] i2c /dev entries driver [ 2.939691] sdhci: Secure Digital Host Controller Interface driver [ 2.941910] sdhci: Copyright(c) Pierre Ossman [ 2.946413] Synopsys Designware Multimedia Card Interface Driver [ 2.959756] meson-gx-mmc d0072000.mmc: Got CD GPIO [ 2.987363] meson-gx-mmc d0074000.mmc: allocated mmc-pwrseq [ 3.012688] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.013775] ledtrig-cpu: registered to indicate activity on CPUs [ 3.019530] meson-sm: secure-monitor enabled [ 3.023827] gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 3.031058] gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 3.039176] hid: raw HID events driver (C) Jiri Kosina [ 3.043934] usbcore: registered new interface driver usbhid [ 3.049144] usbhid: USB HID core driver [ 3.053695] platform-mhu c883c404.mailbox: Platform MHU Mailbox registered [BL31]: tee size: 0 [ 3.064543] no UART detected at 0x1 [ 3.068896] NET: Registered protocol family 17 [ 3.069570] Key type dns_resolver registered [ 3.074186] registered taskstats version 1 [ 3.077705] Loading compiled-in X.509 certificates [ 3.082527] zswap: loaded using pool lzo/zbud [ 3.087026] Key type ._fscrypt registered [ 3.090666] Key type .fscrypt registered [ 3.094561] Key type fscrypt-provisioning registered [ 3.100278] Btrfs loaded, crc32c=crc32c-generic [ 3.120818] Key type encrypted registered [ 3.120866] AppArmor: AppArmor sha1 policy hashing enabled [ 3.141103] meson-drm d0100000.vpu: Queued 3 outputs on vpu [ 3.143099] mmc1: new HS200 MMC card at address 0001 [ 3.146699] mmcblk1: mmc1:0001 Biwin 6.96 GiB [ 3.150804] mmcblk1boot0: mmc1:0001 Biwin partition 1 4.00 MiB [ 3.156636] mmcblk1boot1: mmc1:0001 Biwin partition 2 4.00 MiB [ 3.162383] mmcblk1rpmb: mmc1:0001 Biwin partition 3 4.00 MiB, chardev (241:0) [ 3.166912] meson-dw-hdmi c883a000.hdmi-tx: Unsupported HDMI controller (0d0d:0d:0d) [ 3.177338] ------------[ cut here ]------------ [ 3.181691] WARNING: CPU: 3 PID: 33 at drivers/regulator/core.c:2089 _regulator_put.part.0+0x154/0x160 [ 3.190905] Modules linked in: [ 3.193927] CPU: 3 PID: 33 Comm: kworker/3:1 Not tainted 5.9.0-arm-64 #20.10 [ 3.200910] Hardware name: Amlogic Meson GXL (S905X) P212 Development Board (DT) [ 3.208250] Workqueue: events deferred_probe_work_func [ 3.213332] pstate: 80000005 (Nzcv daif -PAN -UAO BTYPE=--) [ 3.218851] pc : _regulator_put.part.0+0x154/0x160 [ 3.223595] lr : regulator_put+0x38/0x50 [ 3.227475] sp : ffff800010143930 [ 3.230752] x29: ffff800010143930 x28: ffff800012a07000 [ 3.236013] x27: ffff80001010bcd8 x26: 00000000ffffffed [ 3.241274] x25: ffff00007f6bd000 x24: ffff00006988c000 [ 3.246535] x23: 0000000000000010 x22: ffff8000101439e8 [ 3.251796] x21: ffff00007f678e00 x20: ffff800012ad7150 [ 3.257058] x19: ffff00006a0f5900 x18: 0000000000000010 [ 3.262319] x17: 0000000000006a0c x16: 000000000000698c [ 3.267580] x15: ffff00007f679268 x14: 000000000000034f [ 3.272841] x13: 0000000000000000 x12: 0000000000000001 [ 3.278103] x11: 0000000000000000 x10: 00000000000009c0 [ 3.283364] x9 : ffff800010143760 x8 : 0000000000000000 [ 3.288625] x7 : ffff00007f678e00 x6 : 0000000000000000 [ 3.293886] x5 : 0000000000000001 x4 : 0000000000000000 [ 3.299148] x3 : ffff800012ad7520 x2 : ffff00007f678e00 [ 3.304409] x1 : 0000000000000000 x0 : 0000000000000001 [ 3.309671] Call trace: [ 3.312089] _regulator_put.part.0+0x154/0x160 [ 3.316486] regulator_put+0x38/0x50 [ 3.320024] devm_regulator_release+0x14/0x20 [ 3.324337] release_nodes+0x1b0/0x228 [ 3.328044] devres_release_group+0x90/0xe8 [ 3.332184] component_bind_all+0x114/0x260 [ 3.336325] meson_drv_bind_master+0x364/0x488 [ 3.340722] meson_drv_bind+0x14/0x28 [ 3.344345] try_to_bring_up_master+0x168/0x1d0 [ 3.348830] component_master_add_with_match+0xb4/0x100 [ 3.354005] meson_drv_probe+0xd4/0x128 [ 3.357800] platform_drv_probe+0x54/0xa8 [ 3.361767] really_probe+0xe4/0x3b0 [ 3.365303] driver_probe_device+0x58/0xb8 [ 3.369357] __device_attach_driver+0x84/0xc8 [ 3.373671] bus_for_each_drv+0x78/0xc8 [ 3.377464] __device_attach+0xf0/0x150 [ 3.381260] device_initial_probe+0x14/0x20 [ 3.385401] bus_probe_device+0x9c/0xa8 [ 3.389196] deferred_probe_work_func+0x74/0xb0 [ 3.393683] process_one_work+0x1a0/0x328 [ 3.397647] worker_thread+0x1f8/0x420 [ 3.401357] kthread+0x140/0x160 [ 3.404549] ret_from_fork+0x10/0x34 [ 3.408083] ---[ end trace 275a17427592d210 ]--- [ 3.412829] meson-drm d0100000.vpu: failed to bind c883a000.hdmi-tx (ops meson_dw_hdmi_ops): -19 [ 3.421387] meson-drm d0100000.vpu: Couldn't bind all components [ 3.427630] meson-drm d0100000.vpu: master bind failed: -19 [ 3.434800] meson8b-dwmac c9410000.ethernet: IRQ eth_wake_irq not found [ 3.439438] meson8b-dwmac c9410000.ethernet: IRQ eth_lpi not found [ 3.445623] meson8b-dwmac c9410000.ethernet: PTP uses main clock [ 3.451479] meson8b-dwmac c9410000.ethernet: no reset control found [ 3.458414] meson8b-dwmac c9410000.ethernet: User ID: 0x11, Synopsys ID: 0x37 [ 3.464839] meson8b-dwmac c9410000.ethernet: DWMAC1000 [ 3.469933] meson8b-dwmac c9410000.ethernet: DMA HW capability register supported [ 3.477349] meson8b-dwmac c9410000.ethernet: RX Checksum Offload Engine supported [ 3.484765] meson8b-dwmac c9410000.ethernet: COE Type 2 [ 3.489940] meson8b-dwmac c9410000.ethernet: TX Checksum insertion supported [ 3.496926] meson8b-dwmac c9410000.ethernet: Wake-Up On Lan supported [ 3.503383] meson8b-dwmac c9410000.ethernet: Normal descriptors [ 3.509175] meson8b-dwmac c9410000.ethernet: Ring mode enabled [ 3.514953] meson8b-dwmac c9410000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 3.523280] libphy: stmmac: probed [ 3.527623] dwc3-meson-g12a d0078080.usb: USB2 ports: 2 [ 3.531461] dwc3-meson-g12a d0078080.usb: USB3 ports: 0 [ 4.067920] dwc2 c9100000.usb: supply vusb_d not found, using dummy regulator [ 4.069547] dwc2 c9100000.usb: supply vusb_a not found, using dummy regulator [ 4.076768] dwc2 c9100000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM [ 4.085114] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 4.088976] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 4.096659] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228f664 hci version 0x100 quirks 0x0000000002010010 [ 4.105876] xhci-hcd xhci-hcd.0.auto: irq 42, io mem 0xc9000000 [ 4.111985] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.09 [ 4.119892] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.127046] usb usb1: Product: xHCI Host Controller [ 4.131875] usb usb1: Manufacturer: Linux 5.9.0-arm-64 xhci-hcd [ 4.137739] usb usb1: SerialNumber: xhci-hcd.0.auto [ 4.143093] hub 1-0:1.0: USB hub found [ 4.146296] hub 1-0:1.0: 2 ports detected [ 4.150556] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 4.155709] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 [ 4.163282] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed [ 4.169788] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 4.177848] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.09 [ 4.185956] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.193115] usb usb2: Product: xHCI Host Controller [ 4.197942] usb usb2: Manufacturer: Linux 5.9.0-arm-64 xhci-hcd [ 4.203807] usb usb2: SerialNumber: xhci-hcd.0.auto [ 4.209092] hub 2-0:1.0: USB hub found [ 4.212378] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19) [ 4.222038] meson-gx-mmc d0070000.mmc: allocated mmc-pwrseq [ 4.253124] scpi_protocol scpi: SCP Protocol legacy pre-1.0 firmware get_dvfs_info 0007 [ 4.273320] mmc2: new high speed SDIO card at address 8800 [ 4.274132] libphy: mdio_mux: probed [ 4.284942] libphy: mdio_mux: probed [ 4.287107] printk: console [netcon0] enabled [ 4.287211] netconsole: network logging started [ 4.293121] ALSA device list: [ 4.294632] No soundcards found. [ 4.299351] Freeing unused kernel memory: 3392K [ 4.315045] Run /init as init process [ 4.482900] usb 1-2: new high-speed USB device number 2 using xhci-hcd [ 4.635945] usb 1-2: New USB device found, idVendor=14cd, idProduct=2536, bcdDevice= 3.00 [ 4.638490] usb 1-2: New USB device strings: Mfr=1, Product=3, SerialNumber=2 [ 4.645616] usb 1-2: Product: Mass Storage Device [ 4.650283] usb 1-2: Manufacturer: Generic USB Device [ 4.655675] usb 1-2: SerialNumber: 2536201609180000 [ 4.661592] usb-storage 1-2:1.0: USB Mass Storage device detected [ 4.667246] scsi host0: usb-storage 1-2:1.0 [ 4.675006] usbcore: registered new interface driver uas [ 4.779916] random: fast init done [ 5.702412] scsi 0:0:0:0: Direct-Access Mass Storage Device 1.00 PQ: 0 ANSI: 0 CCS [ 5.710995] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 5.711340] sd 0:0:0:0: [sda] 15376384 512-byte logical blocks: (7.87 GB/7.33 GiB) [ 5.718487] sd 0:0:0:0: [sda] Write Protect is off [ 5.723142] sd 0:0:0:0: [sda] No Caching mode page found [ 5.728205] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 5.770207] sda: sda1 sda2 [ 5.772393] sd 0:0:0:0: [sda] Attached SCSI removable disk [ 6.452397] EXT4-fs (sda2): mounted filesystem with writeback data mode. Opts: data=writeback [ 7.369066] systemd[1]: System time before build time, advancing clock. [ 7.471859] NET: Registered protocol family 10 [ 7.503486] Segment Routing with IPv6 [ 7.545592] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ 7.561824] systemd[1]: Detected architecture arm64. [ 7.601490] systemd[1]: Set hostname to <arm-64>. [ 8.079100] systemd[1]: /etc/systemd/system/serial-getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ 8.091397] systemd[1]: /etc/systemd/system/serial-getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ 8.104543] systemd[1]: /etc/systemd/system/getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ 8.193816] random: systemd: uninitialized urandom read (16 bytes read) [ 8.203411] random: systemd: uninitialized urandom read (16 bytes read) [ 8.205220] systemd[1]: Listening on Journal Socket. [ 8.210065] random: systemd: uninitialized urandom read (16 bytes read) [ 8.216505] systemd[1]: Listening on Journal Socket (/dev/log). [ 8.228061] systemd[1]: Mounting POSIX Message Queue File System... [ 8.230480] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 8.334724] EXT4-fs (sda2): re-mounted. Opts: commit=600,errors=remount-ro [ 10.629599] SError Interrupt on CPU2, code 0xbf000002 -- SError [ 10.629603] CPU: 2 PID: 357 Comm: systemd-udevd Tainted: G W 5.9.0-arm-64 #20.10 [ 10.629605] Hardware name: Amlogic Meson GXL (S905X) P212 Development Board (DT) [ 10.629607] pstate: 00000005 (nzcv daif -PAN -UAO BTYPE=--) [ 10.629608] pc : el1_sync_handler+0xf8/0x130 [ 10.629610] lr : el1_sync+0x7c/0x100 [ 10.629611] sp : ffff8000103a3750 [ 10.629613] x29: ffff8000103a3750 x28: ffff00007cc17000 [ 10.629616] x27: 0000000000000100 x26: 0000000000000000 [ 10.629620] x25: 0000000000000001 x24: ffff80000a215270 [ 10.629623] x23: 0000000080000005 x22: ffff80000a20af08 [ 10.629626] x21: ffff8000103a38a0 x20: 0000ffffffffffff [ 10.629629] x19: ffff00006b1d8148 x18: 0000000000000001 [ 10.629632] x17: 0000000000000000 x16: 0000000000000000 [ 10.629636] x15: ffff00007cc17468 x14: ffffffffffffffff [ 10.629639] x13: 0000000000000020 x12: 0101010101010101 [ 10.629642] x11: 0000000000000040 x10: ffff800012a37ef8 [ 10.629645] x9 : ffff800012a37ef0 x8 : ffff00007f0026f0 [ 10.629649] x7 : 0000000000000000 x6 : 0000000000000000 [ 10.629652] x5 : ffff00007f0026c8 x4 : ffff800010c46000 [ 10.629655] x3 : 0000000096000210 x2 : 0000002200000000 [ 10.629658] x1 : 0000000000000000 x0 : ffff8000103a3760 [ 10.629662] Kernel panic - not syncing: Asynchronous SError Interrupt [ 10.629665] CPU: 2 PID: 357 Comm: systemd-udevd Tainted: G W 5.9.0-arm-64 #20.10 [ 10.629667] Hardware name: Amlogic Meson GXL (S905X) P212 Development Board (DT) [ 10.629668] Call trace: [ 10.629669] dump_backtrace+0x0/0x1a0 [ 10.629671] show_stack+0x18/0x28 [ 10.629672] dump_stack+0xc0/0x11c [ 10.629673] panic+0x15c/0x31c [ 10.629674] nmi_panic+0x8c/0x90 [ 10.629676] arm64_serror_panic+0x78/0x84 [ 10.629677] do_serror+0x78/0x180 [ 10.629678] el1_error+0x8c/0x108 [ 10.629680] el1_sync_handler+0xf8/0x130 [ 10.629681] el1_sync+0x7c/0x100 [ 10.629682] lima_mmu_init+0x40/0x118 [lima] [ 10.629684] lima_device_init+0x1b8/0x5f0 [lima] [ 10.629685] lima_pdev_probe+0xa0/0x190 [lima] [ 10.629686] platform_drv_probe+0x54/0xa8 [ 10.629688] really_probe+0xe4/0x3b0 [ 10.629689] driver_probe_device+0x58/0xb8 [ 10.629690] device_driver_attach+0x74/0x80 [ 10.629692] __driver_attach+0x58/0xe0 [ 10.629693] bus_for_each_dev+0x70/0xc0 [ 10.629694] driver_attach+0x24/0x30 [ 10.629695] bus_add_driver+0x14c/0x1f0 [ 10.629697] driver_register+0x64/0x120 [ 10.629698] __platform_driver_register+0x48/0x58 [ 10.629700] lima_platform_driver_init+0x24/0x1000 [lima] [ 10.629701] do_one_initcall+0x54/0x1bc [ 10.629702] do_init_module+0x54/0x200 [ 10.629704] load_module+0x1de8/0x23f0 [ 10.629705] __do_sys_finit_module+0xd8/0xf0 [ 10.629707] __arm64_sys_finit_module+0x20/0x30 [ 10.629708] el0_svc_common.constprop.0+0x74/0x1f0 [ 10.629709] do_el0_svc+0x24/0x90 [ 10.629711] el0_sync_handler+0x180/0x2f8 [ 10.629712] el0_sync+0x158/0x180 [ 10.629733] SMP: stopping secondary CPUs [ 10.629735] Kernel Offset: disabled [ 10.629736] CPU features: 0x0040002,20002004 [ 10.629737] Memory Limit: none ~~~ thanks for your reply!
  18. hi, I am VERY happy with how 4.9 is running odroid-xu4. as i use it as media server and player wanted to see if i could get latencies (poitential) down by applying latest RT patches that are in line with current xu4-next kernel sources. added pathes to userpatches/kernel/odoirdxu4-next directory, build process went fine, have selected FULL-RT but it does not boot (final image) source: https://github.com/hardkernel/linux/tre ... dxu4-4.9.y rt-patches: https://www.kernel.org/pub/linux/kernel ... ts/rt/4.9/ it compiles ok but it does not boot ... has anyone looked at what the issue might be ? i don't have serial debuigger yet, have ordered but need someone else with more brains to help out in the process ? Thank you !!!
  19. Sorry for the delay - the forum only allows me 1 message per day. As in my first post I already uploaded the output of armbianmonitor -u. It should be at http://ix.io/3XvQ. The Log from the serial output is: Armbian 22.02.1 Focal ttyAML0 lafrite login: [60572.011954] watchdog: watchdog0: watchdog did not stop! [60572.943175] reboot: Restarting system bl31 reboot reason: 0xd bl31 reboot reason: 0x0 system cmd 1. GXL:BL1:9ac50e:bb16dc;FEAT:ADFC318C:0;POC:1;RCY:0;SPI:0;0.0;CHK:0; TE: 35068 BL2 Built : 15:21:18, Aug 28 2019. gxl g1bf2b53 - luan.yuan@droid15-sz set vcck to 1120 mv set vddee to 1000 mv Board ID = 11 CPU clk: 1200MHz DDR enable rdbi DDR use ext vref DDR ZQ power down DQS-corr enabled DDR scramble enabled DDR4 chl: Rank0 16bit @ 1200MHz bist_test rank: 0 16 00 2c 2d 1d 3e 17 00 2f 29 18 3b 20 20 20 20 20 20 1e 1e 1 Rank0: 512MB(auto)-2T-18 AddrBus test pass! Set ddr ssc: ppm1000- Load fip header from SPI, src: 0x0000c000, des: 0x01400000, size: 0x00004000, p0 New fip structure! Load bl30 from SPI, src: 0x00010000, des: 0x013c0000, size: 0x0000d600, part: 0 Load bl31 from SPI, src: 0x00020000, des: 0x05100000, size: 0x0002b400, part: 0 Load bl33 from SPI, src: 0x0004c000, des: 0x01000000, size: 0x00086600, part: 0 NOTICE: BL3-1: v1.0(release):53f813e NOTICE: BL3-1: Built : 15:51:23, May 22 2019 [BL31]: GXL CPU setup! NOTICE: BL3-1: GXL normal boot! NOTICE: BL3-1: BL33 decompress pass mpu_config_enable:system pre init ok dmc sec lock [Image: gxl_v1.1.3390-6ac5299 2019-09-26 14:09:24 luan.yuan@droid15-sz] OPS=0x34 21 0d 34 00 a0 46 1f 53 5b 00 fa 16 21 da e4 02 [0.754087 Inits done] secure task start! high task start! low task start! ERROR: Error initializing runtime service opteed_fast U-Boot 2021.07+ (Jul 27 2021 - 19:48:21 +0000) Libre Computer AML-S805X-AC DRAM: 512 MiB MMC: mmc@74000: 0 Loading Environment from SPIFlash... SF: Detected gd25lq128 with page size 256 B *** Warning - bad CRC, using default environment Error (-1): cannot determine file size In: serial Out: serial Err: serial [BL31]: tee size: 0 [BL31]: tee size: 0 Net: eth0: ethernet@c9410000 starting USB... Bus usb@c9000000: dwc3_meson_gxl_get_phys: usb2 ports: 2 Register 2000140 NbrPorts 2 Starting the controller USB XHCI 1.00 scanning bus usb@c9000000 for devices... 2 USB Device(s) found scanning usb for storage devices... 0 Storage Device(s) found Hit any key to stop autoboot: 0 switch to partitions #0, OK mmc0(part 0) is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 7906 bytes read in 1 ms (7.5 MiB/s) ## Executing script at 08000000 U-boot default fdtfile: amlogic/meson-gxl-s805x-libretech-ac.dtb Current variant: 229 bytes read in 1 ms (223.6 KiB/s) Current fdtfile after armbianEnv: amlogic/meson-gxl-s805x-libretech-ac.dtb Mainline bootargs: root=UUID=359f2c35-224f-443c-a8ed-1c5a06dc15cb rootwait root1 15597239 bytes read in 334 ms (44.5 MiB/s) 26329600 bytes read in 563 ms (44.6 MiB/s) 38956 bytes read in 2 ms (18.6 MiB/s) 343 bytes read in 1 ms (335 KiB/s) Applying kernel provided DT overlay meson-i2cA.dtbo 343 bytes read in 1 ms (335 KiB/s) Applying kernel provided DT overlay meson-i2cB.dtbo 232 bytes read in 1 ms (226.6 KiB/s) Applying kernel provided DT fixup script (meson-fixup.scr) ## Executing script at 19000000 ## Loading init Ramdisk from Legacy Image at 13000000 ... Image Name: uInitrd Created: 2022-05-09 18:44:09 UTC Image Type: AArch64 Linux RAMDisk Image (gzip compressed) Data Size: 15597175 Bytes = 14.9 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 04080000 Booting using the fdt blob at 0x4080000 Loading Ramdisk to 19120000, end 19fffe77 ... OK Loading Device Tree to 000000001be7a000, end 000000001beebfff ... OK Starting kernel ... [BL31]: tee size: 0 domain-0 init dvfs: 4 Armbian 22.02.1 Focal ttyAML0 lafrite login: the output of dmesg is: [ 0.000000] kernel: Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] kernel: Linux version 5.10.102-meson64 (root@f0fb19109450) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 2.32.0.20190321) #22.02.1 SMP PREEMPT Sun Feb 27 09:09:25 UTC 2022 [ 0.000000] kernel: Machine model: Libre Computer AML-S805X-AC [ 0.000000] kernel: efi: UEFI not found. [ 0.000000] kernel: OF: reserved mem: failed to allocate memory for node 'linux,cma' [ 0.000000] kernel: NUMA: No NUMA configuration found [ 0.000000] kernel: NUMA: Faking a node at [mem 0x0000000000000000-0x000000001faeffff] [ 0.000000] kernel: NUMA: NODE_DATA [mem 0x1f9de100-0x1f9dffff] [ 0.000000] kernel: Zone ranges: [ 0.000000] kernel: DMA [mem 0x0000000000000000-0x000000001faeffff] [ 0.000000] kernel: DMA32 empty [ 0.000000] kernel: Normal empty [ 0.000000] kernel: Movable zone start for each node [ 0.000000] kernel: Early memory node ranges [ 0.000000] kernel: node 0: [mem 0x0000000000000000-0x0000000000ffffff] [ 0.000000] kernel: node 0: [mem 0x0000000001000000-0x0000000004ffffff] [ 0.000000] kernel: node 0: [mem 0x0000000005000000-0x00000000072fffff] [ 0.000000] kernel: node 0: [mem 0x0000000007300000-0x000000000fffffff] [ 0.000000] kernel: node 0: [mem 0x0000000010000000-0x00000000101fffff] [ 0.000000] kernel: node 0: [mem 0x0000000010200000-0x000000001faeffff] [ 0.000000] kernel: Initmem setup node 0 [mem 0x0000000000000000-0x000000001faeffff] [ 0.000000] kernel: On node 0 totalpages: 129776 [ 0.000000] kernel: DMA zone: 2028 pages used for memmap [ 0.000000] kernel: DMA zone: 0 pages reserved [ 0.000000] kernel: DMA zone: 129776 pages, LIFO batch:31 [ 0.000000] kernel: On node 0, zone DMA: 272 pages in unavailable ranges [ 0.000000] kernel: cma: Reserved 128 MiB at 0x0000000011000000 [ 0.000000] kernel: psci: probing for conduit method from DT. [ 0.000000] kernel: psci: PSCIv0.2 detected in firmware. [ 0.000000] kernel: psci: Using standard PSCI v0.2 function IDs [ 0.000000] kernel: psci: Trusted OS migration not required [ 0.000000] kernel: percpu: Embedded 23 pages/cpu s57240 r8192 d28776 u94208 [ 0.000000] kernel: pcpu-alloc: s57240 r8192 d28776 u94208 alloc=23*4096 [ 0.000000] kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] kernel: Detected VIPT I-cache on CPU0 [ 0.000000] kernel: CPU features: detected: ARM erratum 845719 [ 0.000000] kernel: Built 1 zonelists, mobility grouping on. Total pages: 127748 [ 0.000000] kernel: Policy zone: DMA [ 0.000000] kernel: Kernel command line: root=UUID=359f2c35-224f-443c-a8ed-1c5a06dc15cb rootwait rootfstype=ext4 console=ttyAML0,115200 console=tty1 consoleblank=0 coherent_pool=2M loglevel=1 ubootpart=d4b703ff-01 libata.force=noncq usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u cgroup_enable=memory swapaccount=1 [ 0.000000] kernel: Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] kernel: Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.000000] kernel: mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] kernel: Memory: 273488K/519104K available (14656K kernel code, 1776K rwdata, 5784K rodata, 3392K init, 589K bss, 114544K reserved, 131072K cma-reserved) [ 0.000000] kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] kernel: rcu: Preemptible hierarchical RCU implementation. [ 0.000000] kernel: rcu: RCU event tracing is enabled. [ 0.000000] kernel: rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4. [ 0.000000] kernel: Trampoline variant of Tasks RCU enabled. [ 0.000000] kernel: Rude variant of Tasks RCU enabled. [ 0.000000] kernel: Tracing variant of Tasks RCU enabled. [ 0.000000] kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] kernel: NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] kernel: GIC: Using split EOI/Deactivate mode [ 0.000000] kernel: irq_meson_gpio: 110 to 8 gpio interrupt mux initialized [ 0.000000] kernel: random: get_random_bytes called from start_kernel+0x368/0x528 with crng_init=0 [ 0.000000] kernel: arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] kernel: clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000004] kernel: sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000368] kernel: Console: colour dummy device 80x25 [ 0.000404] kernel: printk: console [tty1] enabled [ 0.000479] kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000491] kernel: pid_max: default: 32768 minimum: 301 [ 0.000571] kernel: LSM: Security Framework initializing [ 0.000596] kernel: Yama: becoming mindful. [ 0.000690] kernel: AppArmor: AppArmor initialized [ 0.000730] kernel: Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.000738] kernel: Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.002403] kernel: rcu: Hierarchical SRCU implementation. [ 0.003846] kernel: EFI services will not be available. [ 0.004322] kernel: smp: Bringing up secondary CPUs ... [ 0.004854] kernel: Detected VIPT I-cache on CPU1 [ 0.004922] kernel: CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.005534] kernel: Detected VIPT I-cache on CPU2 [ 0.005586] kernel: CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.006195] kernel: Detected VIPT I-cache on CPU3 [ 0.006245] kernel: CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.006332] kernel: smp: Brought up 1 node, 4 CPUs [ 0.006342] kernel: SMP: Total of 4 processors activated. [ 0.006349] kernel: CPU features: detected: 32-bit EL0 Support [ 0.006354] kernel: CPU features: detected: CRC32 instructions [ 0.006358] kernel: CPU features: detected: 32-bit EL1 Support [ 0.014444] kernel: CPU: All CPU(s) started at EL2 [ 0.014491] kernel: alternatives: patching kernel code [ 0.015602] kernel: devtmpfs: initialized [ 0.022382] kernel: Registered cp15_barrier emulation handler [ 0.022398] kernel: Registered setend emulation handler [ 0.022644] kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.022682] kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.026633] kernel: pinctrl core: initialized pinctrl subsystem [ 0.027606] kernel: DMI not present or invalid. [ 0.028293] kernel: NET: Registered protocol family 16 [ 0.029940] kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations [ 0.030325] kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.030997] kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.031092] kernel: audit: initializing netlink subsys (disabled) [ 0.031359] kernel: audit: type=2000 audit(0.028:1): state=initialized audit_enabled=0 res=1 [ 0.033910] kernel: thermal_sys: Registered thermal governor 'fair_share' [ 0.033920] kernel: thermal_sys: Registered thermal governor 'bang_bang' [ 0.033925] kernel: thermal_sys: Registered thermal governor 'step_wise' [ 0.033929] kernel: thermal_sys: Registered thermal governor 'user_space' [ 0.034263] kernel: cpuidle: using governor menu [ 0.034678] kernel: hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.034783] kernel: ASID allocator initialised with 65536 entries [ 0.035643] kernel: Serial: AMBA PL011 UART driver [ 0.081772] kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.081787] kernel: HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.081792] kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.081797] kernel: HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.084444] kernel: cryptd: max_cpu_qlen set to 1000 [ 0.156752] kernel: raid6: neonx8 gen() 2154 MB/s [ 0.224786] kernel: raid6: neonx8 xor() 1605 MB/s [ 0.292900] kernel: raid6: neonx4 gen() 2203 MB/s [ 0.360910] kernel: raid6: neonx4 xor() 1589 MB/s [ 0.428963] kernel: raid6: neonx2 gen() 2096 MB/s [ 0.497010] kernel: raid6: neonx2 xor() 1460 MB/s [ 0.565068] kernel: raid6: neonx1 gen() 1827 MB/s [ 0.633118] kernel: raid6: neonx1 xor() 1245 MB/s [ 0.701179] kernel: raid6: int64x8 gen() 1491 MB/s [ 0.769233] kernel: raid6: int64x8 xor() 784 MB/s [ 0.837294] kernel: raid6: int64x4 gen() 1663 MB/s [ 0.905333] kernel: raid6: int64x4 xor() 848 MB/s [ 0.973385] kernel: raid6: int64x2 gen() 1418 MB/s [ 1.041432] kernel: raid6: int64x2 xor() 750 MB/s [ 1.109502] kernel: raid6: int64x1 gen() 1053 MB/s [ 1.177541] kernel: raid6: int64x1 xor() 548 MB/s [ 1.177545] kernel: raid6: using algorithm neonx4 gen() 2203 MB/s [ 1.177548] kernel: raid6: .... xor() 1589 MB/s, rmw enabled [ 1.177553] kernel: raid6: using neon recovery algorithm [ 1.178470] kernel: ACPI: Interpreter disabled. [ 1.179349] kernel: VCCK: supplied by DC_5V [ 1.180077] kernel: VCC_3V3: supplied by DC_5V [ 1.180657] kernel: VDDIO_AO18: supplied by VCC_3V3 [ 1.181190] kernel: VDDIO_BOOT: supplied by VCC_3V3 [ 1.182270] kernel: iommu: Default domain type: Translated [ 1.182541] kernel: vgaarb: loaded [ 1.184590] kernel: SCSI subsystem initialized [ 1.185283] kernel: usbcore: registered new interface driver usbfs [ 1.185358] kernel: usbcore: registered new interface driver hub [ 1.185570] kernel: usbcore: registered new device driver usb [ 1.186141] kernel: pps_core: LinuxPPS API ver. 1 registered [ 1.186157] kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.186190] kernel: PTP clock support registered [ 1.186603] kernel: EDAC MC: Ver: 3.0.0 [ 1.189242] kernel: NetLabel: Initializing [ 1.189257] kernel: NetLabel: domain hash size = 128 [ 1.189260] kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.189326] kernel: NetLabel: unlabeled traffic allowed by default [ 1.189879] kernel: clocksource: Switched to clocksource arch_sys_counter [ 1.190251] kernel: VFS: Disk quotas dquot_6.6.0 [ 1.190310] kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.190889] kernel: AppArmor: AppArmor Filesystem Enabled [ 1.190985] kernel: pnp: PnP ACPI: disabled [ 1.203880] kernel: NET: Registered protocol family 2 [ 1.204010] kernel: IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 1.204714] kernel: tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 1.204793] kernel: TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 1.204846] kernel: TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 1.204900] kernel: TCP: Hash tables configured (established 4096 bind 4096) [ 1.205068] kernel: MPTCP token hash table entries: 512 (order: 1, 12288 bytes, linear) [ 1.205115] kernel: UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 1.205139] kernel: UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 1.205280] kernel: NET: Registered protocol family 1 [ 1.205306] kernel: PCI: CLS 0 bytes, default 64 [ 1.205513] kernel: Trying to unpack rootfs image as initramfs... [ 1.891980] kernel: Freeing initrd memory: 15228K [ 1.893089] kernel: hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.893542] kernel: kvm [1]: IPA Size Limit: 40 bits [ 1.894684] kernel: kvm [1]: vgic interrupt IRQ9 [ 1.894822] kernel: kvm [1]: Hyp mode initialized successfully [ 1.901058] kernel: Initialise system trusted keyrings [ 1.901119] kernel: Key type blacklist registered [ 1.901320] kernel: workingset: timestamp_bits=44 max_order=17 bucket_order=0 [ 1.906701] kernel: zbud: loaded [ 1.908101] kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.908847] kernel: fuse: init (API version 7.32) [ 1.910271] kernel: integrity: Platform Keyring initialized [ 1.945857] kernel: xor: measuring software checksum speed [ 1.949928] kernel: 8regs : 2441 MB/sec [ 1.953441] kernel: 32regs : 2804 MB/sec [ 1.957464] kernel: arm64_neon : 2451 MB/sec [ 1.957468] kernel: xor: using function: 32regs (2804 MB/sec) [ 1.957479] kernel: Key type asymmetric registered [ 1.957484] kernel: Asymmetric key parser 'x509' registered [ 1.957558] kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) [ 1.957707] kernel: io scheduler mq-deadline registered [ 1.957715] kernel: io scheduler kyber registered [ 1.957917] kernel: io scheduler bfq registered [ 1.966645] kernel: EINJ: ACPI disabled. [ 1.975935] kernel: soc soc0: Amlogic Meson GXL (S805X) Revision 21:d (34:2) Detected [ 1.978999] kernel: Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled [ 1.984148] kernel: Serial: AMBA driver [ 1.984581] kernel: c81004c0.serial: ttyAML0 at MMIO 0xc81004c0 (irq = 24, base_baud = 1500000) is a meson_uart [ 1.984713] kernel: printk: console [ttyAML0] enabled [ 2.177924] kernel: loop: module loaded [ 2.183067] kernel: spi-nor spi0.0: gd25lq128d (16384 Kbytes) [ 2.233563] kernel: tun: Universal TUN/TAP device driver, 1.6 [ 2.234723] kernel: thunder_xcv, ver 1.0 [ 2.234787] kernel: thunder_bgx, ver 1.0 [ 2.234842] kernel: nicpf, ver 1.0 [ 2.235717] kernel: e1000e: Intel(R) PRO/1000 Network Driver [ 2.235730] kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 2.235829] kernel: igb: Intel(R) Gigabit Ethernet Network Driver [ 2.235835] kernel: igb: Copyright (c) 2007-2014 Intel Corporation. [ 2.235925] kernel: igbvf: Intel(R) Gigabit Virtual Function Network Driver [ 2.235934] kernel: igbvf: Copyright (c) 2009 - 2012 Intel Corporation. [ 2.236260] kernel: sky2: driver version 1.30 [ 2.237008] kernel: VFIO - User Level meta-driver version: 0.3 [ 2.239512] kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.239559] kernel: ehci-pci: EHCI PCI platform driver [ 2.239647] kernel: ehci-platform: EHCI generic platform driver [ 2.239917] kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.239952] kernel: ohci-pci: OHCI PCI platform driver [ 2.240033] kernel: ohci-platform: OHCI generic platform driver [ 2.240721] kernel: usbcore: registered new interface driver usb-storage [ 2.243175] kernel: mousedev: PS/2 mouse device common for all mice [ 2.244353] kernel: i2c /dev entries driver [ 2.250071] kernel: sdhci: Secure Digital Host Controller Interface driver [ 2.250084] kernel: sdhci: Copyright(c) Pierre Ossman [ 2.250568] kernel: Synopsys Designware Multimedia Card Interface Driver [ 2.251870] kernel: sdhci-pltfm: SDHCI platform and OF driver helper [ 2.252399] kernel: meson-gx-mmc d0074000.mmc: allocated mmc-pwrseq [ 2.253318] kernel: ledtrig-cpu: registered to indicate activity on CPUs [ 2.254269] kernel: meson-sm: secure-monitor enabled [ 2.255420] kernel: gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 2.255589] kernel: gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 2.256306] kernel: hid: raw HID events driver (C) Jiri Kosina [ 2.256547] kernel: usbcore: registered new interface driver usbhid [ 2.256557] kernel: usbhid: USB HID core driver [ 2.256919] kernel: platform-mhu c883c404.mailbox: Platform MHU Mailbox registered [ 2.258808] kernel: NET: Registered protocol family 10 [ 2.260529] kernel: Segment Routing with IPv6 [ 2.260627] kernel: NET: Registered protocol family 17 [ 2.260838] kernel: 8021q: 802.1Q VLAN Support v1.8 [ 2.260908] kernel: Key type dns_resolver registered [ 2.261555] kernel: registered taskstats version 1 [ 2.261573] kernel: Loading compiled-in X.509 certificates [ 2.265225] kernel: Loaded X.509 cert 'Build time autogenerated kernel key: f66ed724d46fb09e435e4deb8ef9f47805d13bd2' [ 2.267892] kernel: zswap: loaded using pool zstd/z3fold [ 2.268279] kernel: Key type ._fscrypt registered [ 2.268287] kernel: Key type .fscrypt registered [ 2.268290] kernel: Key type fscrypt-provisioning registered [ 2.270857] kernel: Btrfs loaded, crc32c=crc32c-generic [ 2.284106] kernel: Key type encrypted registered [ 2.284132] kernel: AppArmor: AppArmor sha1 policy hashing enabled [ 2.300916] kernel: meson-drm d0100000.vpu: Queued 2 outputs on vpu [ 2.301553] kernel: meson-drm d0100000.vpu: CVBS Output connector not available [ 2.329949] kernel: meson-dw-hdmi c883a000.hdmi-tx: Detected HDMI TX controller v2.01a with HDCP (meson_dw_hdmi_phy) [ 2.330588] kernel: meson-dw-hdmi c883a000.hdmi-tx: registered DesignWare HDMI I2C bus driver [ 2.331228] kernel: meson-drm d0100000.vpu: bound c883a000.hdmi-tx (ops meson_dw_hdmi_ops) [ 2.331764] kernel: [drm] Initialized meson 1.0.0 20161109 for d0100000.vpu on minor 0 [ 2.396647] kernel: mmc0: new HS200 MMC card at address 0001 [ 2.397704] kernel: mmcblk0: mmc0:0001 H8G4a2 7.28 GiB [ 2.398314] kernel: mmcblk0boot0: mmc0:0001 H8G4a2 partition 1 4.00 MiB [ 2.398859] kernel: mmcblk0boot1: mmc0:0001 H8G4a2 partition 2 4.00 MiB [ 2.399115] kernel: mmcblk0rpmb: mmc0:0001 H8G4a2 partition 3 4.00 MiB, chardev (241:0) [ 2.401090] kernel: mmcblk0: p1 [ 2.558623] kernel: Console: switching to colour frame buffer device 160x64 [ 2.590930] kernel: meson-drm d0100000.vpu: [drm] fb0: mesondrmfb frame buffer device [ 2.592870] kernel: dwc3-meson-g12a d0078080.usb: USB2 ports: 2 [ 2.592882] kernel: dwc3-meson-g12a d0078080.usb: USB3 ports: 0 [ 3.102932] kernel: dwc2 c9100000.usb: supply vusb_d not found, using dummy regulator [ 3.103130] kernel: dwc2 c9100000.usb: supply vusb_a not found, using dummy regulator [ 3.103391] kernel: dwc2 c9100000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM [ 3.105924] kernel: xhci-hcd xhci-hcd.2.auto: xHCI Host Controller [ 3.105964] kernel: xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1 [ 3.106140] kernel: xhci-hcd xhci-hcd.2.auto: hcc params 0x0228f664 hci version 0x100 quirks 0x0000000002010010 [ 3.106205] kernel: xhci-hcd xhci-hcd.2.auto: irq 49, io mem 0xc9000000 [ 3.106496] kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 3.106503] kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.106509] kernel: usb usb1: Product: xHCI Host Controller [ 3.106514] kernel: usb usb1: Manufacturer: Linux 5.10.102-meson64 xhci-hcd [ 3.106519] kernel: usb usb1: SerialNumber: xhci-hcd.2.auto [ 3.107354] kernel: hub 1-0:1.0: USB hub found [ 3.107407] kernel: hub 1-0:1.0: 2 ports detected [ 3.108054] kernel: xhci-hcd xhci-hcd.2.auto: xHCI Host Controller [ 3.108077] kernel: xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2 [ 3.108095] kernel: xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed [ 3.108177] kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.108280] kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 3.108287] kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 3.108292] kernel: usb usb2: Product: xHCI Host Controller [ 3.108297] kernel: usb usb2: Manufacturer: Linux 5.10.102-meson64 xhci-hcd [ 3.108302] kernel: usb usb2: SerialNumber: xhci-hcd.2.auto [ 3.109108] kernel: hub 2-0:1.0: USB hub found [ 3.109161] kernel: hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19) [ 3.111470] kernel: scpi_protocol scpi: SCP Protocol legacy pre-1.0 firmware [ 3.122544] kernel: Freeing unused kernel memory: 3392K [ 3.149985] kernel: Run /init as init process [ 3.149998] kernel: with arguments: [ 3.150002] kernel: /init [ 3.150005] kernel: with environment: [ 3.150008] kernel: HOME=/ [ 3.150011] kernel: TERM=linux [ 3.150014] kernel: ubootpart=d4b703ff-01 [ 3.150017] kernel: cgroup_enable=memory [ 3.361964] kernel: usb 1-1: new low-speed USB device number 2 using xhci-hcd [ 3.529293] kernel: random: fast init done [ 3.529383] kernel: usb 1-1: New USB device found, idVendor=04d9, idProduct=1603, bcdDevice= 3.10 [ 3.529391] kernel: usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.529396] kernel: usb 1-1: Product: USB Keyboard [ 3.529400] kernel: usb 1-1: Manufacturer: [ 3.560568] kernel: input: USB Keyboard as /devices/platform/soc/d0078080.usb/c9000000.usb/xhci-hcd.2.auto/usb1/1-1/1-1:1.0/0003:04D9:1603.0001/input/input0 [ 3.605285] kernel: meson8b-dwmac c9410000.ethernet: IRQ eth_wake_irq not found [ 3.605298] kernel: meson8b-dwmac c9410000.ethernet: IRQ eth_lpi not found [ 3.605404] kernel: meson8b-dwmac c9410000.ethernet: PTP uses main clock [ 3.605411] kernel: meson8b-dwmac c9410000.ethernet: no reset control found [ 3.606283] kernel: meson8b-dwmac c9410000.ethernet: User ID: 0x11, Synopsys ID: 0x37 [ 3.606300] kernel: meson8b-dwmac c9410000.ethernet: DWMAC1000 [ 3.606305] kernel: meson8b-dwmac c9410000.ethernet: DMA HW capability register supported [ 3.606310] kernel: meson8b-dwmac c9410000.ethernet: RX Checksum Offload Engine supported [ 3.606314] kernel: meson8b-dwmac c9410000.ethernet: COE Type 2 [ 3.606318] kernel: meson8b-dwmac c9410000.ethernet: TX Checksum insertion supported [ 3.606322] kernel: meson8b-dwmac c9410000.ethernet: Wake-Up On Lan supported [ 3.606443] kernel: meson8b-dwmac c9410000.ethernet: Normal descriptors [ 3.606450] kernel: meson8b-dwmac c9410000.ethernet: Ring mode enabled [ 3.606454] kernel: meson8b-dwmac c9410000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 3.618744] kernel: hid-generic 0003:04D9:1603.0001: input,hidraw0: USB HID v1.10 Keyboard [ USB Keyboard] on usb-xhci-hcd.2.auto-1/input0 [ 3.634776] kernel: input: USB Keyboard System Control as /devices/platform/soc/d0078080.usb/c9000000.usb/xhci-hcd.2.auto/usb1/1-1/1-1:1.1/0003:04D9:1603.0002/input/input1 [ 3.694379] kernel: input: USB Keyboard Consumer Control as /devices/platform/soc/d0078080.usb/c9000000.usb/xhci-hcd.2.auto/usb1/1-1/1-1:1.1/0003:04D9:1603.0002/input/input2 [ 3.694756] kernel: hid-generic 0003:04D9:1603.0002: input,hidraw1: USB HID v1.10 Device [ USB Keyboard] on usb-xhci-hcd.2.auto-1/input1 [ 4.865722] kernel: EXT4-fs (mmcblk0p1): mounted filesystem with writeback data mode. Opts: (null) [ 5.138548] systemd[1]: System time before build time, advancing clock. [ 5.149243] systemd[1]: Inserted module 'autofs4' [ 5.180769] systemd[1]: systemd 245.4-4ubuntu3.16 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) [ 5.181267] systemd[1]: Detected architecture arm64. [ 5.206415] systemd[1]: Set hostname to <lafrite>. [ 5.683796] kernel: random: systemd: uninitialized urandom read (16 bytes read) [ 5.687175] systemd[1]: Created slice system-modprobe.slice. [ 5.687785] kernel: random: systemd: uninitialized urandom read (16 bytes read) [ 5.689085] systemd[1]: Created slice system-serial\x2dgetty.slice. [ 5.689563] kernel: random: systemd: uninitialized urandom read (16 bytes read) [ 5.690755] systemd[1]: Created slice User and Session Slice. [ 5.691555] systemd[1]: Started Dispatch Password Requests to Console Directory Watch when bootsplash is active. [ 5.692311] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 5.693619] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 5.694412] systemd[1]: Reached target Local Encrypted Volumes. [ 5.695001] systemd[1]: Reached target Slices. [ 5.695371] systemd[1]: Reached target Swap. [ 5.695696] systemd[1]: Reached target System Time Set. [ 5.714400] systemd[1]: Listening on RPCbind Server Activation Socket. [ 5.715582] systemd[1]: Listening on Syslog Socket. [ 5.716703] systemd[1]: Listening on fsck to fsckd communication Socket. [ 5.717503] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 5.719015] systemd[1]: Listening on Journal Audit Socket. [ 5.720029] systemd[1]: Listening on Journal Socket (/dev/log). [ 5.721175] systemd[1]: Listening on Journal Socket. [ 5.722501] systemd[1]: Listening on udev Control Socket. [ 5.723413] systemd[1]: Listening on udev Kernel Socket. [ 5.728268] systemd[1]: Mounting Huge Pages File System... [ 5.733951] systemd[1]: Mounting POSIX Message Queue File System... [ 5.739668] systemd[1]: Mounting NFSD configuration filesystem... [ 5.745180] systemd[1]: Mounting RPC Pipe File System... [ 5.751731] systemd[1]: Mounting Kernel Debug File System... [ 5.752824] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 5.753374] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. [ 5.761321] systemd[1]: Starting Restore / save the current clock... [ 5.768269] systemd[1]: Starting Set the console keyboard layout... [ 5.774956] kernel: RPC: Registered named UNIX socket transport module. [ 5.774967] kernel: RPC: Registered udp transport module. [ 5.774971] kernel: RPC: Registered tcp transport module. [ 5.774974] kernel: RPC: Registered tcp NFSv4.1 backchannel transport module. [ 5.779959] systemd[1]: Starting Create list of static device nodes for the current kernel... [ 5.780843] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped. [ 5.787904] systemd[1]: Started Nameserver information manager. [ 5.789369] systemd[1]: Reached target Network (Pre). [ 5.795982] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 5.796172] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. [ 5.804851] systemd[1]: Starting Load Kernel Modules... [ 5.816152] systemd[1]: Starting Remount Root and Kernel File Systems... [ 5.823305] systemd[1]: Starting udev Coldplug all Devices... [ 5.837713] systemd[1]: Mounted Huge Pages File System. [ 5.839354] systemd[1]: Mounted POSIX Message Queue File System. [ 5.839736] kernel: Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 5.841061] systemd[1]: Mounted RPC Pipe File System. [ 5.845628] systemd[1]: Mounted Kernel Debug File System. [ 5.847591] systemd[1]: Mounted NFSD configuration filesystem. [ 5.851489] systemd[1]: Finished Restore / save the current clock. [ 5.855499] systemd[1]: Finished Create list of static device nodes for the current kernel. [ 5.860474] kernel: EXT4-fs (mmcblk0p1): re-mounted. Opts: commit=600,errors=remount-ro [ 5.863228] systemd[1]: Finished Load Kernel Modules. [ 5.870000] systemd[1]: Finished Remount Root and Kernel File Systems. [ 5.876113] systemd[1]: Mounting FUSE Control File System... [ 5.883662] systemd[1]: Mounting Kernel Configuration File System... [ 5.890111] systemd[1]: Starting pNFS block layout mapping daemon... [ 5.892714] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ 5.893317] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 5.905134] systemd[1]: Starting Load/Save Random Seed... [ 5.910811] systemd[1]: Starting Apply Kernel Variables... [ 5.927803] systemd[1]: Starting Create System Users... [ 5.936609] systemd[1]: Mounted FUSE Control File System. [ 5.941464] systemd[1]: Mounted Kernel Configuration File System. [ 5.955156] systemd[1]: Started pNFS block layout mapping daemon. [ 5.971099] systemd[1]: Finished Create System Users. [ 5.984706] systemd[1]: Starting Create Static Device Nodes in /dev... [ 5.992778] systemd[1]: Finished Apply Kernel Variables. [ 6.033573] systemd[1]: Finished Create Static Device Nodes in /dev. [ 6.042916] systemd[1]: Starting udev Kernel Device Manager... [ 6.093793] systemd[1]: Finished Set the console keyboard layout. [ 6.098504] systemd[1]: Reached target Local File Systems (Pre). [ 6.107392] systemd[1]: Mounting /tmp... [ 6.123477] systemd[1]: Mounted /tmp. [ 6.128022] systemd[1]: Reached target Local File Systems. [ 6.137011] systemd[1]: Starting Armbian ZRAM config... [ 6.153338] systemd[1]: Starting Set console font and keymap... [ 6.166698] systemd[1]: Starting Preprocess NFS configuration... [ 6.174332] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. [ 6.174702] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 6.175829] systemd[1]: Started udev Kernel Device Manager. [ 6.195492] systemd[1]: Finished Set console font and keymap. [ 6.201370] systemd[1]: nfs-config.service: Succeeded. [ 6.204352] systemd[1]: Finished Preprocess NFS configuration. [ 6.214893] systemd[1]: Starting NFSv4 ID-name mapping service... [ 6.222156] systemd[1]: Condition check resulted in RPC security service for NFS client and server being skipped. [ 6.222461] systemd[1]: Reached target NFS client services. [ 6.227202] systemd[1]: Condition check resulted in RPC security service for NFS server being skipped. [ 6.230839] systemd[1]: Finished udev Coldplug all Devices. [ 6.242044] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ 6.247583] systemd[1]: Started NFSv4 ID-name mapping service. [ 6.262345] systemd[1]: Finished Helper to synchronize boot up for ifupdown. [ 6.277680] systemd[1]: Starting Raise network interfaces... [ 6.368931] kernel: zram: Added device: zram0 [ 6.369785] kernel: zram: Added device: zram1 [ 6.370794] kernel: zram: Added device: zram2 [ 6.464093] kernel: zram0: detected capacity change from 0 to 216670208 [ 6.710692] systemd[1]: Finished Raise network interfaces. [ 6.921768] kernel: mc: Linux media interface: v0.10 [ 6.943734] kernel: videodev: Linux video capture interface: v2.00 [ 7.017773] kernel: meson_vdec: module is from the staging directory, the quality is unknown, you have been warned. [ 7.211602] systemd[1]: Found device /dev/ttyAML0. [ 7.277260] kernel: Registered IR keymap rc-empty [ 7.277378] kernel: rc rc0: meson-ir as /devices/platform/soc/c8100000.bus/c8100580.ir/rc/rc0 [ 7.282041] kernel: rc rc0: lirc_dev: driver meson-ir registered at minor = 0, raw IR receiver, no transmitter [ 7.282213] kernel: input: meson-ir as /devices/platform/soc/c8100000.bus/c8100580.ir/rc/rc0/input3 [ 7.286125] kernel: meson-ir c8100580.ir: receiver initialized [ 7.535588] kernel: lima d00c0000.gpu: gp - mali450 version major 0 minor 0 [ 7.535635] kernel: lima d00c0000.gpu: pp0 - mali450 version major 0 minor 0 [ 7.535680] kernel: lima d00c0000.gpu: pp1 - mali450 version major 0 minor 0 [ 7.535718] kernel: lima d00c0000.gpu: pp2 - mali450 version major 0 minor 0 [ 7.535760] kernel: lima d00c0000.gpu: l2 cache 8K, 4-way, 64byte cache line, 128bit external bus [ 7.535770] kernel: lima d00c0000.gpu: l2 cache 64K, 4-way, 64byte cache line, 128bit external bus [ 7.536846] kernel: lima d00c0000.gpu: bus rate = 166666667 [ 7.536860] kernel: lima d00c0000.gpu: mod rate = 24000000 [ 7.537045] kernel: lima d00c0000.gpu: dev_pm_opp_set_regulators: no regulator (mali) found: -19 [ 7.537995] kernel: Adding 211588k swap on /dev/zram0. Priority:5 extents:1 across:211588k SSFS [ 7.544211] kernel: [drm] Initialized lima 1.1.0 20191231 for d00c0000.gpu on minor 1 [ 7.725107] kernel: zram1: detected capacity change from 0 to 52428800 [ 7.906235] kernel: debugfs: Directory 'c1105400.audio-controller' with parent 'GXL-LIBRETECH-S805X-AC' already present! [ 7.906269] kernel: debugfs: Directory 'c1105400.audio-controller' with parent 'GXL-LIBRETECH-S805X-AC' already present! [ 7.921770] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 7.927196] systemd[1]: Condition check resulted in Kernel Trace File System being skipped. [ 7.927708] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 7.927998] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ 7.928239] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ 7.928430] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. [ 8.309900] kernel: random: crng init done [ 8.309910] kernel: random: 7 urandom warning(s) missed due to ratelimiting [ 8.318910] systemd[1]: Finished Load/Save Random Seed. [ 8.323461] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped. [ 8.390800] systemd[1]: Finished Armbian ZRAM config. [ 8.399533] systemd[1]: Starting Armbian memory supported logging... [ 8.460279] kernel: EXT4-fs (zram1): mounted filesystem without journal. Opts: discard [ 8.460319] kernel: ext4 filesystem being mounted at /var/log supports timestamps until 2038 (0x7fffffff) [ 10.400020] systemd[1]: Finished Armbian memory supported logging. [ 10.410420] systemd[1]: Starting Journal Service... [ 10.563496] systemd[1]: Started Journal Service. [ 14.233571] kernel: meson8b-dwmac c9410000.ethernet eth0: PHY [0.e40908ff:08] driver [Meson GXL Internal PHY] (irq=50) [ 14.261997] kernel: meson8b-dwmac c9410000.ethernet eth0: No Safety Features support found [ 14.262022] kernel: meson8b-dwmac c9410000.ethernet eth0: PTP not supported by HW [ 14.267133] kernel: meson8b-dwmac c9410000.ethernet eth0: configuring for phy/rmii link mode [ 14.718912] kernel: NFSD: Using UMH upcall client tracking operations. [ 14.718931] kernel: NFSD: starting 90-second grace period (net f0000081) [ 15.855364] kernel: meson8b-dwmac c9410000.ethernet eth0: Link is Up - 100Mbps/Full - flow control off [ 15.855418] kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
  20. Hello, first i want to say thanks to the Armbian team for all the hard work you put into it. I have the same problem. Armbian (ubuntu) was running fine on my Orange Pi One Plus for 1 or 2 years. Doing apt update && apt upgrade from time to time without any problems. Some days ago after performing apt upgrade as usual after reboot it refused to boot. First I flashed Armbian 22.02 Bullseye - no boot Then I flashed Armbian 22.02 Focal and Jammy - no boot Then I tried several version 21.*.* images from the archive 21.02.1 focal 5.10.12 - no boot 21.02.3 focal 5.10.21 - no boot 21.05.1 focal 5.10.34 - no boot 21.08.1 focal 5.10.60 - no boot HDMI was connected. The Monitor had a signal but black screen and had several short flashes. After waiting long enough you could see the boot process stuck with the "ALERT! UUID=[valid UUID] does not exist. Dropping to a shell!". Everytime I checked the UUID of SD-Card Partition and it was always the correct UUID. Then i jumped to an older version. 20.11.10 focal 5.8.16 - boot OK apt update && apt upgrade, reboot - no boot flashed again. apt update && apt upgrade, armbian-config > install/update bootloader, reboot - no boot flashed again. armbian-config > Freeze Kernel | apt update && apt upgrade, reboot - boot OK So finding a version that boots up and freezing the kernel is the only thing that works for me right now. I got USB to TTL working now. Verbosity=7 and console=serial. Here is the output for version 22.02 Focal U-Boot SPL 2021.10-armbian (Feb 27 2022 - 08:51:38 +0000) DRAM: 1024 MiB Trying to boot from MMC1 NOTICE: BL31: v2.2(debug):a04808c1-dirty NOTICE: BL31: Built : 08:51:29, Feb 27 2022 NOTICE: BL31: Detected Allwinner H6 SoC (1728) NOTICE: BL31: Found U-Boot DTB at 0xc086c68, model: OrangePi One Plus INFO: ARM GICv2 driver initialized NOTICE: PMIC: Probing AXP805 NOTICE: PMIC: AXP805 detected INFO: BL31: Platform setup done INFO: BL31: Initializing runtime services INFO: BL31: cortex_a53: CPU workaround for 855873 was applied INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x4a000000 INFO: SPSR = 0x3c9 U-Boot 2021.10-armbian (Feb 27 2022 - 08:51:38 +0000) Allwinner Technology CPU: Allwinner H6 (SUN50I) Model: OrangePi One Plus DRAM: 1 GiB MMC: mmc@4020000: 0 Loading Environment from FAT... Unable to use mmc 0:1... In: serial@5000000 Out: serial@5000000 Err: serial@5000000 Net: No ethernet found. starting USB... Bus usb@5101000: USB EHCI 1.00 Bus usb@5101400: USB OHCI 1.0 Bus usb@5311000: USB EHCI 1.00 Bus usb@5311400: USB OHCI 1.0 scanning bus usb@5101000 for devices... 1 USB Device(s) found scanning bus usb@5101400 for devices... 1 USB Device(s) found scanning bus usb@5311000 for devices... 1 USB Device(s) found scanning bus usb@5311400 for devices... 1 USB Device(s) found scanning usb for storage devices... 0 Storage Device(s) found Autoboot in 1 seconds, press <Space> to stop switch to partitions #0, OK mmc0 is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 3202 bytes read in 6 ms (520.5 KiB/s) ## Executing script at 4fc00000 U-boot loaded from SD Boot script loaded from mmc 154 bytes read in 5 ms (29.3 KiB/s) 35349 bytes read in 12 ms (2.8 MiB/s) 4191 bytes read in 10 ms (409.2 KiB/s) Applying kernel provided DT fixup script (sun50i-h6-fixup.scr) ## Executing script at 45000000 12462399 bytes read in 620 ms (19.2 MiB/s) 21735432 bytes read in 1078 ms (19.2 MiB/s) Moving Image from 0x40080000 to 0x40200000, end=41710000 ## Loading init Ramdisk from Legacy Image at 4ff00000 ... Image Name: uInitrd Image Type: AArch64 Linux RAMDisk Image (gzip compressed) Data Size: 12462335 Bytes = 11.9 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 4fa00000 Booting using the fdt blob at 0x4fa00000 Loading Ramdisk to 4941d000, end 49fff8ff ... OK Loading Device Tree to 00000000493ac000, end 000000004941cfff ... OK Starting kernel ... U-Boot SPL 2021.10-armbian (Feb 27 2022 - 08:51:38 +0000) DRAM: 1024 MiB Trying to boot from MMC1 NOTICE: BL31: v2.2(debug):a04808c1-dirty NOTICE: BL31: Built : 08:51:29, Feb 27 2022 NOTICE: BL31: Detected Allwinner H6 SoC (1728) NOTICE: BL31: Found U-Boot DTB at 0xc086c68, model: OrangePi One Plus INFO: ARM GICv2 driver initialized NOTICE: PMIC: Probing AXP805 NOTICE: PMIC: AXP805 detected INFO: BL31: Platform setup done INFO: BL31: Initializing runtime services INFO: BL31: cortex_a53: CPU workaround for 855873 was applied INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x4a000000 INFO: SPSR = 0x3c9 U-Boot 2021.10-armbian (Feb 27 2022 - 08:51:38 +0000) Allwinner Technology CPU: Allwinner H6 (SUN50I) Model: OrangePi One Plus DRAM: 1 GiB MMC: mmc@4020000: 0 Loading Environment from FAT... Unable to use mmc 0:1... In: serial@5000000 Out: serial@5000000 Err: serial@5000000 Net: No ethernet found. starting USB... Bus usb@5101000: USB EHCI 1.00 Bus usb@5101400: USB OHCI 1.0 Bus usb@5311000: USB EHCI 1.00 Bus usb@5311400: USB OHCI 1.0 scanning bus usb@5101000 for devices... 1 USB Device(s) found scanning bus usb@5101400 for devices... 1 USB Device(s) found scanning bus usb@5311000 for devices... 1 USB Device(s) found scanning bus usb@5311400 for devices... 1 USB Device(s) found scanning usb for storage devices... 0 Storage Device(s) found Autoboot in 1 seconds, press <Space> to stop switch to partitions #0, OK mmc0 is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 3202 bytes read in 4 ms (781.3 KiB/s) ## Executing script at 4fc00000 U-boot loaded from SD Boot script loaded from mmc 156 bytes read in 3 ms (50.8 KiB/s) 35349 bytes read in 16 ms (2.1 MiB/s) 4191 bytes read in 8 ms (510.7 KiB/s) Applying kernel provided DT fixup script (sun50i-h6-fixup.scr) ## Executing script at 45000000 12462399 bytes read in 628 ms (18.9 MiB/s) 21735432 bytes read in 1078 ms (19.2 MiB/s) Moving Image from 0x40080000 to 0x40200000, end=41710000 ## Loading init Ramdisk from Legacy Image at 4ff00000 ... Image Name: uInitrd Image Type: AArch64 Linux RAMDisk Image (gzip compressed) Data Size: 12462335 Bytes = 11.9 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 4fa00000 Booting using the fdt blob at 0x4fa00000 Loading Ramdisk to 4941d000, end 49fff8ff ... OK Loading Device Tree to 00000000493ac000, end 000000004941cfff ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.15.25-sunxi64 (root@be0d054872f0) (aarch64-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 8.3.0, GNU ld (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) 2.32.0.20190321) #22.02.1 SMP Sun Feb 27 09:24:04 UTC 2022 [ 0.000000] Machine model: OrangePi One Plus [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] NUMA: NODE_DATA [mem 0x7fdce100-0x7fdcffff] [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] cma: Reserved 128 MiB at 0x0000000076c00000 [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.1 [ 0.000000] percpu: Embedded 19 pages/cpu s36952 r8192 d32680 u77824 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 258048 [ 0.000000] Policy zone: DMA [ 0.000000] Kernel command line: root=UUID=a1483a27-5c10-4a32-b574-6102d8be806c rootwait rootfstype=ext4 console=ttyS0,115200 consoleblank=0 loglevel=7 ubootpart=3e3a004b-01 usb-storage.quirks= cgroup_enable=memory swapaccount=1 [ 0.000000] Unknown kernel command line parameters "ubootpart=3e3a004b-01 cgroup_enable=memory", will be passed to user space. [ 0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes [ 0.000000] printk: log_buf_len total cpu_extra contributions: 12288 bytes [ 0.000000] printk: log_buf_len min size: 16384 bytes [ 0.000000] printk: log_buf_len: 32768 bytes [ 0.000000] printk: early log buf free: 14208(86%) [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 863104K/1048576K available (13440K kernel code, 1066K rwdata, 4128K rodata, 2496K init, 316K bss, 54400K reserved, 131072K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] random: get_random_bytes called from start_kernel+0x4cc/0x6ac with crng_init=0 [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000125] clocksource: timer: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000596] Console: colour dummy device 80x25 [ 0.000686] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000704] pid_max: default: 32768 minimum: 301 [ 0.000786] LSM: Security Framework initializing [ 0.000820] Yama: becoming mindful. [ 0.000906] AppArmor: AppArmor initialized [ 0.000958] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.000975] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.002610] rcu: Hierarchical SRCU implementation. [ 0.003582] smp: Bringing up secondary CPUs ... [ 0.004371] Detected VIPT I-cache on CPU1 [ 0.004441] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.005071] Detected VIPT I-cache on CPU2 [ 0.005112] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.005674] Detected VIPT I-cache on CPU3 [ 0.005711] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.005779] smp: Brought up 1 node, 4 CPUs [ 0.005806] SMP: Total of 4 processors activated. [ 0.005814] CPU features: detected: 32-bit EL0 Support [ 0.005820] CPU features: detected: CRC32 instructions [ 0.018571] CPU: All CPU(s) started at EL2 [ 0.018604] alternatives: patching kernel code [ 0.020006] devtmpfs: initialized [ 0.026504] Registered cp15_barrier emulation handler [ 0.026534] Registered setend emulation handler [ 0.026712] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.026735] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.032733] pinctrl core: initialized pinctrl subsystem [ 0.033918] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.035501] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.035630] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.035762] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.035821] audit: initializing netlink subsys (disabled) [ 0.035965] audit: type=2000 audit(0.032:1): state=initialized audit_enabled=0 res=1 [ 0.036520] thermal_sys: Registered thermal governor 'fair_share' [ 0.036526] thermal_sys: Registered thermal governor 'bang_bang' [ 0.036534] thermal_sys: Registered thermal governor 'step_wise' [ 0.036542] thermal_sys: Registered thermal governor 'user_space' [ 0.036974] cpuidle: using governor menu [ 0.037190] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.037289] ASID allocator initialised with 65536 entries [ 0.037454] Serial: AMBA PL011 UART driver [ 0.048048] platform 6510000.tcon-top: Fixing up cyclic dependency with 6000000.hdmi [ 0.048414] platform 6515000.lcd-controller: Fixing up cyclic dependency with 6510000.tcon-top [ 0.049490] platform 7022000.pinctrl: Fixing up cyclic dependency with pmic@745 (7083000.rsb) [ 0.050315] platform connector: Fixing up cyclic dependency with 6000000.hdmi [ 0.057877] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.057901] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.057910] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.057919] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.059688] cryptd: max_cpu_qlen set to 1000 [ 0.128274] raid6: neonx8 gen() 1586 MB/s [ 0.196344] raid6: neonx8 xor() 1186 MB/s [ 0.264439] raid6: neonx4 gen() 1624 MB/s [ 0.332510] raid6: neonx4 xor() 1175 MB/s [ 0.400603] raid6: neonx2 gen() 1535 MB/s [ 0.468670] raid6: neonx2 xor() 1078 MB/s [ 0.536767] raid6: neonx1 gen() 1338 MB/s [ 0.604840] raid6: neonx1 xor() 923 MB/s [ 0.672931] raid6: int64x8 gen() 1104 MB/s [ 0.740997] raid6: int64x8 xor() 580 MB/s [ 0.809078] raid6: int64x4 gen() 1226 MB/s [ 0.877157] raid6: int64x4 xor() 628 MB/s [ 0.945268] raid6: int64x2 gen() 1048 MB/s [ 1.013330] raid6: int64x2 xor() 555 MB/s [ 1.081431] raid6: int64x1 gen() 778 MB/s [ 1.149512] raid6: int64x1 xor() 405 MB/s [ 1.149521] raid6: using algorithm neonx4 gen() 1624 MB/s [ 1.149528] raid6: .... xor() 1175 MB/s, rmw enabled [ 1.149536] raid6: using neon recovery algorithm [ 1.150428] iommu: Default domain type: Translated [ 1.150442] iommu: DMA domain TLB invalidation policy: strict mode [ 1.150731] SCSI subsystem initialized [ 1.150943] usbcore: registered new interface driver usbfs [ 1.150987] usbcore: registered new interface driver hub [ 1.151023] usbcore: registered new device driver usb [ 1.151314] pps_core: LinuxPPS API ver. 1 registered [ 1.151324] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.151347] PTP clock support registered [ 1.151955] Advanced Linux Sound Architecture Driver Initialized. [ 1.152620] NetLabel: Initializing [ 1.152628] NetLabel: domain hash size = 128 [ 1.152635] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.152708] NetLabel: unlabeled traffic allowed by default [ 1.153116] clocksource: Switched to clocksource arch_sys_counter [ 1.153306] VFS: Disk quotas dquot_6.6.0 [ 1.153362] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.153968] AppArmor: AppArmor Filesystem Enabled [ 1.160675] NET: Registered PF_INET protocol family [ 1.160822] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.161656] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [ 1.161689] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 1.161771] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 1.161922] TCP: Hash tables configured (established 8192 bind 8192) [ 1.162040] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.162085] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 1.162243] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 1.162758] Trying to unpack rootfs image as initramfs... [ 1.170259] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.176112] Initialise system trusted keyrings [ 1.176178] Key type blacklist registered [ 1.176349] workingset: timestamp_bits=44 max_order=18 bucket_order=0 [ 1.182178] zbud: loaded [ 1.183747] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.185999] integrity: Platform Keyring initialized [ 1.235129] xor: automatically using best checksumming function 32regs [ 1.235171] async_tx: api initialized (async) [ 1.235184] Key type asymmetric registered [ 1.235194] Asymmetric key parser 'x509' registered [ 1.235314] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 1.235462] io scheduler mq-deadline registered [ 1.235472] io scheduler kyber registered [ 1.235671] io scheduler bfq registered [ 1.240114] sun50i-h6-r-pinctrl 7022000.pinctrl: initialized sunXi PIO driver [ 1.250738] Serial: 8250/16550 driver, 6 ports, IRQ sharing disabled [ 1.256402] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 1.260479] loop: module loaded [ 1.262675] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.262710] ehci-platform: EHCI generic platform driver [ 1.262853] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.262868] ohci-platform: OHCI generic platform driver [ 1.263284] usbcore: registered new interface driver usb-storage [ 1.263774] mousedev: PS/2 mouse device common for all mice [ 1.264673] sun6i-rtc 7000000.rtc: registered as rtc0 [ 1.264694] sun6i-rtc 7000000.rtc: hctosys: unable to read the hardware clock [ 1.264810] sun6i-rtc 7000000.rtc: RTC enabled [ 1.264923] i2c_dev: i2c /dev entries driver [ 1.265651] sunxi-wdt 7020400.watchdog: Watchdog enabled (timeout=16 sec, nowayout=0) [ 1.267059] sdhci: Secure Digital Host Controller Interface driver [ 1.267079] sdhci: Copyright(c) Pierre Ossman [ 1.267106] Synopsys Designware Multimedia Card Interface Driver [ 1.267717] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.267871] sun50i-h6-r-pinctrl 7022000.pinctrl: supply vcc-pl not found, using dummy regulator [ 1.268934] ledtrig-cpu: registered to indicate activity on CPUs [ 1.269466] sun8i-ce 1904000.crypto: Set mod clock to 300000000 (300 Mhz) from 24000000 (24 Mhz) [ 1.269737] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.269871] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.269967] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.270060] sun8i-ce 1904000.crypto: will run requests pump with realtime priority [ 1.270149] sun8i-ce 1904000.crypto: Register cbc(aes) [ 1.270302] sun8i-ce 1904000.crypto: Register ecb(aes) [ 1.270414] sun8i-ce 1904000.crypto: Register cbc(des3_ede) [ 1.270530] sun8i-ce 1904000.crypto: Register ecb(des3_ede) [ 1.270637] sun8i-ce 1904000.crypto: Register md5 [ 1.270746] sun8i-ce 1904000.crypto: Register sha1 [ 1.270852] sun8i-ce 1904000.crypto: Register sha224 [ 1.270979] sun8i-ce 1904000.crypto: Register sha256 [ 1.271086] sun8i-ce 1904000.crypto: Register sha384 [ 1.271195] sun8i-ce 1904000.crypto: Register sha512 [ 1.271302] sun8i-ce 1904000.crypto: Register stdrng [ 1.272009] sun8i-ce 1904000.crypto: CryptoEngine Die ID 0 [ 1.272503] hid: raw HID events driver (C) Jiri Kosina [ 1.272638] usbcore: registered new interface driver usbhid [ 1.272647] usbhid: USB HID core driver [ 1.273408] random: fast init done [ 1.274877] random: crng init done [ 1.275424] NET: Registered PF_INET6 protocol family [ 1.834931] Freeing initrd memory: 12168K [ 1.862467] Segment Routing with IPv6 [ 1.862570] In-situ OAM (IOAM) with IPv6 [ 1.862665] NET: Registered PF_PACKET protocol family [ 1.862776] 8021q: 802.1Q VLAN Support v1.8 [ 1.862936] 9pnet: Installing 9P2000 support [ 1.863012] Key type dns_resolver registered [ 1.863422] registered taskstats version 1 [ 1.863440] Loading compiled-in X.509 certificates [ 1.867300] Loaded X.509 cert 'Build time autogenerated kernel key: bcc3e2753dc7b0d253b541b07c1f0e6f1eedd00a' [ 1.870161] zswap: loaded using pool zstd/z3fold [ 1.870779] Key type ._fscrypt registered [ 1.870790] Key type .fscrypt registered [ 1.870798] Key type fscrypt-provisioning registered [ 1.871834] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 1.885011] Key type encrypted registered [ 1.885049] AppArmor: AppArmor sha1 policy hashing enabled [ 1.885185] ima: No TPM chip found, activating TPM-bypass! [ 1.885221] ima: Allocated hash algorithm: sha1 [ 1.885256] ima: No architecture policies found [ 1.885307] evm: Initialising EVM extended attributes: [ 1.885314] evm: security.selinux [ 1.885321] evm: security.SMACK64 [ 1.885328] evm: security.SMACK64EXEC [ 1.885334] evm: security.SMACK64TRANSMUTE [ 1.885340] evm: security.SMACK64MMAP [ 1.885347] evm: security.apparmor [ 1.885353] evm: security.ima [ 1.885359] evm: security.capability [ 1.885365] evm: HMAC attrs: 0x1 [ 1.896905] platform 1100000.mixer: Fixing up cyclic dependency with 6510000.tcon-top [ 1.897347] sun8i-mixer 1100000.mixer: Adding to iommu group 0 [ 1.897942] sunxi-rsb 7083000.rsb: RSB running at 3000000 Hz [ 1.898314] axp20x-rsb sunxi-rsb-745: AXP20x variant AXP806 found [ 1.898766] axp20x-rsb sunxi-rsb-745: Failed to set masks in 0x40: -5 [ 1.898781] axp20x-rsb sunxi-rsb-745: failed to add irq chip: -5 [ 1.898792] axp20x-rsb: probe of sunxi-rsb-745 failed with error -5 [ 1.903591] sun50i-h6-pinctrl 300b000.pinctrl: initialized sunXi PIO driver [ 1.903970] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-ph not found, using dummy regulator [ 1.904539] printk: console [ttyS0] disabled [ 1.904632] 5000000.serial: ttyS0 at MMIO 0x5000000 (irq = 33, base_baud = 1500000) is a 16550A [ 3.312839] printk: console [ttyS0] enabled [ 3.318431] sun4i-drm display-engine: Adding to iommu group 0 [ 3.343602] sun4i-drm display-engine: bound 1100000.mixer (ops 0xffff800008e05cf8) [ 3.351352] sun4i-drm display-engine: bound 6510000.tcon-top (ops 0xffff800008e09f20) [ 3.359462] sun4i-drm display-engine: bound 6515000.lcd-controller (ops 0xffff800008e00f08) [ 3.367876] sun8i-dw-hdmi 6000000.hdmi: supply hvcc not found, using dummy regulator [ 3.375980] sun8i-dw-hdmi 6000000.hdmi: Detected HDMI TX controller v2.12a with HDCP (DWC HDMI 2.0 TX PHY) [ 3.386178] sun8i-dw-hdmi 6000000.hdmi: registered DesignWare HDMI I2C bus driver [ 3.394008] sun4i-drm display-engine: bound 6000000.hdmi (ops 0xffff800008e05030) [ 3.401985] [drm] Initialized sun4i-drm 1.0.0 20150629 for display-engine on minor 0 [ 3.409789] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes [ 3.418720] sun4i-drm display-engine: [drm] Cannot find any crtc or sizes [ 3.419016] sun50i_cpufreq_nvmem: Using CPU speed bin speed0 [ 3.432236] scpi_protocol scpi: SCP Protocol 0.0 Firmware 0.0.0 version [ 3.432347] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 3.439052] sun50i-h6-pinctrl 300b000.pinctrl: Couldn't get bank PD regulator [ 3.454533] sun50i-h6-pinctrl 300b000.pinctrl: request() failed for pin 102 [ 3.461499] sun50i-h6-pinctrl 300b000.pinctrl: pin-102 (300b000.pinctrl:102) status -517 [ 3.469968] sun50i-h6-pinctrl 300b000.pinctrl: Couldn't get bank PC regulator [ 3.477117] sun50i-h6-pinctrl 300b000.pinctrl: request() failed for pin 70 [ 3.483993] sun50i-h6-pinctrl 300b000.pinctrl: pin-70 (300b000.pinctrl:70) status -517 [ 3.493630] sun50i-h6-pinctrl 300b000.pinctrl: Couldn't get bank PD regulator [ 3.493847] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 3.500771] sun50i-h6-pinctrl 300b000.pinctrl: request() failed for pin 102 [ 3.516247] sun50i-h6-pinctrl 300b000.pinctrl: pin-102 (300b000.pinctrl:102) status -517 [ 3.524705] sun50i-h6-pinctrl 300b000.pinctrl: Couldn't get bank PC regulator [ 3.531860] sun50i-h6-pinctrl 300b000.pinctrl: request() failed for pin 70 [ 3.538740] sun50i-h6-pinctrl 300b000.pinctrl: pin-70 (300b000.pinctrl:70) status -517 [ 3.548350] sun50i-h6-pinctrl 300b000.pinctrl: Couldn't get bank PD regulator [ 3.548569] sun50i-h6-pinctrl 300b000.pinctrl: supply vcc-pf not found, using dummy regulator [ 3.555492] sun50i-h6-pinctrl 300b000.pinctrl: request() failed for pin 102 [ 3.570967] sun50i-h6-pinctrl 300b000.pinctrl: pin-102 (300b000.pinctrl:102) status -517 [ 3.579622] of_cfs_init [ 3.582197] of_cfs_init: OK [ 3.585193] ALSA device list: [ 3.588160] No soundcards found. [ 3.592796] Freeing unused kernel memory: 2496K [ 3.617191] Run /init as init process Loading, please wait... Starting version 245.4-4ubuntu3.15 Begin: Loading essential drivers ... done. Begin: Running /scripts/init-premount ... done. Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done. Begin: Running /scripts/local-premount ... Scanning for Btrfs filesystems done. Begin: Waiting for root file system ... Begin: Running /scripts/local-block ... done. done. Gave up waiting for root file system device. Common problems: - Boot args (cat /proc/cmdline) - Check rootdelay= (did the system wait long enough?) - Missing modules (cat /proc/modules; ls /dev) ALERT! UUID=a1483a27-5c10-4a32-b574-6102d8be806c does not exist. Dropping to a shell! BusyBox v1.30.1 (Ubuntu 1:1.30.1-4ubuntu6.4) built-in shell (ash) Enter 'help' for a list of built-in commands. (initramfs) lsblk I checked the UUID and it is correct. The only error I can find is 1.898792] axp20x-rsb: probe of sunxi-rsb-745 failed with error -5 But that same error is displayed also with the working 20.11.10 focal 5.8.16 (kernel upgrades freezed) which is booting fine. So this should not be the problem. Hope that helps. Kind regards grn
  21. Hello Everyone! I'm currently working on a nano pi m4b with a rockchip 3399 processor on it. I need to use an USB camera for my application but I am experiencing some issues that have been really hard to track down lately. First of all I'm using a 5 mega pixels camera with a OV5640 CMOS sensor and I experience some glitches with the image while live streaming. Besides that, I can only get an image while connected to USB 2.0, the 3.0 gives me a black screen with sporadic glitched frames. I'm running Linux 4.4.213-rk3399 on it and here are the dmesg dump logs I'm geting. Has anyone else had this kind of issue? [Feb24 19:13] Booting Linux on physical CPU 0x0 [ +0.000000] Initializing cgroup subsys cpuset [ +0.000000] Initializing cgroup subsys cpu [ +0.000000] Initializing cgroup subsys cpuacct [ +0.000000] Linux version 4.4.213-rk3399 (root@beast) (gcc version 9.2.1 20191025 (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) ) #1 SMP Fri Nov 20 20:43:09 CET 2020 [ +0.000000] Boot CPU: AArch64 Processor [410fd034] [ +0.000000] Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB [ +0.000000] On node 0 totalpages: 523776 [ +0.000000] DMA zone: 8184 pages used for memmap [ +0.000000] DMA zone: 0 pages reserved [ +0.000000] DMA zone: 523776 pages, LIFO batch:31 [ +0.000000] psci: probing for conduit method from DT. [ +0.000000] psci: PSCIv1.0 detected in firmware. [ +0.000000] psci: Using standard PSCI v0.2 function IDs [ +0.000000] psci: MIGRATE_INFO_TYPE not supported. [ +0.000000] psci: SMC Calling Convention v1.0 [ +0.000000] PERCPU: Embedded 20 pages/cpu @ffffffc07fee5000 s42216 r8192 d31512 u81920 [ +0.000000] pcpu-alloc: s42216 r8192 d31512 u81920 alloc=20*4096 [ +0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [ +0.000000] Detected VIPT I-cache on CPU0 [ +0.000000] CPU features: enabling workaround for ARM erratum 845719 [ +0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 515592 [ +0.000000] Kernel command line: root=LABEL=SYSTEM rootwait rootfstype=ext4 console=ttyS2,1500000 console=tty1 consoleblank=0 loglevel=1 ubootpart=15158a89-01 usb-storage.quirks=0x2537:0x1066:u,0x2537:0x1068:u usbcore.autosuspend=-1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 [ +0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ +0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ +0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ +0.000000] software IO TLB: mapped [mem 0x757a7000-0x797a7000] (64MB) [ +0.000000] Memory: 1962680K/2095104K available (11518K kernel code, 1402K rwdata, 6140K rodata, 1088K init, 1954K bss, 132424K reserved, 0K cma-reserved) [ +0.000000] Virtual kernel memory layout: modules : 0xffffff8000000000 - 0xffffff8008000000 ( 128 MB) vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000 ( 246 GB) .init : 0xffffff80091d0000 - 0xffffff80092e0000 ( 1088 KB) .text : 0xffffff8008080000 - 0xffffff8008bc0000 ( 11520 KB) .rodata : 0xffffff8008bc0000 - 0xffffff80091d0000 ( 6208 KB) .data : 0xffffff80092e0000 - 0xffffff800943e808 ( 1403 KB) vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000 ( 8 GB maximum) 0xffffffbdc0008000 - 0xffffffbdc2000000 ( 31 MB actual) fixed : 0xffffffbffe7fb000 - 0xffffffbffec00000 ( 4116 KB) PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000 ( 16 MB) memory : 0xffffffc000200000 - 0xffffffc080000000 ( 2046 MB) [ +0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 [ +0.000000] Hierarchical RCU implementation. [ +0.000000] Build-time adjustment of leaf fanout to 64. [ +0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=6. [ +0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=6 [ +0.000000] NR_IRQS:64 nr_irqs:64 0 [ +0.000000] GIC: Using split EOI/Deactivate mode [ +0.000000] ITS: /interrupt-controller@fee00000/interrupt-controller@fee20000 [ +0.000000] ITS: allocated 65536 Devices @7d500000 (psz 64K, shr 0) [ +0.000000] ITS: using cache flushing for cmd queue [ +0.000000] GIC: using LPI property table @0x000000007d490000 [ +0.000000] ITS: Allocated 1792 chunks for LPIs [ +0.000000] CPU0: found redistributor 0 region 0:0x00000000fef00000 [ +0.000000] CPU0: using LPI pending table @0x000000007d4a0000 [ +0.000000] GIC: using cache flushing for LPI property table [ +0.000000] GIC: PPI partition interrupt-partition-0[0] { /cpus/cpu@0[0] /cpus/cpu@1[1] /cpus/cpu@2[2] /cpus/cpu@3[3] } [ +0.000000] GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@100[4] /cpus/cpu@101[5] } [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_mmc_get_phase: invalid clk rate [ +0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop0_frac as parent of dclk_vop0, rate changes may not work [ +0.000000] rockchip_clk_register_frac_branch: could not find dclk_vop1_frac as parent of dclk_vop1, rate changes may not work [ +0.000000] Architected cp15 timer(s) running at 24.00MHz (phys). [ +0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ +0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ +0.001462] Console: colour dummy device 80x25 [ +0.000205] console [tty1] enabled [ +0.000023] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ +0.000012] pid_max: default: 32768 minimum: 301 [ +0.000115] Security Framework initialized [ +0.000011] Yama: becoming mindful. [ +0.000022] AppArmor: AppArmor disabled by boot time parameter [ +0.000052] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [ +0.000012] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [ +0.000704] Initializing cgroup subsys io [ +0.000019] Initializing cgroup subsys memory [ +0.000032] Initializing cgroup subsys devices [ +0.000014] Initializing cgroup subsys freezer [ +0.000013] Initializing cgroup subsys net_cls [ +0.000012] Initializing cgroup subsys perf_event [ +0.000013] Initializing cgroup subsys net_prio [ +0.000018] Initializing cgroup subsys hugetlb [ +0.000011] Initializing cgroup subsys pids [ +0.000040] ftrace: allocating 41759 entries in 164 pages [ +0.111603] sched-energy: Sched-energy-costs installed from DT [ +0.000019] CPU0: update cpu_capacity 401 [ +0.000054] ASID allocator initialised with 32768 entries [ +0.002899] PCI/MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created [ +0.000554] Platform MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created [ +0.001348] Detected VIPT I-cache on CPU1 [ +0.000032] CPU1: found redistributor 1 region 0:0x00000000fef20000 [ +0.000030] CPU1: using LPI pending table @0x000000007d720000 [ +0.000044] CPU1: update cpu_capacity 401 [ +0.000004] CPU1: Booted secondary processor [410fd034] [ +0.000547] Detected VIPT I-cache on CPU2 [ +0.000021] CPU2: found redistributor 2 region 0:0x00000000fef40000 [ +0.000028] CPU2: using LPI pending table @0x000000007d750000 [ +0.000027] CPU2: update cpu_capacity 401 [ +0.000004] CPU2: Booted secondary processor [410fd034] [ +0.000516] Detected VIPT I-cache on CPU3 [ +0.000020] CPU3: found redistributor 3 region 0:0x00000000fef60000 [ +0.000027] CPU3: using LPI pending table @0x000000007d7a0000 [ +0.000026] CPU3: update cpu_capacity 401 [ +0.000004] CPU3: Booted secondary processor [410fd034] [ +0.000531] Detected PIPT I-cache on CPU4 [ +0.000026] CPU4: found redistributor 100 region 0:0x00000000fef80000 [ +0.000038] CPU4: using LPI pending table @0x000000007d7e0000 [ +0.000038] CPU4: update cpu_capacity 1024 [ +0.000003] CPU4: Booted secondary processor [410fd082] [ +0.000560] Detected PIPT I-cache on CPU5 [ +0.000018] CPU5: found redistributor 101 region 0:0x00000000fefa0000 [ +0.000036] CPU5: using LPI pending table @0x000000007cc10000 [ +0.000026] CPU5: update cpu_capacity 1024 [ +0.000003] CPU5: Booted secondary processor [410fd082] [ +0.000088] Brought up 6 CPUs [ +0.000086] SMP: Total of 6 processors activated. [ +0.000009] CPU features: detected feature: GIC system register CPU interface [ +0.000010] CPU features: detected feature: 32-bit EL0 Support [ +0.000011] CPU: All CPU(s) started at EL2 [ +0.000046] alternatives: patching kernel code [ +0.001384] devtmpfs: initialized [ +0.018199] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ +0.000024] futex hash table entries: 2048 (order: 5, 131072 bytes) [ +0.000471] xor: measuring software checksum speed [ +0.039147] 8regs : 2855.000 MB/sec [ +0.040061] 8regs_prefetch: 2552.000 MB/sec [ +0.040061] 32regs : 3211.000 MB/sec [ +0.040061] 32regs_prefetch: 2843.000 MB/sec [ +0.000006] xor: using function: 32regs (3211.000 MB/sec) [ +0.000021] pinctrl core: initialized pinctrl subsystem [ +0.000226] regulator-dummy: no parameters [ +0.000539] NET: Registered protocol family 16 [ +0.007129] cpuidle: using governor ladder [ +0.008006] cpuidle: using governor menu [ +0.000023] Registered FIQ tty driver [ +0.000290] vdso: 2 pages (1 code @ ffffff8008bc6000, 1 data @ ffffff80092e5000) [ +0.000027] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ +0.000163] DMA: preallocated 256 KiB pool for atomic allocations [ +0.016791] gpiochip_add_data: registered GPIOs 0 to 31 on device: gpio0 [ +0.000076] gpiochip_add_data: registered GPIOs 32 to 63 on device: gpio1 [ +0.000070] gpiochip_add_data: registered GPIOs 64 to 95 on device: gpio2 [ +0.000071] gpiochip_add_data: registered GPIOs 96 to 127 on device: gpio3 [ +0.000069] gpiochip_add_data: registered GPIOs 128 to 159 on device: gpio4 [ +0.007650] console [pstore-1] enabled [ +0.000008] pstore: Registered ramoops as persistent store backend [ +0.000009] ramoops: attached 0xf0000@0x110000, ecc: 0/0 [ +0.003155] console [ttyFIQ0] enabled [ +0.000220] Registered fiq debugger ttyFIQ0 [ +0.075693] raid6: int64x1 gen() 450 MB/s [ +0.068094] raid6: int64x1 xor() 410 MB/s [ +0.068119] raid6: int64x2 gen() 765 MB/s [ +0.068083] raid6: int64x2 xor() 596 MB/s [ +0.068117] raid6: int64x4 gen() 1072 MB/s [ +0.068078] raid6: int64x4 xor() 666 MB/s [ +0.068106] raid6: int64x8 gen() 824 MB/s [ +0.068101] raid6: int64x8 xor() 603 MB/s [ +0.068099] raid6: neonx1 gen() 908 MB/s [ +0.068095] raid6: neonx1 xor() 663 MB/s [ +0.068152] raid6: neonx2 gen() 1548 MB/s [ +0.068069] raid6: neonx2 xor() 989 MB/s [ +0.068112] raid6: neonx4 gen() 1836 MB/s [ +0.068105] raid6: neonx4 xor() 1149 MB/s [ +0.068122] raid6: neonx8 gen() 1697 MB/s [ +0.068081] raid6: neonx8 xor() 1235 MB/s [ +0.000008] raid6: using algorithm neonx4 gen() 1836 MB/s [ +0.000008] raid6: .... xor() 1149 MB/s, rmw enabled [ +0.000007] raid6: using intx1 recovery algorithm [ +0.001076] of_get_named_gpiod_flags: parsed 'rockchip,power-ctrl' property of node '/rockchip-suspend[0]' - status (0) [ +0.000048] of_get_named_gpiod_flags: parsed 'rockchip,power-ctrl' property of node '/rockchip-suspend[1]' - status (0) [ +0.000307] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc3v3-sys[0]' [ +0.000025] vcc3v3_sys: 3300 mV [ +0.000175] reg-fixed-voltage vcc3v3-sys: vcc3v3_sys supplying 3300000uV [ +0.000055] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc5v0-host-regulator[0]' [ +0.000018] vcc5v0_host: 5000 mV [ +0.000156] reg-fixed-voltage vcc5v0-host-regulator: vcc5v0_host supplying 5000000uV [ +0.000055] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc5v0-sys[0]' [ +0.000017] vcc5v0_sys: 5000 mV [ +0.000143] reg-fixed-voltage vcc5v0-sys: vcc5v0_sys supplying 5000000uV [ +0.000052] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vccadc-ref[0]' [ +0.000017] vcc1v8_sys: 1800 mV [ +0.000156] reg-fixed-voltage vccadc-ref: vcc1v8_sys supplying 1800000uV [ +0.000162] of_get_named_gpiod_flags: parsed 'gpio' property of node '/vcc-sd[0]' - status (0) [ +0.000052] vcc_sd: 3000 mV [ +0.000158] reg-fixed-voltage vcc-sd: vcc_sd supplying 3000000uV [ +0.000051] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/vcc-phy-regulator[0]' [ +0.000017] vcc_phy: no parameters [ +0.000151] reg-fixed-voltage vcc-phy-regulator: vcc_phy supplying 0uV [ +0.000082] of_get_named_gpiod_flags: parsed 'gpio' property of node '/vcc-lcd[0]' - status (0) [ +0.000042] reg-fixed-voltage vcc-lcd: Looking up vin-supply from device tree [ +0.000049] vcc_lcd: supplied by vcc5v0_sys [ +0.024407] vcc_lcd: 3300 mV [ +0.000175] reg-fixed-voltage vcc-lcd: vcc_lcd supplying 3300000uV [ +0.000686] iommu: Adding device ff650000.vpu_service to group 0 [ +0.000091] iommu: Adding device ff660000.rkvdec to group 1 [ +0.000119] iommu: Adding device ff8f0000.vop to group 2 [ +0.000096] iommu: Adding device ff900000.vop to group 3 [ +0.000099] iommu: Adding device ff910000.rkisp1 to group 4 [ +0.000099] iommu: Adding device ff920000.rkisp1 to group 5 [ +0.000516] rk_iommu ff650800.iommu: can't get sclk [ +0.000287] rk_iommu ff660480.iommu: can't get sclk [ +0.000220] rk_iommu ff8f3f00.iommu: can't get sclk [ +0.000182] rk_iommu ff903f00.iommu: can't get sclk [ +0.000177] rk_iommu ff914000.iommu: can't get sclk [ +0.000174] rk_iommu ff924000.iommu: can't get sclk [ +0.000387] SCSI subsystem initialized [ +0.000204] libata version 3.00 loaded. [ +0.000202] usbcore: registered new interface driver usbfs [ +0.000047] usbcore: registered new interface driver hub [ +0.000109] usbcore: registered new device driver usb [ +0.000102] media: Linux media interface: v0.10 [ +0.000039] Linux video capture interface: v2.00 [ +0.000074] pps_core: LinuxPPS API ver. 1 registered [ +0.000008] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ +0.000026] PTP clock support registered [ +0.001251] Advanced Linux Sound Architecture Driver Initialized. [ +0.000941] NetLabel: Initializing [ +0.000009] NetLabel: domain hash size = 128 [ +0.000006] NetLabel: protocols = UNLABELED CIPSOv4 [ +0.000041] NetLabel: unlabeled traffic allowed by default [ +0.000272] rockchip-cpuinfo cpuinfo: Serial : bb1bd30f66833859 [ +0.000633] clocksource: Switched to clocksource arch_sys_counter [ +0.046126] thermal thermal_zone1: power_allocator: sustainable_power will be estimated [ +0.000132] NET: Registered protocol family 2 [ +0.000455] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ +0.000138] TCP bind hash table entries: 16384 (order: 7, 524288 bytes) [ +0.000412] TCP: Hash tables configured (established 16384 bind 16384) [ +0.000083] UDP hash table entries: 1024 (order: 4, 98304 bytes) [ +0.000080] UDP-Lite hash table entries: 1024 (order: 4, 98304 bytes) [ +0.000258] NET: Registered protocol family 1 [ +0.000043] PCI: CLS 0 bytes, default 64 [ +0.000746] Trying to unpack rootfs image as initramfs... [ +0.360122] Freeing initrd memory: 7156K [ +0.000565] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ +0.000091] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available [ +0.001572] kvm [1]: 8-bit VMID [ +0.000010] kvm [1]: Hyp mode initialized successfully [ +0.000128] kvm [1]: interrupt-controller@fff20000 IRQ10 [ +0.000202] kvm [1]: timer IRQ12 [ +0.003613] audit: initializing netlink subsys (disabled) [ +0.000058] audit: type=2000 audit(1.816:1): initialized [ +0.000402] Initialise system trusted keyring [ +0.000395] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ +0.007390] VFS: Disk quotas dquot_6.6.0 [ +0.000159] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ +0.001459] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ +0.000675] fuse init (API version 7.23) [ +0.000576] JFS: nTxBlock = 8192, nTxLock = 65536 [ +0.005348] SGI XFS with ACLs, security attributes, realtime, no debug enabled [ +0.001763] Key type big_key registered [ +0.000022] TEE Core Framework initialization (ver 1:0.1) [ +0.000030] TEE armv7 Driver initialization [ +0.000469] tz_tee_probe: name="armv7sec", id=0, pdev_name="armv7sec.0" [ +0.000011] TEE core: Alloc the misc device "opteearmtz00" (id=0) [ +0.000192] TEE Core: Register the misc device "opteearmtz00" (id=0,minor=62) [ +0.005742] Key type asymmetric registered [ +0.000023] Asymmetric key parser 'x509' registered [ +0.000202] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ +0.000134] io scheduler noop registered [ +0.000012] io scheduler deadline registered (default) [ +0.000040] io scheduler cfq registered [ +0.001082] phy phy-ff770000.syscon:usb2-phy@e460.0: Looking up phy-supply from device tree [ +0.000416] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up phy-supply from device tree [ +0.000015] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up phy-supply property in node /syscon@ff770000/usb2-phy@e460/otg-port failed [ +0.000087] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up vbus-supply from device tree [ +0.000012] phy phy-ff770000.syscon:usb2-phy@e460.1: Looking up vbus-supply property in node /syscon@ff770000/usb2-phy@e460/otg-port failed [ +0.000014] phy phy-ff770000.syscon:usb2-phy@e460.1: Failed to get VBUS supply regulator [ +0.001148] phy phy-ff770000.syscon:phy@f780.2: Looking up phy-supply from device tree [ +0.000013] phy phy-ff770000.syscon:phy@f780.2: Looking up phy-supply property in node /syscon@ff770000/phy@f780 failed [ +0.000885] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc0-supply from device tree [ +0.000015] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc0-supply property in node /power-management@ff310000/power-controller failed [ +0.000331] phy phy-ff800000.phy.3: Looking up phy-supply from device tree [ +0.000013] phy phy-ff800000.phy.3: Looking up phy-supply property in node /phy@ff800000/dp-port failed [ +0.000134] phy phy-ff800000.phy.4: Looking up phy-supply from device tree [ +0.000012] phy phy-ff800000.phy.4: Looking up phy-supply property in node /phy@ff800000/usb3-port failed [ +0.000105] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc1-supply from device tree [ +0.000013] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_tcpc1-supply property in node /power-management@ff310000/power-controller failed [ +0.000370] phy phy-pcie-phy.5: Looking up phy-supply from device tree [ +0.000013] phy phy-pcie-phy.5: Looking up phy-supply property in node /pcie-phy failed [ +0.002271] rockchip-pcie f8000000.pcie: GPIO lookup for consumer ep [ +0.000013] rockchip-pcie f8000000.pcie: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'ep-gpios' property of node '/pcie@f8000000[0]' [ +0.000011] of_get_named_gpiod_flags: can't parse 'ep-gpio' property of node '/pcie@f8000000[0]' [ +0.000009] rockchip-pcie f8000000.pcie: using lookup tables for GPIO lookup [ +0.000011] rockchip-pcie f8000000.pcie: lookup for GPIO ep failed [ +0.000228] rockchip-pcie f8000000.pcie: Looking up vpcie3v3-supply from device tree [ +0.000013] rockchip-pcie f8000000.pcie: Looking up vpcie3v3-supply property in node /pcie@f8000000 failed [ +0.000016] rockchip-pcie f8000000.pcie: no vpcie3v3 regulator found [ +0.000010] rockchip-pcie f8000000.pcie: Looking up vpcie1v8-supply from device tree [ +0.000011] rockchip-pcie f8000000.pcie: Looking up vpcie1v8-supply property in node /pcie@f8000000 failed [ +0.000013] rockchip-pcie f8000000.pcie: no vpcie1v8 regulator found [ +0.000009] rockchip-pcie f8000000.pcie: Looking up vpcie0v9-supply from device tree [ +0.000011] rockchip-pcie f8000000.pcie: Looking up vpcie0v9-supply property in node /pcie@f8000000 failed [ +0.000014] rockchip-pcie f8000000.pcie: no vpcie0v9 regulator found [ +0.000010] rockchip-pcie f8000000.pcie: no bus-scan-delay-ms in device tree, default 0 ms [ +0.000010] rockchip-pcie f8000000.pcie: missing "memory-region" property [ +0.000016] PCI host bridge /pcie@f8000000 ranges: [ +0.000022] MEM 0xfa000000..0xfbdfffff -> 0xfa000000 [ +0.000012] IO 0xfbe00000..0xfbefffff -> 0xfbe00000 [ +0.600778] rockchip-pcie f8000000.pcie: PCIe link training gen1 timeout! [ +0.000024] rockchip-pcie f8000000.pcie: deferred probe failed [ +0.000207] rockchip-pcie: probe of f8000000.pcie failed with error -110 [ +0.000869] pwm-backlight backlight: GPIO lookup for consumer enable [ +0.000015] pwm-backlight backlight: using device tree for GPIO lookup [ +0.000122] of_get_named_gpiod_flags: parsed 'enable-gpios' property of node '/backlight[0]' - status (0) [ +0.000030] no flags found for enable [ +0.000044] pwm-backlight backlight: Looking up power-supply from device tree [ +0.000015] pwm-backlight backlight: Looking up power-supply property in node /backlight failed [ +0.000022] backlight supply power not found, using dummy regulator [ +0.000723] rk-vcodec ff650000.vpu_service: Looking up vcodec-supply from device tree [ +0.000018] rk-vcodec ff650000.vpu_service: Looking up vcodec-supply property in node /vpu_service@ff650000 failed [ +0.000018] rk-vcodec ff650000.vpu_service: no regulator for vcodec [ +0.000265] rk-vcodec ff650000.vpu_service: probe device [ +0.000245] rk-vcodec ff650000.vpu_service: drm allocator with mmu enabled [ +0.000558] rk-vcodec ff650000.vpu_service: could not find power_model node [ +0.000012] rk-vcodec ff650000.vpu_service: init success [ +0.000205] rk-vcodec ff660000.rkvdec: Looking up vcodec-supply from device tree [ +0.000013] rk-vcodec ff660000.rkvdec: Looking up vcodec-supply property in node /rkvdec@ff660000 failed [ +0.000018] rk-vcodec ff660000.rkvdec: no regulator for vcodec [ +0.000459] rk-vcodec ff660000.rkvdec: probe device [ +0.000240] rk-vcodec ff660000.rkvdec: drm allocator with mmu enabled [ +0.000388] rk-vcodec ff660000.rkvdec: could not find power_model node [ +0.000010] rk-vcodec ff660000.rkvdec: init success [ +0.001504] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-241330 [ +0.000013] dma-pl330 ff6d0000.dma-controller: DBUFF-32x8bytes Num_Chans-6 Num_Peri-12 Num_Events-12 [ +0.001385] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-241330 [ +0.000012] dma-pl330 ff6e0000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16 [ +0.001101] rockchip-system-monitor rockchip-system-monitor: system monitor probe [ +0.000610] pwm-regulator vdd-log: GPIO lookup for consumer enable [ +0.000011] pwm-regulator vdd-log: using device tree for GPIO lookup [ +0.000012] of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/vdd-log[0]' [ +0.000010] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/vdd-log[0]' [ +0.000010] pwm-regulator vdd-log: using lookup tables for GPIO lookup [ +0.000010] pwm-regulator vdd-log: lookup for GPIO enable failed [ +0.000025] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000011] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000045] vdd_log: 800 <--> 1400 mV at 800 mV [ +0.000151] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000012] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000053] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000011] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000431] Serial: 8250/16550 driver, 5 ports, IRQ sharing disabled [ +0.000691] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 37, base_baud = 1500000) is a 16550A [ +0.000511] ff370000.serial: ttyS4 at MMIO 0xff370000 (irq = 39, base_baud = 1500000) is a 16550A [ +0.001115] [drm] Initialized drm 1.1.0 20060810 [ +0.003923] [drm] Rockchip DRM driver version: v1.0.1 [ +0.000357] rockchip-drm display-subsystem: defer getting devfreq [ +0.000296] rockchip-vop ff900000.vop: missing rockchip,grf property [ +0.000274] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffffff8008c68818) [ +0.000049] rockchip-vop ff8f0000.vop: missing rockchip,grf property [ +0.000190] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffffff8008c68818) [ +0.000174] rockchip-drm display-subsystem: failed to bind ff940000.hdmi (ops 0xffffff8008c5d890): -517 [ +0.000246] rockchip-drm display-subsystem: master bind failed: -517 [ +0.000527] panel-friendlyelec edp-panel: Looking up power-supply from device tree [ +0.000129] panel-friendlyelec edp-panel: GPIO lookup for consumer enable [ +0.000010] panel-friendlyelec edp-panel: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/edp-panel[0]' [ +0.000010] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/edp-panel[0]' [ +0.000010] panel-friendlyelec edp-panel: using lookup tables for GPIO lookup [ +0.000010] panel-friendlyelec edp-panel: lookup for GPIO enable failed [ +0.001709] Unable to detect cache hierarchy for CPU 0 [ +0.000848] brd: module loaded [ +0.005508] loop: module loaded [ +0.000325] lkdtm: No crash points registered, enable through debugfs [ +0.002298] rk_gmac-dwmac fe300000.ethernet: Looking up phy-supply from device tree [ +0.000089] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input). [ +0.000012] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28). [ +0.000011] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11). [ +0.000025] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no). [ +0.000194] rk_gmac-dwmac fe300000.ethernet: cannot get clock clk_mac_speed [ +0.000009] rk_gmac-dwmac fe300000.ethernet: clock input from PHY [ +0.005017] rk_gmac-dwmac fe300000.ethernet: init for RGMII [ +0.000154] stmmac - user ID: 0x10, Synopsys ID: 0x35 [ +0.000008] Ring mode enabled [ +0.000007] DMA HW capability register supported [ +0.000006] Normal descriptors [ +0.000009] RX Checksum Offload Engine supported (type 2) [ +0.000007] TX Checksum insertion supported [ +0.000006] Wake-Up On Lan supported [ +0.000040] Enable RX Mitigation via HW Watchdog Timer [ +0.000111] of_get_named_gpiod_flags: parsed 'snps,reset-gpio' property of node '/ethernet@fe300000[0]' - status (0) [ +0.085469] libphy: stmmac: probed [ +0.000016] eth%d: PHY ID 001cc915 at 0 IRQ POLL (stmmac-0:00) active [ +0.000010] eth%d: PHY ID 001cc915 at 1 IRQ POLL (stmmac-0:01) [ +0.001389] usbcore: registered new interface driver rndis_wlan [ +0.000237] Rockchip WiFi SYS interface (V1.00) ... [ +0.000071] usbcore: registered new interface driver cdc_ether [ +0.000040] usbcore: registered new interface driver rndis_host [ +0.001424] rockchip-dwc3 usb0: failed to get drvdata dwc3 [ +0.000091] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_usb3-supply from device tree [ +0.000014] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_usb3-supply property in node /power-management@ff310000/power-controller failed [ +0.004797] rockchip-dwc3 usb1: fail to get drvdata hcd [ +0.001820] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ +0.000027] ehci-pci: EHCI PCI platform driver [ +0.000063] ehci-platform: EHCI generic platform driver [ +0.003948] ehci-platform fe3c0000.usb: EHCI Host Controller [ +0.000168] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus number 1 [ +0.000108] ehci-platform fe3c0000.usb: irq 30, io mem 0xfe3c0000 [ +0.009421] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00 [ +0.000159] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000012] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000011] usb usb1: Product: EHCI Host Controller [ +0.000009] usb usb1: Manufacturer: Linux 4.4.213-rk3399 ehci_hcd [ +0.000009] usb usb1: SerialNumber: fe3c0000.usb [ +0.000456] hub 1-0:1.0: USB hub found [ +0.000030] hub 1-0:1.0: 1 port detected [ +0.000600] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ +0.000022] ohci-platform: OHCI generic platform driver [ +0.000519] ohci-platform fe3e0000.usb: Generic Platform OHCI controller [ +0.000154] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus number 2 [ +0.000093] ohci-platform fe3e0000.usb: irq 31, io mem 0xfe3e0000 [ +0.058061] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001 [ +0.000012] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000010] usb usb2: Product: Generic Platform OHCI controller [ +0.000009] usb usb2: Manufacturer: Linux 4.4.213-rk3399 ohci_hcd [ +0.000009] usb usb2: SerialNumber: fe3e0000.usb [ +0.000415] hub 2-0:1.0: USB hub found [ +0.000031] hub 2-0:1.0: 1 port detected [ +0.000952] usbcore: registered new interface driver cdc_acm [ +0.000009] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters [ +0.000043] usbcore: registered new interface driver cdc_wdm [ +0.000083] usbcore: registered new interface driver usbserial [ +0.000032] usbcore: registered new interface driver usbserial_generic [ +0.000024] usbserial: USB Serial support registered for generic [ +0.000872] usbcore: registered new interface driver iforce [ +0.000062] usbcore: registered new interface driver xpad [ +0.000200] usbcore: registered new interface driver usbtouchscreen [ +0.000013] <<-GTP-INFO->> GTP driver installing [ +0.000569] sensor_register_slave:mma8452,id=17 [ +0.000023] sensor_register_slave:lis3dh,id=7 [ +0.000017] sensor_register_slave:mma7660,id=18 [ +0.000016] sensor_register_slave:lsm303d,id=22 [ +0.000017] sensor_register_slave:mpu6880_acc,id=24 [ +0.000017] sensor_register_slave:mpu6500_acc,id=25 [ +0.000016] sensor_register_slave:lsm330_acc,id=26 [ +0.000017] sensor_register_slave:akm8975,id=30 [ +0.000017] sensor_register_slave:akm8963,id=31 [ +0.000017] sensor_register_slave:l3g4200d,id=45 [ +0.000016] sensor_register_slave:l3g20d,id=46 [ +0.000016] sensor_register_slave:ewtsa,id=47 [ +0.000017] sensor_register_slave:lsm330_gyro,id=51 [ +0.000016] sensor_register_slave:cm3217,id=53 [ +0.000016] sensor_register_slave:cm3218,id=54 [ +0.000637] i2c /dev entries driver [ +0.001336] fan53555-regulator 0-0040: GPIO lookup for consumer vsel [ +0.000016] fan53555-regulator 0-0040: using device tree for GPIO lookup [ +0.000048] of_get_named_gpiod_flags: parsed 'vsel-gpios' property of node '/i2c@ff3c0000/syr827@40[0]' - status (0) [ +0.000418] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected! [ +0.000025] fan53555-regulator 0-0040: Looking up vin-supply from device tree [ +0.000091] fan53555-reg: supplied by vcc3v3_sys [ +0.001441] vdd_cpu_b: 712 <--> 1500 mV at 1000 mV [ +0.000486] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000018] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000339] fan53555-regulator 0-0041: GPIO lookup for consumer vsel [ +0.000013] fan53555-regulator 0-0041: using device tree for GPIO lookup [ +0.000044] of_get_named_gpiod_flags: parsed 'vsel-gpios' property of node '/i2c@ff3c0000/syr828@41[0]' - status (0) [ +0.000374] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected! [ +0.000021] fan53555-regulator 0-0041: Looking up vin-supply from device tree [ +0.000069] fan53555-reg: supplied by vcc3v3_sys [ +0.001422] vdd_gpu: 712 <--> 1500 mV at 1000 mV [ +0.000444] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000017] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000704] rk808 0-001b: Pmic Chip id: 0x0 [ +0.003645] rk808 0-001b: GPIO lookup for consumer dvs [ +0.000014] rk808 0-001b: using device tree for GPIO lookup [ +0.000016] of_get_named_gpiod_flags: can't parse 'dvs-gpios' property of node '/i2c@ff3c0000/pmic@1b[0]' [ +0.000014] of_get_named_gpiod_flags: can't parse 'dvs-gpio' property of node '/i2c@ff3c0000/pmic@1b[0]' [ +0.000011] rk808 0-001b: using lookup tables for GPIO lookup [ +0.000013] rk808 0-001b: lookup for GPIO dvs failed [ +0.000013] rk808-regulator rk808-regulator: there is no dvs0 gpio [ +0.000012] rk808 0-001b: GPIO lookup for consumer dvs [ +0.000011] rk808 0-001b: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'dvs-gpios' property of node '/i2c@ff3c0000/pmic@1b[1]' [ +0.000013] of_get_named_gpiod_flags: can't parse 'dvs-gpio' property of node '/i2c@ff3c0000/pmic@1b[1]' [ +0.000012] rk808 0-001b: using lookup tables for GPIO lookup [ +0.000011] rk808 0-001b: lookup for GPIO dvs failed [ +0.000012] rk808-regulator rk808-regulator: there is no dvs1 gpio [ +0.000053] rk808 0-001b: Looking up vcc1-supply from device tree [ +0.000094] DCDC_REG1: supplied by vcc3v3_sys [ +0.000530] vdd_center: 750 <--> 1350 mV at 900 mV [ +0.000290] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000018] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000058] rk808 0-001b: Looking up vcc2-supply from device tree [ +0.000075] DCDC_REG2: supplied by vcc3v3_sys [ +0.000353] vdd_cpu_l: 750 <--> 1350 mV at 900 mV [ +0.000271] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000017] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000056] rk808 0-001b: Looking up vcc3-supply from device tree [ +0.000063] DCDC_REG3: supplied by vcc3v3_sys [ +0.000048] vcc_ddr: at 3300 mV [ +0.000261] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000064] rk808 0-001b: Looking up vcc4-supply from device tree [ +0.000057] DCDC_REG4: supplied by vcc3v3_sys [ +0.000199] vcc_1v8: 1800 mV [ +0.000290] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000066] rk808 0-001b: Looking up vcc6-supply from device tree [ +0.000057] LDO_REG1: supplied by vcc3v3_sys [ +0.000869] vcc1v8_dvp: 1800 mV [ +0.000292] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000071] rk808 0-001b: Looking up vcc6-supply from device tree [ +0.000057] LDO_REG2: supplied by vcc3v3_sys [ +0.000714] vcc3v0_tp: 3000 mV [ +0.000292] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000072] rk808 0-001b: Looking up vcc7-supply from device tree [ +0.000058] LDO_REG3: supplied by vcc3v3_sys [ +0.000715] vcc1v8_pmu: 1800 mV [ +0.000292] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000074] rk808 0-001b: Looking up vcc9-supply from device tree [ +0.000058] LDO_REG4: supplied by vcc3v3_sys [ +0.000195] vccio_sd: Bringing 3300000uV into 3000000-3000000uV [ +0.000134] vccio_sd: ramp_delay not set [ +0.000541] vccio_sd: 1800 <--> 3000 mV at 3000 mV [ +0.000267] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000081] rk808 0-001b: Looking up vcc9-supply from device tree [ +0.000059] LDO_REG5: supplied by vcc3v3_sys [ +0.000749] vcca3v0_codec: 3000 mV [ +0.000270] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000080] rk808 0-001b: Looking up vcc10-supply from device tree [ +0.000058] LDO_REG6: supplied by vcc3v3_sys [ +0.000712] vcc_1v5: 1500 mV [ +0.000299] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000086] rk808 0-001b: Looking up vcc7-supply from device tree [ +0.000058] LDO_REG7: supplied by vcc3v3_sys [ +0.000714] vcca1v8_codec: 1800 mV [ +0.000297] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000084] rk808 0-001b: Looking up vcc11-supply from device tree [ +0.000057] LDO_REG8: supplied by vcc3v3_sys [ +0.000714] vcc_3v0: 3000 mV [ +0.000298] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000116] rk808 0-001b: Looking up vcc8-supply from device tree [ +0.000059] SWITCH_REG1: supplied by vcc3v3_sys [ +0.000049] vcc3v3_s3: at 3300 mV [ +0.000268] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000015] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.000083] rk808 0-001b: Looking up vcc12-supply from device tree [ +0.000058] SWITCH_REG2: supplied by vcc3v3_sys [ +0.000046] vcc3v3_s0: at 3300 mV [ +0.000265] pwm-regulator vdd-log: Looking up pwm-supply from device tree [ +0.000016] pwm-regulator vdd-log: Looking up pwm-supply property in node /vdd-log failed [ +0.003567] rk808-rtc rk808-rtc: rtc core: registered rk808-rtc as rtc0 [ +0.000486] rk3x-i2c ff3c0000.i2c: Initialized RK3xxx I2C bus at ffffff80096fc000 [ +0.001203] rk3x-i2c ff110000.i2c: Initialized RK3xxx I2C bus at ffffff80096fe000 [ +0.000892] rk3x-i2c ff120000.i2c: Initialized RK3xxx I2C bus at ffffff80097c2000 [ +0.000617] rk3x-i2c ff160000.i2c: Initialized RK3xxx I2C bus at ffffff80097c4000 [ +0.001156] fusb302 4-0022: GPIO lookup for consumer int-n [ +0.000013] fusb302 4-0022: using device tree for GPIO lookup [ +0.000048] of_get_named_gpiod_flags: parsed 'int-n-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' - status (0) [ +0.000036] fusb302 4-0022: GPIO lookup for consumer vbus-5v [ +0.000013] fusb302 4-0022: using device tree for GPIO lookup [ +0.000041] of_get_named_gpiod_flags: parsed 'vbus-5v-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' - status (0) [ +0.000040] fusb302 4-0022: GPIO lookup for consumer vbus-other [ +0.000012] fusb302 4-0022: using device tree for GPIO lookup [ +0.000014] of_get_named_gpiod_flags: can't parse 'vbus-other-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000013] of_get_named_gpiod_flags: can't parse 'vbus-other-gpio' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000012] fusb302 4-0022: using lookup tables for GPIO lookup [ +0.000013] fusb302 4-0022: lookup for GPIO vbus-other failed [ +0.000012] fusb302 4-0022: GPIO lookup for consumer discharge [ +0.000011] fusb302 4-0022: using device tree for GPIO lookup [ +0.000013] of_get_named_gpiod_flags: can't parse 'discharge-gpios' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000013] of_get_named_gpiod_flags: can't parse 'discharge-gpio' property of node '/i2c@ff3d0000/fusb30x@22[0]' [ +0.000011] fusb302 4-0022: using lookup tables for GPIO lookup [ +0.000012] fusb302 4-0022: lookup for GPIO discharge failed [ +0.000216] fusb302 4-0022: Can't get property of role, set role to default DRP [ +0.001899] fusb302 4-0022: port 0 probe success with role ROLE_MODE_DRP, try_role ROLE_MODE_NONE [ +0.000214] input: Typec_Headphone as /devices/platform/ff3d0000.i2c/i2c-4/4-0022/input/input0 [ +0.000847] rk3x-i2c ff3d0000.i2c: Initialized RK3xxx I2C bus at ffffff80097c6000 [ +0.002615] usbcore: registered new interface driver uvcvideo [ +0.000010] USB Video Class driver (1.1.1) [ +0.000800] rockchip-iodomain ff320000.syscon:io-domains: Looking up pmu1830-supply from device tree [ +0.000400] rockchip-iodomain ff770000.syscon:io-domains: Looking up bt656-supply from device tree [ +0.000089] rockchip-iodomain ff770000.syscon:io-domains: Looking up audio-supply from device tree [ +0.000078] rockchip-iodomain ff770000.syscon:io-domains: Looking up sdmmc-supply from device tree [ +0.000074] rockchip-iodomain ff770000.syscon:io-domains: Looking up gpio1830-supply from device tree [ +0.001212] Boot mode: normal [ +0.001602] rk_tsadcv2_temp_to_code: Invalid conversion table: code=1023, temperature=2147483647 [ +0.000225] rockchip-thermal ff260000.tsadc: tsadc is probed successfully! [ +0.000990] dw_wdt ff848000.watchdog: Should better to setup a 'resets' property in dt, that must been named with reset [ +0.000576] device-mapper: uevent: version 1.0.3 [ +0.000426] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com [ +0.000780] cpu cpu0: bin=1 [ +0.000083] cpu cpu0: leakage=21 [ +0.000042] cpu cpu0: Looking up cpu-supply from device tree [ +0.012691] cpu cpu0: temp=60625, pvtm=148152 (146898 + 1254) [ +0.000413] cpu cpu0: pvtm-volt-sel=1 [ +0.000090] cpu cpu0: bin-scale=34 [ +0.000469] cpu cpu4: bin=1 [ +0.000153] cpu cpu4: leakage=40 [ +0.000040] cpu cpu4: Looking up cpu-supply from device tree [ +0.012034] cpu cpu4: temp=61250, pvtm=150557 (149857 + 700) [ +0.000144] cpu cpu4: pvtm-volt-sel=1 [ +0.000074] cpu cpu4: bin-scale=17 [ +0.000397] cpu cpu0: Looking up cpu-supply from device tree [ +0.000420] cpu cpu0: Looking up cpu-supply from device tree [ +0.000925] cpu cpu0: avs=0 [ +0.000050] cpu cpu0: scale_rate=1416000000 [ +0.000269] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ +0.002450] cpu cpu0: failed to find power_model node [ +0.000360] cpu cpu4: Looking up cpu-supply from device tree [ +0.000704] cpu cpu4: avs=0 [ +0.000024] cpu cpu4: scale_rate=1800000000 [ +0.000180] cpu cpu4: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ +0.001840] cpu cpu4: failed to find power_model node [ +0.000813] sdhci: Secure Digital Host Controller Interface driver [ +0.000006] sdhci: Copyright(c) Pierre Ossman [ +0.000009] Synopsys Designware Multimedia Card Interface Driver [ +0.001046] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode. [ +0.000037] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller. [ +0.000013] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a [ +0.000051] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit host data width,256 deep fifo [ +0.000019] dwmmc_rockchip fe310000.dwmmc: 'clock-freq-min-max' property was deprecated. [ +0.000013] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply from device tree [ +0.000009] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe310000 failed [ +0.000033] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply from device tree [ +0.000009] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe310000 failed [ +0.000014] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found [ +0.000007] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found [ +0.000016] dwmmc_rockchip fe310000.dwmmc: GPIO lookup for consumer wp [ +0.000007] dwmmc_rockchip fe310000.dwmmc: using device tree for GPIO lookup [ +0.000010] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe310000[0]' [ +0.000008] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe310000[0]' [ +0.000007] dwmmc_rockchip fe310000.dwmmc: using lookup tables for GPIO lookup [ +0.000009] dwmmc_rockchip fe310000.dwmmc: lookup for GPIO wp failed [ +0.000236] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_sdioaudio-supply from device tree [ +0.000011] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_sdioaudio-supply property in node /power-management@ff310000/power-controller failed [ +0.000592] dwmmc_rockchip fe320000.dwmmc: IDMAC supports 32-bit address mode. [ +0.000024] dwmmc_rockchip fe320000.dwmmc: Using internal DMA controller. [ +0.000011] dwmmc_rockchip fe320000.dwmmc: Version ID is 270a [ +0.000035] dwmmc_rockchip fe320000.dwmmc: DW MMC controller at irq 26,32 bit host data width,256 deep fifo [ +0.000017] dwmmc_rockchip fe320000.dwmmc: 'clock-freq-min-max' property was deprecated. [ +0.000008] dwmmc_rockchip fe320000.dwmmc: Looking up vmmc-supply from device tree [ +0.000105] dwmmc_rockchip fe320000.dwmmc: Looking up vqmmc-supply from device tree [ +0.000069] dwmmc_rockchip fe320000.dwmmc: GPIO lookup for consumer cd [ +0.000008] dwmmc_rockchip fe320000.dwmmc: using device tree for GPIO lookup [ +0.000009] of_get_named_gpiod_flags: can't parse 'cd-gpios' property of node '/dwmmc@fe320000[0]' [ +0.000008] of_get_named_gpiod_flags: can't parse 'cd-gpio' property of node '/dwmmc@fe320000[0]' [ +0.000007] dwmmc_rockchip fe320000.dwmmc: using lookup tables for GPIO lookup [ +0.000008] dwmmc_rockchip fe320000.dwmmc: lookup for GPIO cd failed [ +0.000009] dwmmc_rockchip fe320000.dwmmc: GPIO lookup for consumer wp [ +0.000007] dwmmc_rockchip fe320000.dwmmc: using device tree for GPIO lookup [ +0.000008] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe320000[0]' [ +0.000008] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe320000[0]' [ +0.000007] dwmmc_rockchip fe320000.dwmmc: using lookup tables for GPIO lookup [ +0.000007] dwmmc_rockchip fe320000.dwmmc: lookup for GPIO wp failed [ +0.000161] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.000011] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.012559] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ +0.016451] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.000025] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000 done [ +0.000134] dwmmc_rockchip fe320000.dwmmc: 1 slots initialized [ +0.000679] sdhci-pltfm: SDHCI platform and OF driver helper [ +0.000981] sdhci-arasan fe330000.sdhci: GPIO lookup for consumer wp [ +0.000019] sdhci-arasan fe330000.sdhci: using device tree for GPIO lookup [ +0.000020] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/sdhci@fe330000[0]' [ +0.000019] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/sdhci@fe330000[0]' [ +0.000016] sdhci-arasan fe330000.sdhci: using lookup tables for GPIO lookup [ +0.000018] sdhci-arasan fe330000.sdhci: lookup for GPIO wp failed [ +0.001164] sdhci-arasan fe330000.sdhci: Looking up vmmc-supply from device tree [ +0.000022] sdhci-arasan fe330000.sdhci: Looking up vmmc-supply property in node /sdhci@fe330000 failed [ +0.000051] sdhci-arasan fe330000.sdhci: Looking up vqmmc-supply from device tree [ +0.000019] sdhci-arasan fe330000.sdhci: Looking up vqmmc-supply property in node /sdhci@fe330000 failed [ +0.000033] sdhci-arasan fe330000.sdhci: No vmmc regulator found [ +0.000014] sdhci-arasan fe330000.sdhci: No vqmmc regulator found [ +0.032486] mmc1: SDHCI controller on fe330000.sdhci [fe330000.sdhci] using ADMA [ +0.003796] of_get_named_gpiod_flags: parsed 'gpios' property of node '/gpio-leds/led@1[0]' - status (0) [ +0.000572] ledtrig-cpu: registered to indicate activity on CPUs [ +0.000125] hidraw: raw HID events driver (C) Jiri Kosina [ +0.000727] usbcore: registered new interface driver usbhid [ +0.000017] usbhid: USB HID core driver [ +0.000505] ashmem: initialized [ +0.001608] rockchip-dmc dmc: unable to get devfreq-event device : dfi [ +0.002094] rockchip-saradc ff100000.saradc: Looking up vref-supply from device tree [ +0.022817] Initializing XFRM netlink socket [ +0.001000] NET: Registered protocol family 10 [ +0.001906] lib80211: common routines for IEEE802.11 drivers [ +0.000029] lib80211_crypt: registered algorithm 'NULL' [ +0.000031] lib80211_crypt: registered algorithm 'WEP' [ +0.000024] lib80211_crypt: registered algorithm 'CCMP' [ +0.000023] lib80211_crypt: registered algorithm 'TKIP' [ +0.000020] [WLAN_RFKILL]: Enter rfkill_wlan_init [ +0.000724] [WLAN_RFKILL]: Enter rfkill_wlan_probe [ +0.000108] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6354 [ +0.000013] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control. [ +0.000013] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio. [ +0.000020] of_get_named_gpiod_flags: can't parse 'WIFI,poweren_gpio' property of node '/wireless-wlan[0]' [ +0.000017] of_get_named_gpiod_flags: can't parse 'WIFI,vbat_gpio' property of node '/wireless-wlan[0]' [ +0.000016] of_get_named_gpiod_flags: can't parse 'WIFI,reset_gpio' property of node '/wireless-wlan[0]' [ +0.000088] of_get_named_gpiod_flags: parsed 'WIFI,host_wake_irq' property of node '/wireless-wlan[0]' - status (0) [ +0.000014] [WLAN_RFKILL]: wlan_platdata_parse_dt: get property: WIFI,host_wake_irq = 3, flags = 0. [ +0.000021] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found ! [ +0.000013] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio [ +0.000016] [WLAN_RFKILL]: Exit rfkill_wlan_probe [ +0.000098] [BT_RFKILL]: Enter rfkill_rk_init [ +0.000786] of_get_named_gpiod_flags: parsed 'uart_rts_gpios' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000016] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 83. [ +0.000021] of_get_named_gpiod_flags: can't parse 'BT,power_gpio' property of node '/wireless-bluetooth[0]' [ +0.000052] of_get_named_gpiod_flags: parsed 'BT,reset_gpio' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000014] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 9. [ +0.000049] of_get_named_gpiod_flags: parsed 'BT,wake_gpio' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000014] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 90. [ +0.000049] of_get_named_gpiod_flags: parsed 'BT,wake_host_irq' property of node '/wireless-bluetooth[0]' - status (0) [ +0.000013] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 4. [ +0.001347] [BT_RFKILL]: Request irq for bt wakeup host [ +0.000105] [BT_RFKILL]: ** disable irq [ +0.000237] [BT_RFKILL]: bt shut off power [ +0.021104] [BT_RFKILL]: bt_default device registered. [ +0.000131] Key type dns_resolver registered [ +0.000413] sensor_register_slave:mpu6880_gyro,id=50 [ +0.000639] ov4689 1-0036: driver version: 00.01.01 [ +0.000021] ov4689 1-0036: could not get module information! [ +0.000058] ov4689 1-0036: GPIO lookup for consumer reset [ +0.000012] ov4689 1-0036: using device tree for GPIO lookup [ +0.000044] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff110000/ov4689@36[0]' - status (0) [ +0.000040] ov4689 1-0036: GPIO lookup for consumer pwdn [ +0.000011] ov4689 1-0036: using device tree for GPIO lookup [ +0.000039] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff110000/ov4689@36[0]' - status (0) [ +0.000296] ov4689 1-0036: Looking up avdd-supply from device tree [ +0.000016] ov4689 1-0036: Looking up avdd-supply property in node /i2c@ff110000/ov4689@36 failed [ +0.000041] 1-0036 supply avdd not found, using dummy regulator [ +0.000083] ov4689 1-0036: Looking up dovdd-supply from device tree [ +0.000015] ov4689 1-0036: Looking up dovdd-supply property in node /i2c@ff110000/ov4689@36 failed [ +0.000021] 1-0036 supply dovdd not found, using dummy regulator [ +0.000049] ov4689 1-0036: Looking up dvdd-supply from device tree [ +0.000015] ov4689 1-0036: Looking up dvdd-supply property in node /i2c@ff110000/ov4689@36 failed [ +0.000021] 1-0036 supply dvdd not found, using dummy regulator [ +0.002749] ov4689 1-0036: Unexpected sensor id(000000), ret(-5) [ +0.000810] ov4689 2-0036: driver version: 00.01.01 [ +0.000020] ov4689 2-0036: could not get module information! [ +0.000045] ov4689 2-0036: GPIO lookup for consumer reset [ +0.000012] ov4689 2-0036: using device tree for GPIO lookup [ +0.000043] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff120000/ov4689@36[0]' - status (0) [ +0.000044] ov4689 2-0036: GPIO lookup for consumer pwdn [ +0.000012] ov4689 2-0036: using device tree for GPIO lookup [ +0.000038] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff120000/ov4689@36[0]' - status (0) [ +0.000251] ov4689 2-0036: Looking up avdd-supply from device tree [ +0.000015] ov4689 2-0036: Looking up avdd-supply property in node /i2c@ff120000/ov4689@36 failed [ +0.000041] 2-0036 supply avdd not found, using dummy regulator [ +0.000111] ov4689 2-0036: Looking up dovdd-supply from device tree [ +0.000015] ov4689 2-0036: Looking up dovdd-supply property in node /i2c@ff120000/ov4689@36 failed [ +0.000022] 2-0036 supply dovdd not found, using dummy regulator [ +0.000054] ov4689 2-0036: Looking up dvdd-supply from device tree [ +0.000014] ov4689 2-0036: Looking up dvdd-supply property in node /i2c@ff120000/ov4689@36 failed [ +0.000021] 2-0036 supply dvdd not found, using dummy regulator [ +0.002645] ov4689 2-0036: Unexpected sensor id(000000), ret(-5) [ +0.000411] Error: Driver 'ov7750' is already registered, aborting... [ +0.000022] Error: Driver 'ov8858' is already registered, aborting... [ +0.000564] ov13850 1-0010: driver version: 00.01.01 [ +0.000020] ov13850 1-0010: could not get module information! [ +0.000045] ov13850 1-0010: GPIO lookup for consumer reset [ +0.000012] ov13850 1-0010: using device tree for GPIO lookup [ +0.000044] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff110000/ov13850@10[0]' - status (0) [ +0.000043] ov13850 1-0010: GPIO lookup for consumer pwdn [ +0.000012] ov13850 1-0010: using device tree for GPIO lookup [ +0.000038] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff110000/ov13850@10[0]' - status (0) [ +0.000035] ov13850 1-0010: Looking up avdd-supply from device tree [ +0.000014] ov13850 1-0010: Looking up avdd-supply property in node /i2c@ff110000/ov13850@10 failed [ +0.000041] 1-0010 supply avdd not found, using dummy regulator [ +0.000074] ov13850 1-0010: Looking up dovdd-supply from device tree [ +0.000014] ov13850 1-0010: Looking up dovdd-supply property in node /i2c@ff110000/ov13850@10 failed [ +0.000022] 1-0010 supply dovdd not found, using dummy regulator [ +0.000061] ov13850 1-0010: Looking up dvdd-supply from device tree [ +0.000015] ov13850 1-0010: Looking up dvdd-supply property in node /i2c@ff110000/ov13850@10 failed [ +0.000022] 1-0010 supply dvdd not found, using dummy regulator [ +0.002023] ov13850 1-0010: Unexpected sensor id(000000), ret(-5) [ +0.000468] ov13850 2-0010: driver version: 00.01.01 [ +0.000019] ov13850 2-0010: could not get module information! [ +0.000039] ov13850 2-0010: GPIO lookup for consumer reset [ +0.000012] ov13850 2-0010: using device tree for GPIO lookup [ +0.000040] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/i2c@ff120000/ov13850@10[0]' - status (0) [ +0.000038] ov13850 2-0010: GPIO lookup for consumer pwdn [ +0.000012] ov13850 2-0010: using device tree for GPIO lookup [ +0.000038] of_get_named_gpiod_flags: parsed 'pwdn-gpios' property of node '/i2c@ff120000/ov13850@10[0]' - status (0) [ +0.000033] ov13850 2-0010: Looking up avdd-supply from device tree [ +0.000015] ov13850 2-0010: Looking up avdd-supply property in node /i2c@ff120000/ov13850@10 failed [ +0.000027] 2-0010 supply avdd not found, using dummy regulator [ +0.000058] ov13850 2-0010: Looking up dovdd-supply from device tree [ +0.000014] ov13850 2-0010: Looking up dovdd-supply property in node /i2c@ff120000/ov13850@10 failed [ +0.000022] 2-0010 supply dovdd not found, using dummy regulator [ +0.000049] ov13850 2-0010: Looking up dvdd-supply from device tree [ +0.000015] ov13850 2-0010: Looking up dvdd-supply property in node /i2c@ff120000/ov13850@10 failed [ +0.000021] 2-0010 supply dvdd not found, using dummy regulator [ +0.003150] ov13850 2-0010: Unexpected sensor id(000000), ret(-5) [ +0.000492] Error: Driver 'sc031gs' is already registered, aborting... [ +0.001323] Registered cp15_barrier emulation handler [ +0.000140] Registered setend emulation handler [ +0.002711] registered taskstats version 1 [ +0.000038] Loading compiled-in X.509 certificates [ +0.003555] Btrfs loaded, integrity-checker=on [ +0.000107] BTRFS: selftest: Running btrfs free space cache tests [ +0.000028] BTRFS: selftest: Running extent only tests [ +0.000024] BTRFS: selftest: Running bitmap only tests [ +0.000026] BTRFS: selftest: Running bitmap and extent tests [ +0.000030] BTRFS: selftest: Running space stealing from bitmap to extent [ +0.001011] BTRFS: selftest: Free space cache tests finished [ +0.000008] BTRFS: selftest: Running extent buffer operation tests [ +0.000007] BTRFS: selftest: Running btrfs_split_item tests [ +0.000053] BTRFS: selftest: Running find delalloc tests [ +0.001457] mmc1: new HS200 MMC card at address 0001 [ +0.001533] mmcblk1: mmc1:0001 AJTD4R 14.6 GiB [ +0.001983] mmcblk1boot0: mmc1:0001 AJTD4R partition 1 4.00 MiB [ +0.001046] mmcblk1boot1: mmc1:0001 AJTD4R partition 2 4.00 MiB [ +0.001123] mmcblk1rpmb: mmc1:0001 AJTD4R partition 3 4.00 MiB [ +0.002187] mmcblk1: p1 p2 p3 p4 [ +0.340596] BTRFS: selftest: Running btrfs_get_extent tests [ +0.000204] BTRFS: selftest: Running hole first btrfs_get_extent test [ +0.000033] BTRFS: selftest: Running outstanding_extents tests [ +0.000050] BTRFS: selftest: Running qgroup tests [ +0.000007] BTRFS: selftest: Qgroup basic add [ +0.000053] BTRFS: selftest: Qgroup multiple refs test [ +0.048580] Key type encrypted registered [ +0.001210] rga2: Driver loaded successfully ver:3.02 [ +0.000510] rga2: Module initialized. [ +0.000451] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_rga-supply from device tree [ +0.000037] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_rga-supply property in node /power-management@ff310000/power-controller failed [ +0.000511] phy phy-ff770000.syscon:usb2-phy@e450.6: Looking up phy-supply from device tree [ +0.001091] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up phy-supply from device tree [ +0.000018] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up phy-supply property in node /syscon@ff770000/usb2-phy@e450/otg-port failed [ +0.000124] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up vbus-supply from device tree [ +0.000010] phy phy-ff770000.syscon:usb2-phy@e450.7: Looking up vbus-supply property in node /syscon@ff770000/usb2-phy@e450/otg-port failed [ +0.000020] phy phy-ff770000.syscon:usb2-phy@e450.7: Failed to get VBUS supply regulator [ +0.001831] phy phy-ff7c0000.phy.8: Looking up phy-supply from device tree [ +0.000012] phy phy-ff7c0000.phy.8: Looking up phy-supply property in node /phy@ff7c0000/dp-port failed [ +0.000092] phy phy-ff7c0000.phy.9: Looking up phy-supply from device tree [ +0.000010] phy phy-ff7c0000.phy.9: Looking up phy-supply property in node /phy@ff7c0000/usb3-port failed [ +0.000203] [drm] Rockchip DRM driver version: v1.0.1 [ +0.000321] rockchip-drm display-subsystem: defer getting devfreq [ +0.000314] rockchip-vop ff900000.vop: missing rockchip,grf property [ +0.000216] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffffff8008c68818) [ +0.000043] rockchip-vop ff8f0000.vop: missing rockchip,grf property [ +0.000145] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffffff8008c68818) [ +0.000229] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY) [ +0.003137] rockchip-drm display-subsystem: bound ff940000.hdmi (ops 0xffffff8008c5d890) [ +0.000091] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ +0.000018] [drm] No driver support for vblank timestamp query. [ +0.000620] rockchip-drm display-subsystem: failed to parse loader memory [ +0.000073] rockchip-drm display-subsystem: No connectors reported connected with modes [ +0.000095] [drm] Cannot find any crtc or sizes - going 1024x768 [ +0.013862] Console: switching to colour frame buffer device 128x48 [ +0.005016] rockchip-drm display-subsystem: fb0: frame buffer device [ +0.006449] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller [ +0.000625] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 3 [ +0.000274] xhci-hcd xhci-hcd.7.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x06030010 [ +0.000109] xhci-hcd xhci-hcd.7.auto: irq 231, io mem 0xfe800000 [ +0.000573] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000030] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000023] usb usb3: Product: xHCI Host Controller [ +0.000023] usb usb3: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000023] usb usb3: SerialNumber: xhci-hcd.7.auto [ +0.001550] hub 3-0:1.0: USB hub found [ +0.000046] hub 3-0:1.0: 1 port detected [ +0.000387] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller [ +0.000363] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 4 [ +0.000093] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ +0.000140] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003 [ +0.000014] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000013] usb usb4: Product: xHCI Host Controller [ +0.000011] usb usb4: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000012] usb usb4: SerialNumber: xhci-hcd.7.auto [ +0.000671] hub 4-0:1.0: USB hub found [ +0.000039] hub 4-0:1.0: 1 port detected [ +0.002435] xhci-hcd xhci-hcd.7.auto: remove, state 1 [ +0.000034] usb usb4: USB disconnect, device number 1 [ +0.004728] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ +0.011767] xhci-hcd xhci-hcd.7.auto: Host not halted after 16000 microseconds. [ +0.000011] xhci-hcd xhci-hcd.7.auto: Host controller not halted, aborting reset. [ +0.000059] xhci-hcd xhci-hcd.7.auto: USB bus 4 deregistered [ +0.000067] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 5 [ +0.000158] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x06030010 [ +0.000041] xhci-hcd xhci-hcd.8.auto: irq 232, io mem 0xfe900000 [ +0.000193] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000010] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000008] usb usb5: Product: xHCI Host Controller [ +0.000008] usb usb5: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000007] usb usb5: SerialNumber: xhci-hcd.8.auto [ +0.000375] hub 5-0:1.0: USB hub found [ +0.000026] hub 5-0:1.0: 1 port detected [ +0.000221] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller [ +0.000550] xhci-hcd xhci-hcd.7.auto: remove, state 1 [ +0.000040] usb usb3: USB disconnect, device number 1 [ +0.000075] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 6 [ +0.001045] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ +0.000061] xhci-hcd xhci-hcd.7.auto: USB bus 3 deregistered [ +0.000116] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003 [ +0.000015] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000012] usb usb6: Product: xHCI Host Controller [ +0.000013] usb usb6: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd [ +0.000011] usb usb6: SerialNumber: xhci-hcd.8.auto [ +0.000799] hub 6-0:1.0: USB hub found [ +0.000042] hub 6-0:1.0: 1 port detected [ +0.005069] ehci-platform fe380000.usb: EHCI Host Controller [ +0.000386] ehci-platform fe380000.usb: new USB bus registered, assigned bus number 3 [ +0.000153] ehci-platform fe380000.usb: irq 28, io mem 0xfe380000 [ +0.008751] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00 [ +0.000325] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002 [ +0.000020] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000017] usb usb3: Product: EHCI Host Controller [ +0.000016] usb usb3: Manufacturer: Linux 4.4.213-rk3399 ehci_hcd [ +0.000016] usb usb3: SerialNumber: fe380000.usb [ +0.000973] hub 3-0:1.0: USB hub found [ +0.000059] hub 3-0:1.0: 1 port detected [ +0.001056] vendor storage:20190527 ret = 0 [ +0.000417] ohci-platform fe3a0000.usb: Generic Platform OHCI controller [ +0.000462] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus number 4 [ +0.000242] ohci-platform fe3a0000.usb: irq 29, io mem 0xfe3a0000 [ +0.061031] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001 [ +0.000041] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ +0.000025] usb usb4: Product: Generic Platform OHCI controller [ +0.000024] usb usb4: Manufacturer: Linux 4.4.213-rk3399 ohci_hcd [ +0.000023] usb usb4: SerialNumber: fe3a0000.usb [ +0.001667] hub 4-0:1.0: USB hub found [ +0.000119] hub 4-0:1.0: 1 port detected [ +0.001850] input: adc-keys as /devices/platform/adc-keys/input/input1 [ +0.003226] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode. [ +0.000084] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller. [ +0.000034] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a [ +0.000067] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit host data width,256 deep fifo [ +0.000060] dwmmc_rockchip fe310000.dwmmc: 'clock-freq-min-max' property was deprecated. [ +0.000032] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply from device tree [ +0.000030] dwmmc_rockchip fe310000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe310000 failed [ +0.000073] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply from device tree [ +0.000029] dwmmc_rockchip fe310000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe310000 failed [ +0.000047] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found [ +0.000021] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found [ +0.000041] dwmmc_rockchip fe310000.dwmmc: GPIO lookup for consumer wp [ +0.000023] dwmmc_rockchip fe310000.dwmmc: using device tree for GPIO lookup [ +0.000029] of_get_named_gpiod_flags: can't parse 'wp-gpios' property of node '/dwmmc@fe310000[0]' [ +0.000027] of_get_named_gpiod_flags: can't parse 'wp-gpio' property of node '/dwmmc@fe310000[0]' [ +0.000023] dwmmc_rockchip fe310000.dwmmc: using lookup tables for GPIO lookup [ +0.000025] dwmmc_rockchip fe310000.dwmmc: lookup for GPIO wp failed [ +0.000545] platform sdio-pwrseq: GPIO lookup for consumer reset [ +0.000024] platform sdio-pwrseq: using device tree for GPIO lookup [ +0.000077] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/sdio-pwrseq[0]' - status (0) [ +0.000077] dwmmc_rockchip fe310000.dwmmc: allocated mmc-pwrseq [ +0.015007] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ +0.015875] dwmmc_rockchip fe310000.dwmmc: 1 slots initialized [ +0.000742] rockchip-dmc dmc: Looking up center-supply from device tree [ +0.000386] rockchip-dmc dmc: Failed to get leakage [ +0.000050] rockchip-dmc dmc: Looking up center-supply from device tree [ +0.000032] vdd_center: could not add device link dmc err -17 [ +0.000014] vdd_center: Failed to create debugfs directory [ +0.000013] rockchip-dmc dmc: Failed to get pvtm [ +0.000539] rockchip-dmc dmc: avs=0 [ +0.000044] rockchip-dmc dmc: failed to get vop pn to msch rl [ +0.001285] rockchip-dmc dmc: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 [ +0.000031] rockchip-dmc dmc: could not find power_model node [ +0.004180] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/rt5651-sound[0]' [ +0.000016] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/rt5651-sound[0]' [ +0.018873] asoc-simple-card rt5651-sound: rt5651-aif1 <-> ff890000.i2s mapping ok [ +0.000100] asoc-simple-card rt5651-sound: ASoC: no source widget found for MICBIAS1 [ +0.000019] asoc-simple-card rt5651-sound: ASoC: Failed to add route MICBIAS1 -> direct -> Mic Jack [ +0.000333] rt5651 1-001a: ASoC: mux INL1 Mux has no paths [ +0.000029] rt5651 1-001a: ASoC: mux INR1 Mux has no paths [ +0.000025] rt5651 1-001a: ASoC: mux INL2 Mux has no paths [ +0.000025] rt5651 1-001a: ASoC: mux INR2 Mux has no paths [ +0.007796] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/hdmi-sound[0]' [ +0.000033] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/hdmi-sound[0]' [ +0.000951] asoc-simple-card hdmi-sound: i2s-hifi <-> ff8a0000.i2s mapping ok [ +0.003935] of_get_named_gpiod_flags: can't parse 'simple-audio-card,hp-det-gpio' property of node '/spdif-sound[0]' [ +0.000033] of_get_named_gpiod_flags: can't parse 'simple-audio-card,mic-det-gpio' property of node '/spdif-sound[0]' [ +0.000588] rockchip-spdif ff870000.spdif: Missing dma channel for stream: 0 [ +0.000036] rockchip-spdif ff870000.spdif: ASoC: pcm constructor failed: -22 [ +0.000019] asoc-simple-card spdif-sound: ASoC: can't create pcm ff870000.spdif-dit-hifi :-22 [ +0.000016] asoc-simple-card spdif-sound: ASoC: failed to instantiate card -22 [ +0.000316] asoc-simple-card: probe of spdif-sound failed with error -22 [ +0.000381] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_edp-supply from device tree [ +0.000026] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_edp-supply property in node /power-management@ff310000/power-controller failed [ +0.000103] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_gpu-supply from device tree [ +0.000022] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_gpu-supply property in node /power-management@ff310000/power-controller failed [ +0.000079] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_iep-supply from device tree [ +0.000022] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_iep-supply property in node /power-management@ff310000/power-controller failed [ +0.000256] dhd_module_init: in Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(20191120-1) [ +0.000016] ======== dhd_wlan_init_plat_data ======== [ +0.000009] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter [ +0.000012] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=72, oob_irq_flags=0x414 [ +0.000007] dhd_wlan_init_gpio: WL_REG_ON=-1 [ +0.000007] dhd_wifi_platform_load: Enter [ +0.000007] Power-up adapter 'DHD generic adapter' [ +0.000051] wifi_platform_set_power = 1 [ +0.000006] ======== PULL WL_REG_ON(-1) HIGH! ======== [ +0.000007] [WLAN_RFKILL]: rockchip_wifi_power: 1 [ +0.000008] [WLAN_RFKILL]: wifi turn on power. -1 [ +0.000818] of_get_named_gpiod_flags: parsed 'gpios' property of node '/gpio-keys/button@0[0]' - status (0) [ +0.000089] gpio-5 (GPIO Key Power): gpiod_set_debounce: missing set() or set_debounce() operations [ +0.000429] input: gpio-keys as /devices/platform/gpio-keys/input/input2 [ +0.008953] mmc2: queuing unknown CIS tuple 0x80 (2 bytes) [ +0.001605] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.001603] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.002862] mmc2: queuing unknown CIS tuple 0x80 (7 bytes) [ +0.003401] mmc2: queuing unknown CIS tuple 0x81 (9 bytes) [ +0.052873] mmc_host mmc2: Bus speed (slot 0) = 150000000Hz (slot req 150000000Hz, actual 150000000HZ div = 0) [ +0.028758] rk808-rtc rk808-rtc: setting system clock to 2013-01-18 08:50:11 UTC (1358499011) [ +0.000026] of_cfs_init [ +0.000109] of_cfs_init: OK [ +0.029945] PM: Hibernation image not present or could not be loaded. [ +0.000055] vcc_sd: disabling [ +0.000014] vcc_lcd: disabling [ +0.000108] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp1-supply from device tree [ +0.000023] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp1-supply property in node /power-management@ff310000/power-controller failed [ +0.000177] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp0-supply from device tree [ +0.000018] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_isp0-supply property in node /power-management@ff310000/power-controller failed [ +0.000088] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopb-supply from device tree [ +0.000017] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopb-supply property in node /power-management@ff310000/power-controller failed [ +0.000086] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopl-supply from device tree [ +0.000017] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vopl-supply property in node /power-management@ff310000/power-controller failed [ +0.000062] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vo-supply from device tree [ +0.000017] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vo-supply property in node /power-management@ff310000/power-controller failed [ +0.000058] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vdu-supply from device tree [ +0.000016] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vdu-supply property in node /power-management@ff310000/power-controller failed [ +0.000072] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vcodec-supply from device tree [ +0.000016] rockchip-pm-domain ff310000.power-management:power-controller: Looking up pd_vcodec-supply property in node /power-management@ff310000/power-controller failed [ +0.001258] ALSA device list: [ +0.000011] #0: Dummy 1 [ +0.000009] #1: Loopback 1 [ +0.000008] #2: realtek,rt5651-codec [ +0.000009] #3: rockchip,hdmi [ +0.000892] Freeing unused kernel memory: 1088K [ +0.031827] usb 3-1: new high-speed USB device number 2 using ehci-platform [ +0.047099] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 181 [ +0.007013] mmc2: queuing unknown CIS tuple 0x91 (3 bytes) [ +0.000080] mmc2: new ultra high speed SDR104 SDIO card at address 0001 [ +0.081664] wifi_platform_bus_enumerate device present 1 [ +0.000017] ======== Card detection to detect SDIO card! ======== [ +0.000010] mmc2:mmc host rescan start! [ +0.003074] usb 3-1: New USB device found, idVendor=32e4, idProduct=9520 [ +0.000025] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ +0.000011] usb 3-1: Product: HD USB Camera [ +0.000010] usb 3-1: Manufacturer: HD Camera Manufacturer [ +0.001448] uvcvideo: Found UVC 1.00 device HD USB Camera (32e4:9520) [ +0.011558] bcmsdh_register: register client driver [ +0.000227] bcmsdh_sdmmc_probe: Enter num=1 [ +0.000107] bcmsdh_sdmmc_probe: Enter num=2 [ +0.000010] bus num (host idx)=2, slot num (rca)=1 [ +0.000010] found adapter info 'DHD generic adapter' [ +0.000038] sdioh_attach: set sd_f2_blocksize 256 [ +0.000029] sdioh_attach: sd clock rate = 0 [ +0.000155] dhdsdio_probe : no mutex held. set lock [ +0.000083] F1 signature read @0x18000000=0x15294345 [ +0.002645] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2 [ +0.000474] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000 [ +0.000115] [dhd] dhd_conf_set_chiprev : chip=0x4345, chiprev=9 [ +0.000220] [dhd] CFG80211-ERROR) wl_setup_wiphy : Registering Vendor80211 [ +0.000491] [dhd] CFG80211-ERROR) wl_setup_wiphy : SAE support [ +0.000941] [dhd] CFG80211-ERROR) wl_init_prof : wl_init_prof: No profile [ +0.000799] dhd_attach(): thread:dhd_watchdog_thread:e5 started [ +0.000217] dhd_attach(): thread:dhd_dpc:e6 started [ +0.000155] dhd_attach(): thread:dhd_rxf:e7 started [ +0.000017] dhd_deferred_work_init: work queue initialized [ +0.000010] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 2 [ +0.000043] dhd_bus_set_default_min_res_mask: Unhandled chip id [ +0.000178] sdioh_cis_read: func_cis_ptr[0]=0x10ac [ +0.005676] Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(20191120-1) [ +0.000890] Register interface [wlan0] MAC: 10:2c:6b:16:bd:a4 [ +0.000183] dhd_tcpack_suppress_set: TCP ACK Suppress mode 2 -> mode 0 [ +0.000019] dhd_wl_ioctl: returning as busstate=0 [ +0.000010] dhd_dbg_detach_pkt_monitor, 2204 [ +0.000011] dhd_bus_devreset: == Power OFF == [ +0.000211] bcmsdh_oob_intr_unregister: Enter [ +0.000008] bcmsdh_oob_intr_unregister: irq is not registered [ +0.000016] dhd_txglom_enable: enable 0 [ +0.000008] dhd_bus_devreset: WLAN OFF DONE [ +0.000034] wifi_platform_set_power = 0 [ +0.000009] ======== PULL WL_REG_ON(-1) LOW! ======== [ +0.000008] [WLAN_RFKILL]: rockchip_wifi_power: 0 [ +0.000026] [WLAN_RFKILL]: wifi shut off power. [ +0.000011] dhdsdio_probe : the lock is released. [ +0.000196] dhd_module_init: Exit err=0 [ +0.316810] EXT4-fs (mmcblk1p1): INFO: recovery required on readonly filesystem [ +0.000013] EXT4-fs (mmcblk1p1): write access will be enabled during recovery [ +0.015828] EXT4-fs (mmcblk1p1): recovery complete [ +0.001288] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode. Opts: (null) [ +0.191124] systemd[1]: System time before build time, advancing clock. [ +0.007280] ip_tables: (C) 2000-2006 Netfilter Core Team [ +0.002210] cgroup: cgroup2: unknown option "nsdelegate" [ +0.003313] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ +0.000443] systemd[1]: Detected architecture arm64. [ +0.004963] systemd[1]: Set hostname to <nanopim4>. [ +0.116408] systemd[1]: File /lib/systemd/system/systemd-journald.service:12 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling. [ +0.000018] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.) [ +0.056596] systemd[1]: /lib/systemd/system/rk3399-bluetooth.service:10: Support for option SysVStartPriority= has been removed and it is ignored [ +0.009162] systemd[1]: /etc/systemd/system/serial-getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ +0.002520] systemd[1]: /etc/systemd/system/getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ +0.029931] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.010076] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.001169] systemd[1]: Created slice User and Session Slice. [ +0.000424] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000300] systemd[1]: Listening on Syslog Socket. [ +0.000207] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000228] systemd[1]: Listening on Journal Socket (/dev/log). [ +0.000349] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000135] systemd[1]: Listening on Journal Audit Socket. [ +0.000184] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000166] systemd[1]: Listening on udev Kernel Socket. [ +0.000187] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000032] systemd[1]: Reached target Remote File Systems. [ +0.000192] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.000218] systemd[1]: Listening on Journal Socket. [ +0.000186] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.002521] systemd[1]: Starting Nameserver information manager... [ +0.000872] random: systemd: uninitialized urandom read (16 bytes read, 83 bits of entropy available) [ +0.002556] systemd[1]: Starting Create list of required static device nodes for the current kernel... [ +0.010121] systemd[1]: Mounting POSIX Message Queue File System... [ +0.004471] systemd[1]: Starting Load Kernel Modules... [ +0.003760] systemd[1]: Mounting Huge Pages File System... [ +0.004380] systemd[1]: Starting Set the console keyboard layout... [ +0.001194] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ +0.004219] systemd[1]: Starting Restore / save the current clock... [ +0.000565] systemd[1]: Reached target Slices. [ +0.001185] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ +0.001106] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ +0.000485] systemd[1]: Listening on fsck to fsckd communication Socket. [ +0.001353] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ +0.003675] systemd[1]: Starting File System Check on Root Device... [ +0.001391] systemd[1]: Listening on udev Control Socket. [ +0.006845] systemd[1]: Starting udev Coldplug all Devices... [ +0.003359] systemd[1]: Created slice system-serial\x2dgetty.slice. [ +0.000489] systemd[1]: Reached target Swap. [ +0.004591] systemd[1]: Mounting Kernel Debug File System... [ +0.001495] systemd[1]: Created slice system-getty.slice. [ +0.001470] systemd[1]: Listening on initctl Compatibility Named Pipe. [ +0.000461] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ +0.000091] systemd[1]: Reached target Local Encrypted Volumes. [ +0.000258] systemd[1]: Reached target Paths. [ +0.008869] systemd[1]: Started Create list of required static device nodes for the current kernel. [ +0.005697] systemd[1]: Mounted POSIX Message Queue File System. [ +0.000792] systemd[1]: Mounted Huge Pages File System. [ +0.000648] systemd[1]: Mounted Kernel Debug File System. [ +0.004725] systemd[1]: Started Load Kernel Modules. [ +0.004250] systemd[1]: Started Nameserver information manager. [ +0.003910] systemd[1]: Started Restore / save the current clock. [ +0.005528] systemd[1]: Started File System Check Daemon to report status. [ +0.006497] systemd[1]: Mounting FUSE Control File System... [ +0.005492] systemd[1]: Mounting Kernel Configuration File System... [ +0.006541] systemd[1]: Starting Apply Kernel Variables... [ +0.013998] systemd[1]: Mounted FUSE Control File System. [ +0.004813] systemd[1]: Started File System Check on Root Device. [ +0.002304] systemd[1]: Mounted Kernel Configuration File System. [ +0.009110] systemd[1]: Starting Remount Root and Kernel File Systems... [ +0.011769] systemd[1]: Started Apply Kernel Variables. [ +0.032612] EXT4-fs (mmcblk1p1): re-mounted. Opts: acl,commit=600,errors=remount-ro [ +0.006042] systemd[1]: Started Remount Root and Kernel File Systems. [ +0.004717] systemd[1]: Starting Load/Save Random Seed... [ +0.004871] systemd[1]: Starting Create System Users... [ +0.002590] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ +0.019984] systemd[1]: Started Load/Save Random Seed. [ +0.019415] systemd[1]: Started Create System Users. [ +0.004529] systemd[1]: Starting Create Static Device Nodes in /dev... [ +0.032607] systemd[1]: Started udev Coldplug all Devices. [ +0.005483] systemd[1]: Starting Helper to synchronize boot up for ifupdown... [ +0.003175] systemd[1]: Started Set the console keyboard layout. [ +0.014690] systemd[1]: Started Helper to synchronize boot up for ifupdown. [ +0.006938] systemd[1]: Started Create Static Device Nodes in /dev. [ +0.004987] systemd[1]: Reached target Local File Systems (Pre). [ +0.008051] systemd[1]: Mounting /tmp... [ +0.008264] systemd[1]: Starting udev Kernel Device Manager... [ +0.007716] systemd[1]: Mounted /tmp. [ +0.034968] systemd[1]: Started udev Kernel Device Manager. [ +0.068858] dhd_ioctl_entry: Interface is down [ +0.109362] dhd_ioctl_entry: Interface is down [ +0.056264] mali ff9a0000.gpu: Looking up mali-supply from device tree [ +0.002310] mali ff9a0000.gpu: leakage=27 [ +0.000066] mali ff9a0000.gpu: Looking up mali-supply from device tree [ +0.000037] vdd_gpu: could not add device link ff9a0000.gpu err -17 [ +0.000012] vdd_gpu: Failed to create debugfs directory [ +0.016830] mali ff9a0000.gpu: temp=60625, pvtm=122848 (122620 + 228) [ +0.000918] mali ff9a0000.gpu: pvtm-volt-sel=1 [ +0.000491] mali ff9a0000.gpu: avs=0 [ +0.002504] mali ff9a0000.gpu: GPU identified as 0x0860 r2p0 status 0 [ +0.000198] mali ff9a0000.gpu: Protected mode not available [ +0.000577] mali ff9a0000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 [ +0.000048] mali ff9a0000.gpu: Using configured power model mali-simple-power-model, and fallback mali-simple-power-model [ +0.000131] I : [File] : drivers/gpu/arm/midgard/backend/gpu/mali_kbase_devfreq.c; [Line] : 423; [Func] : kbase_devfreq_init(); success initing power_model_simple. [ +0.001547] mali ff9a0000.gpu: Probed as mali0 [ +0.048605] systemd[1]: Found device /dev/disk/by-label/DATA. [ +0.066066] systemd[1]: Found device /dev/disk/by-label/HOME. [ +0.054366] systemd[1]: Found device /dev/ttyFIQ0. [ +0.043042] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ +0.001566] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ +0.000065] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ +0.000041] systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch when bootsplash is active being skipped. [ +0.002522] systemd[1]: Starting File System Check on /dev/disk/by-label/HOME... [ +0.004640] systemd[1]: Starting File System Check on /dev/disk/by-label/DATA... [ +0.002957] systemd[1]: Created slice system-systemd\x2dbacklight.slice. [ +0.005142] systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:backlight... [ +0.006596] systemd[1]: Starting Load/Save RF Kill Switch Status... [ +0.021854] systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:backlight. [ +0.028501] [BT_RFKILL]: ENABLE UART_RTS [ +0.021412] systemd[1]: Started File System Check on /dev/disk/by-label/HOME. [ +0.011279] systemd[1]: Mounting /root... [ +0.010031] EXT4-fs (mmcblk1p3): mounted filesystem with ordered data mode. Opts: acl [ +0.007812] systemd[1]: Mounted /root. [ +0.041286] random: nonblocking pool is initialized [ +0.016155] [BT_RFKILL]: DISABLE UART_RTS [ +0.000045] [BT_RFKILL]: bt turn on power [ +0.002904] systemd[1]: Started Load/Save RF Kill Switch Status. [ +0.018578] systemd[1]: Started File System Check on /dev/disk/by-label/DATA. [ +0.016184] systemd[1]: Mounting /root/mvisia_edge_data... [ +0.006594] EXT4-fs (mmcblk1p4): mounted filesystem with ordered data mode. Opts: acl [ +0.005873] systemd[1]: Mounted /root/mvisia_edge_data. [ +0.005549] systemd[1]: Reached target Local File Systems. [ +0.008532] systemd[1]: Starting Set console font and keymap... [ +0.002877] systemd[1]: Condition check resulted in Mark the need to relabel after reboot being skipped. [ +0.002582] systemd[1]: Starting Raise network interfaces... [ +0.005109] systemd[1]: Starting Armbian ZRAM config... [ +0.001845] systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped. [ +0.001727] systemd[1]: Started Set console font and keymap. [ +0.127075] zram: Added device: zram0 [ +0.002007] zram: Added device: zram1 [ +0.001427] zram: Added device: zram2 [ +0.061455] systemd[1]: Started Raise network interfaces. [ +0.000698] zram1: detected capacity change from 0 to 1009115136 [ +0.023624] Adding 985460k swap on /dev/zram1. Priority:5 extents:1 across:985460k SS [ +0.089687] zram0: detected capacity change from 0 to 52428800 [ +0.028980] systemd[1]: Started Armbian ZRAM config. [ +0.013912] systemd[1]: Starting Armbian memory supported logging... [ +0.053579] EXT4-fs (zram0): mounted filesystem without journal. Opts: discard [ +1.600622] cfg80211: World regulatory domain updated: [ +0.000017] cfg80211: DFS Master region: unset [ +0.000006] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ +0.000008] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ +0.000006] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s) [ +0.000005] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ +0.000005] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ +0.000005] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ +0.330948] systemd[1]: Started Armbian memory supported logging. [ +0.004278] systemd[1]: Starting Journal Service... [ +0.211269] systemd[1]: Started Journal Service. [ +0.038392] systemd-journald[660]: Received request to flush runtime journal from PID 1 [ +1.180768] nr_pdflush_threads exported in /proc is scheduled for removal [ +4.139288] [BT_RFKILL]: ENABLE UART_RTS [ +0.101548] [BT_RFKILL]: DISABLE UART_RTS [ +0.000065] [BT_RFKILL]: bt turn on power [ +0.060274] ttyS0 - failed to request DMA, use interrupt mode [ +0.697800] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ +0.010796] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready [ +0.000123] dhd_open: Enter ffffffc07458f000 [ +0.000005] dhd_open : no mutex held. set lock [ +0.000008] Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(20191120-1) [ +0.000012] [dhd-wlan0] wl_android_wifi_on : in g_wifi_on=0 [ +0.000006] wifi_platform_set_power = 1 [ +0.000005] ======== PULL WL_REG_ON(-1) HIGH! ======== [ +0.000006] [WLAN_RFKILL]: rockchip_wifi_power: 1 [ +0.000007] [WLAN_RFKILL]: wifi turn on power. -1 [ +0.303089] sdio_reset_comm(): [ +0.031886] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) [ +0.023597] mmc_host mmc2: Bus speed (slot 0) = 100000Hz (slot req 100000Hz, actual 100000HZ div = 0) [ +0.063895] mmc2: queuing unknown CIS tuple 0x80 (2 bytes) [ +0.006795] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.006063] mmc2: queuing unknown CIS tuple 0x80 (3 bytes) [ +0.010933] mmc2: queuing unknown CIS tuple 0x80 (7 bytes) [ +0.013545] mmc2: queuing unknown CIS tuple 0x81 (9 bytes) [ +0.203094] mmc_host mmc2: Bus speed (slot 0) = 150000000Hz (slot req 150000000Hz, actual 150000000HZ div = 0) [ +0.128876] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 181 [ +0.000050] sdioh_start: set sd_f2_blocksize 256 [ +0.000254] dhd_bus_devreset: == WLAN ON == [ +0.000066] F1 signature read @0x18000000=0x15294345 [ +0.002360] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2 [ +0.000449] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000 [ +0.000097] dhd_bus_set_default_min_res_mask: Unhandled chip id [ +0.000809] dhd_os_open_image: /lib/firmware/rkwifi/config.txt (204 bytes) open success [ +0.000448] [dhd] dhd_conf_read_country : ccode = ALL [ +0.000011] [dhd] dhd_conf_read_country : regrev = 0 [ +0.000012] [dhd] dhd_conf_read_sdio_params : dhd_doflow = 1 [ +0.000018] [dhd] dhd_conf_read_others : srl = 15 [ +0.000010] [dhd] dhd_conf_read_others : lrl = 15 [ +0.000019] [dhd] dhd_conf_set_path_params : Final fw_path=/lib/firmware/rkwifi/fw_bcm43456c5_ag.bin [ +0.000007] [dhd] dhd_conf_set_path_params : Final nv_path=/lib/firmware/rkwifi/nvram_ap6256.txt [ +0.000006] [dhd] dhd_conf_set_path_params : Final clm_path=/lib/firmware/rkwifi/clm_bcm43456c5_ag.blob [ +0.000005] [dhd] dhd_conf_set_path_params : Final conf_path=/lib/firmware/rkwifi/config.txt [ +0.000337] dhd_os_open_image: /lib/firmware/rkwifi/fw_bcm43456c5_ag.bin (585884 bytes) open success [ +0.050686] dhd_os_open_image: /lib/firmware/rkwifi/nvram_ap6256.txt (2099 bytes) open success [ +0.000441] NVRAM version: AP6256_NVRAM_V1.1_08252017 [ +0.000506] dhdsdio_write_vars: Download, Upload and compare of NVRAM succeeded. [ +0.074738] dhd_bus_init: enable 0x06, ready 0x06 (waited 0us) [ +0.000279] bcmsdh_oob_intr_register: HW_OOB irq=72 flags=0x4 [ +0.000202] dhd_get_memdump_info: File [/data/misc/wifi/.memdump.info] doesn't exist [ +0.000010] dhd_get_memdump_info: MEMDUMP ENABLED = 2 [ +0.000756] Disable tdls_auto_op failed. -1 [ +0.000013] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 1 [ +0.000289] dhd_apply_default_clm: Ignore clm file /lib/firmware/rkwifi/clm_bcm43456c5_ag.blob [ +0.001399] Firmware up: op_mode=0x0005, MAC=10:2c:6b:16:bd:a4 [ +0.002907] dhd_preinit_ioctls Set scancache failed -23 [ +0.007609] Driver: 1.579.77.41.22 (r-20191105-2)(20191120-1) Firmware: wl0: Feb 11 2020 11:54:51 version 7.45.96.61 (be7af2d@shgit) (r745790) FWID 01-a41d86bd es7.c5.n4.a3 CLM: 9.2.9 (2016-02-03 04:34:31) [ +0.000208] dhd_txglom_enable: enable 1 [ +0.000007] [dhd] dhd_conf_set_txglom_params : txglom_mode=copy [ +0.000007] [dhd] dhd_conf_set_txglom_params : txglomsize=36, deferred_tx_len=0 [ +0.000006] [dhd] dhd_conf_set_txglom_params : txinrx_thres=128, dhd_txminmax=-1 [ +0.000006] [dhd] dhd_conf_set_txglom_params : tx_max_offset=0, txctl_tmo_fix=300 [ +0.000011] [dhd] dhd_conf_get_disable_proptx : fw_proptx=1, disable_proptx=-1 [ +0.000813] dhd_wlfc_hostreorder_init(): successful bdcv2 tlv signaling, 64 [ +0.001276] dhd_pno_init: Support Android Location Service [ +0.020085] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not created [ +0.000709] dhd_rtt_init : FTM is supported [ +0.000010] dhd_preinit_ioctls: SensorHub diabled 0 [ +0.000583] dhd_preinit_ioctls failed to set ShubHub disable [ +0.001345] dhd_wl_ioctl_get_intiovar: get int iovar wnm_bsstrans_resp failed, ERR -23 [ +0.000005] failed to get wnm_bsstrans_resp [ +0.000468] failed to set WNM capabilities [ +0.000223] [dhd] dhd_conf_set_country : set country ALL, revision 0 [ +0.000007] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not created [ +0.000364] [dhd] CONFIG-ERROR) dhd_conf_set_bufiovar : country setting failed -2, len=12 [ +0.000313] [dhd] dhd_conf_set_country : Country code: US (US/0) [ +0.005271] [dhd-wlan0] wl_android_wifi_on : Success [ +0.043276] dhd_open : the lock is released. [ +0.000018] dhd_open: Exit ret=0 [ +0.064965] NET: Registered protocol family 17 [ +0.092172] P2P interface registered [ +0.000026] wl_cfgp2p_add_p2p_disc_if: wdev: ffffffc07a377800, wdev->net: (null) [ +0.015296] WLC_E_IF: NO_IF set, event Ignored [ +0.000913] P2P interface started [ +3.208246] Bluetooth: Core ver 2.21 [ +0.000118] NET: Registered protocol family 31 [ +0.000020] Bluetooth: HCI device and connection manager initialized [ +0.000031] Bluetooth: HCI socket layer initialized [ +0.000024] Bluetooth: L2CAP socket layer initialized [ +0.001439] Bluetooth: SCO socket layer initialized [ +0.014957] Bluetooth: HCI UART driver ver 2.3 [ +0.000028] Bluetooth: HCI UART protocol H4 registered [ +0.000018] Bluetooth: HCI UART protocol LL registered [ +0.000015] Bluetooth: HCI UART protocol ATH3K registered [ +0.000015] Bluetooth: HCI UART protocol Three-wire (H5) registered [ +0.000489] Bluetooth: HCI UART protocol Intel registered [ +0.000373] Bluetooth: HCI UART protocol BCM registered [ +0.000018] Bluetooth: HCI UART protocol QCA registered [ +0.104720] tty_port_close_start: tty->count = 1 port count = 2. [ +0.609035] [dhd-wlan0] wl_cfg80211_connect : Connecting with d8:47:32:72:3d:c4 ssid "FT Home3", len (8), sec=wpa2psk/mfpc/518, channel=6 [ +0.000983] dhd_dbg_start_pkt_monitor, 1724 [Feb24 19:14] [dhd-wlan0] wl_iw_event : Link UP with d8:47:32:72:3d:c4 [ +0.000032] [dhd-wlan0] wl_ext_iapsta_event : [S] Link UP with d8:47:32:72:3d:c4 [ +0.000032] [dhd-wlan0] wl_notify_connect_status : wl_bss_connect_done succeeded with d8:47:32:72:3d:c4 [ +0.092481] [dhd-wlan0] wl_notify_connect_status : wl_bss_connect_done succeeded with d8:47:32:72:3d:c4 vndr_oui: 8C-FD-F0 [ +0.400843] rk_gmac-dwmac fe300000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ +2.324580] capability: warning: `python3' uses 32-bit capabilities (legacy support in use) [ +0.122108] gpio-54 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.017301] gpio-55 (sysfs): gpiod_request: status -16 [ +0.000012] export_store: status -16 [ +0.017416] gpio-145 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.000213] gpio-144 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +2.793376] gpio-54 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.034051] gpio-55 (sysfs): gpiod_request: status -16 [ +0.000021] export_store: status -16 [ +0.024398] gpio-145 (sysfs): gpiod_request: status -16 [ +0.000013] export_store: status -16 [ +0.000203] gpio-144 (sysfs): gpiod_request: status -16 [ +0.000006] export_store: status -16 [ +0.000113] gpio-149 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +0.000113] gpio-33 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +0.000097] gpio-50 (sysfs): gpiod_request: status -16 [ +0.000004] export_store: status -16 [ +0.000098] gpio-35 (sysfs): gpiod_request: status -16 [ +0.000005] export_store: status -16 [ +3.198805] tty_port_close_start: tty->count = 1 port count = 2. [ +0.340160] tty_port_close_start: tty->count = 1 port count = 2.
  22. Looks like an interrupt was encountered during startup.This is the TTL startup log. reading u-boot.ext 650183 bytes read in 376 ms (1.6 MiB/s) ## Starting application at 0x01000000 ... [BL31]: tee size: 0 [BL31]: tee size: 0 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.9.0-arm-64 (root@vbox) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #20.10 SMP PREEMPT Wed Oct 14 12:04:42 MSK 2020 [ 0.000000] Machine model: Amlogic Meson GXL (S905X) P212 Development Board [ 0.000000] efi: UEFI not found. [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! [ 0.000000] Reserved memory: created CMA memory pool at 0x000000006b400000, size 256 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000001000000-0x000000007fe5afff] [ 0.000000] NUMA: NODE_DATA [mem 0x7fa4c100-0x7fa4dfff] [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000001000000-0x000000003fffffff] [ 0.000000] DMA32 [mem 0x0000000040000000-0x000000007fe5afff] [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000001000000-0x0000000004ffffff] [ 0.000000] node 0: [mem 0x0000000007300000-0x000000000fffffff] [ 0.000000] node 0: [mem 0x0000000010200000-0x000000007fe5afff] [ 0.000000] Zeroed struct page in unavailable ranges: 421 pages [ 0.000000] Initmem setup node 0 [mem 0x0000000001000000-0x000000007fe5afff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv0.2 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: Trusted OS migration not required [ 0.000000] percpu: Embedded 22 pages/cpu s51480 r8192 d30440 u90112 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 502177 [ 0.000000] Policy zone: DMA32 [ 0.000000] Kernel command line: root=LABEL=ROOTFS rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: mapped [mem 0x3bfff000-0x3ffff000] (64MB) [ 0.000000] Memory: 1634552K/2041196K available (16188K kernel code, 1308K rwdata, 6464K rodata, 3392K init, 927K bss, 144500K reserved, 262144K cma-reserved) [ 0.000000] random: get_random_u64 called from cache_random_seq_create+0x80/0x150 with crng_init=0 [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] irq_meson_gpio: 110 to 8 gpio interrupt mux initialized [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000003] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.000297] Console: colour dummy device 80x25 [ 0.000723] printk: console [tty0] enabled [ 0.000826] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.000847] pid_max: default: 32768 minimum: 301 [ 0.000951] LSM: Security Framework initializing [ 0.001048] AppArmor: AppArmor initialized [ 0.001107] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.001131] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.002506] rcu: Hierarchical SRCU implementation. [ 0.003425] EFI services will not be available. [ 0.003714] smp: Bringing up secondary CPUs ... [ 0.004286] Detected VIPT I-cache on CPU1 [ 0.004343] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.004880] Detected VIPT I-cache on CPU2 [ 0.004925] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.005451] Detected VIPT I-cache on CPU3 [ 0.005495] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.005567] smp: Brought up 1 node, 4 CPUs [ 0.005632] SMP: Total of 4 processors activated. [ 0.005643] CPU features: detected: 32-bit EL0 Support [ 0.005655] CPU features: detected: CRC32 instructions [ 0.015524] CPU: All CPU(s) started at EL2 [ 0.015585] alternatives: patching kernel code [ 0.016870] devtmpfs: initialized [ 0.022241] Registered cp15_barrier emulation handler [ 0.022272] Registered setend emulation handler [ 0.022287] KASLR disabled due to lack of seed [ 0.022635] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.022669] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.029768] xor: measuring software checksum speed [ 0.068166] 8regs : 2373.000 MB/sec [ 0.108196] 32regs : 2723.000 MB/sec [ 0.148236] arm64_neon: 2310.000 MB/sec [ 0.148247] xor: using function: 32regs (2723.000 MB/sec) [ 0.148305] pinctrl core: initialized pinctrl subsystem [ 0.148844] DMI not present or invalid. [ 0.149333] NET: Registered protocol family 16 [ 0.150896] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.150963] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.151105] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.151209] audit: initializing netlink subsys (disabled) [ 0.151429] audit: type=2000 audit(0.148:1): state=initialized audit_enabled=0 res=1 [ 0.152437] thermal_sys: Registered thermal governor 'step_wise' [ 0.152682] cpuidle: using governor ladder [ 0.152722] cpuidle: using governor menu [ 0.153052] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.153143] ASID allocator initialised with 65536 entries [ 0.153919] Serial: AMBA PL011 UART driver [ 0.178703] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.178729] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.178742] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.178754] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.180578] cryptd: max_cpu_qlen set to 1000 [ 0.248461] raid6: neonx8 gen() 2143 MB/s [ 0.316514] raid6: neonx8 xor() 1608 MB/s [ 0.384579] raid6: neonx4 gen() 2194 MB/s [ 0.452641] raid6: neonx4 xor() 1593 MB/s [ 0.520698] raid6: neonx2 gen() 2095 MB/s [ 0.588756] raid6: neonx2 xor() 1472 MB/s [ 0.656822] raid6: neonx1 gen() 1827 MB/s [ 0.724870] raid6: neonx1 xor() 1249 MB/s [ 0.792929] raid6: int64x8 gen() 1492 MB/s [ 0.860999] raid6: int64x8 xor() 784 MB/s [ 0.929033] raid6: int64x4 gen() 1666 MB/s [ 0.997089] raid6: int64x4 xor() 840 MB/s [ 1.065149] raid6: int64x2 gen() 1420 MB/s [ 1.133200] raid6: int64x2 xor() 730 MB/s [ 1.201251] raid6: int64x1 gen() 1059 MB/s [ 1.269322] raid6: int64x1 xor() 559 MB/s [ 1.269332] raid6: using algorithm neonx4 gen() 2194 MB/s [ 1.269341] raid6: .... xor() 1593 MB/s, rmw enabled [ 1.269351] raid6: using neon recovery algorithm [ 1.269859] ACPI: Interpreter disabled. [ 1.270993] iommu: Default domain type: Translated [ 1.271253] vgaarb: loaded [ 1.271849] SCSI subsystem initialized [ 1.272247] usbcore: registered new interface driver usbfs [ 1.272297] usbcore: registered new interface driver hub [ 1.272366] usbcore: registered new device driver usb [ 1.272767] pps_core: LinuxPPS API ver. 1 registered [ 1.272780] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 1.272803] PTP clock support registered [ 1.272839] EDAC MC: Ver: 3.0.0 [ 1.273677] FPGA manager framework [ 1.273775] Advanced Linux Sound Architecture Driver Initialized. [ 1.274312] NetLabel: Initializing [ 1.274328] NetLabel: domain hash size = 128 [ 1.274337] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 1.274391] NetLabel: unlabeled traffic allowed by default [ 1.274892] clocksource: Switched to clocksource arch_sys_counter [ 1.275156] VFS: Disk quotas dquot_6.6.0 [ 1.275216] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 1.275355] FS-Cache: Loaded [ 1.275829] AppArmor: AppArmor Filesystem Enabled [ 1.276433] pnp: PnP ACPI: disabled [ 1.281559] NET: Registered protocol family 2 [ 1.282072] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 1.282125] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 1.282243] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 1.282453] TCP: Hash tables configured (established 16384 bind 16384) [ 1.282611] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.282666] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 1.282873] NET: Registered protocol family 1 [ 1.283361] RPC: Registered named UNIX socket transport module. [ 1.283384] RPC: Registered udp transport module. [ 1.283394] RPC: Registered tcp transport module. [ 1.283402] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 1.283419] NET: Registered protocol family 44 [ 1.283439] PCI: CLS 0 bytes, default 64 [ 1.283623] Trying to unpack rootfs image as initramfs... [ 1.700498] Freeing initrd memory: 9776K [ 1.701400] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 1.704821] Initialise system trusted keyrings [ 1.705015] workingset: timestamp_bits=44 max_order=19 bucket_order=0 [ 1.709764] zbud: loaded [ 1.711142] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 1.711436] FS-Cache: Netfs 'nfs' registered for caching [ 1.711996] NFS: Registering the id_resolver key type [ 1.712032] Key type id_resolver registered [ 1.712042] Key type id_legacy registered [ 1.712128] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 1.712141] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 1.713122] FS-Cache: Netfs 'cifs' registered for caching [ 1.713417] Key type cifs.spnego registered [ 1.713439] Key type cifs.idmap registered [ 1.713463] ntfs: driver 2.1.32 [Flags: R/W]. [ 1.714001] JFS: nTxBlock = 8192, nTxLock = 65536 [ 1.718461] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled [ 1.720042] ocfs2: Registered cluster interface o2cb [ 1.720254] OCFS2 User DLM kernel interface loaded [ 1.721930] gfs2: GFS2 installed [ 1.759867] NET: Registered protocol family 38 [ 1.759898] Key type asymmetric registered [ 1.759909] Asymmetric key parser 'x509' registered [ 1.759920] Asymmetric key parser 'pkcs8' registered [ 1.759973] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 1.760146] io scheduler mq-deadline registered [ 1.760160] io scheduler kyber registered [ 1.760317] io scheduler bfq registered [ 1.773962] soc soc0: Amlogic Meson Unknown (Unknown) Revision 2a:e (c5:2) Detected [ 1.777868] Serial: 8250/16550 driver, 5 ports, IRQ sharing enabled [ 1.779754] Serial: AMBA driver [ 1.780130] c11084c0.serial: ttyAML6 at MMIO 0xc11084c0 (irq = 12, base_baud = 1500000) is a meson_uart [ 1.780296] serial serial0: tty port ttyAML6 registered [ 1.780687] c81004c0.serial: ttyAML0 at MMIO 0xc81004c0 (irq = 15, base_baud = 1500000) is a meson_uart [ 2.853887] printk: console [ttyAML0] enabled [ 2.871082] brd: module loaded [ 2.878828] loop: module loaded [ 2.879704] Loading iSCSI transport class v2.0-870. [ 2.881782] iscsi: registered transport (tcp) [ 2.889253] libphy: Fixed MDIO Bus: probed [ 2.891304] VFIO - User Level meta-driver version: 0.3 [ 2.896039] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 2.901145] ehci-pci: EHCI PCI platform driver [ 2.905573] ehci-platform: EHCI generic platform driver [ 2.910836] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 2.916855] ohci-pci: OHCI PCI platform driver [ 2.921265] ohci-platform: OHCI generic platform driver [ 2.926876] usbcore: registered new interface driver usb-storage [ 2.932547] mousedev: PS/2 mouse device common for all mice [ 2.938787] i2c /dev entries driver [ 2.945048] sdhci: Secure Digital Host Controller Interface driver [ 2.947475] sdhci: Copyright(c) Pierre Ossman [ 2.951981] Synopsys Designware Multimedia Card Interface Driver [ 2.971820] meson-gx-mmc d0072000.mmc: Got CD GPIO [ 2.999412] meson-gx-mmc d0074000.mmc: allocated mmc-pwrseq [ 3.027321] sdhci-pltfm: SDHCI platform and OF driver helper [ 3.028283] ledtrig-cpu: registered to indicate activity on CPUs [ 3.033941] meson-sm: secure-monitor enabled [ 3.038391] gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 3.045428] gxl-crypto c883e000.crypto: will run requests pump with realtime priority [ 3.053514] hid: raw HID events driver (C) Jiri Kosina [ 3.058489] usbcore: registered new interface driver usbhid [ 3.063707] usbhid: USB HID core driver [ 3.068266] platform-mhu c883c404.mailbox: Platform MHU Mailbox registered [BL31]: tee size: 0 [ 3.079012] no UART detected at 0x1 [ 3.083501] NET: Registered protocol family 17 [ 3.084215] Key type dns_resolver registered [ 3.088690] registered taskstats version 1 [ 3.092268] Loading compiled-in X.509 certificates [ 3.097252] zswap: loaded using pool lzo/zbud [ 3.101604] Key type ._fscrypt registered [ 3.105248] Key type .fscrypt registered [ 3.109119] Key type fscrypt-provisioning registered [ 3.114829] Btrfs loaded, crc32c=crc32c-generic [ 3.116964] mmc1: new HS200 MMC card at address 0001 [ 3.124271] mmcblk1: mmc1:0001 Y1P008 7.28 GiB [ 3.128360] mmcblk1boot0: mmc1:0001 Y1P008 partition 1 4.00 MiB [ 3.134225] mmcblk1boot1: mmc1:0001 Y1P008 partition 2 4.00 MiB [ 3.137640] Key type encrypted registered [ 3.139939] mmcblk1rpmb: mmc1:0001 Y1P008 partition 3 4.00 MiB, chardev (241:0) [ 3.143648] AppArmor: AppArmor sha1 policy hashing enabled [ 3.172621] meson-drm d0100000.vpu: Queued 3 outputs on vpu [ 3.198943] meson-dw-hdmi c883a000.hdmi-tx: Unsupported HDMI controller (0d0d:0d:0d) [ 3.201222] ------------[ cut here ]------------ [ 3.205633] WARNING: CPU: 3 PID: 33 at drivers/regulator/core.c:2089 _regulator_put.part.0+0x154/0x160 [ 3.214847] Modules linked in: [ 3.217869] CPU: 3 PID: 33 Comm: kworker/3:1 Not tainted 5.9.0-arm-64 #20.10 [ 3.224852] Hardware name: Amlogic Meson GXL (S905X) P212 Development Board (DT) [ 3.232192] Workqueue: events deferred_probe_work_func [ 3.237274] pstate: 80000005 (Nzcv daif -PAN -UAO BTYPE=--) [ 3.242794] pc : _regulator_put.part.0+0x154/0x160 [ 3.247537] lr : regulator_put+0x38/0x50 [ 3.251416] sp : ffff800010143930 [ 3.254694] x29: ffff800010143930 x28: ffff800012a07000 [ 3.259955] x27: ffff80001010bcd8 x26: 00000000ffffffed [ 3.265216] x25: ffff00007f325480 x24: ffff00006974d000 [ 3.270477] x23: 0000000000000010 x22: ffff8000101439e8 [ 3.275739] x21: ffff00007f279c00 x20: ffff800012ad7150 [ 3.281000] x19: ffff00007f324900 x18: 0000000000000010 [ 3.286261] x17: 0000000000006a0c x16: 000000000000698c [ 3.291522] x15: 00000b4b011a0adc x14: 00000000000002d7 [ 3.296783] x13: 000000000000032b x12: 0000000000000001 [ 3.302045] x11: 0000000000000002 x10: 00000000000009c0 [ 3.307306] x9 : ffff800010143760 x8 : ffff00007f27a620 [ 3.312567] x7 : ffff00007f279c00 x6 : 0000000000000000 [ 3.317828] x5 : ffff000069b12a1c x4 : 0000000000000000 [ 3.323090] x3 : ffff800012ad7520 x2 : ffff00007f279c00 [ 3.328351] x1 : 0000000000000000 x0 : 0000000000000001 [ 3.333613] Call trace: [ 3.336031] _regulator_put.part.0+0x154/0x160 [ 3.340428] regulator_put+0x38/0x50 [ 3.343967] devm_regulator_release+0x14/0x20 [ 3.348279] release_nodes+0x1b0/0x228 [ 3.351986] devres_release_group+0x90/0xe8 [ 3.356126] component_bind_all+0x114/0x260 [ 3.360267] meson_drv_bind_master+0x364/0x488 [ 3.364664] meson_drv_bind+0x14/0x28 [ 3.368287] try_to_bring_up_master+0x168/0x1d0 [ 3.372772] component_master_add_with_match+0xb4/0x100 [ 3.377947] meson_drv_probe+0xd4/0x128 [ 3.381742] platform_drv_probe+0x54/0xa8 [ 3.385709] really_probe+0xe4/0x3b0 [ 3.389245] driver_probe_device+0x58/0xb8 [ 3.393299] __device_attach_driver+0x84/0xc8 [ 3.397613] bus_for_each_drv+0x78/0xc8 [ 3.401406] __device_attach+0xf0/0x150 [ 3.405202] device_initial_probe+0x14/0x20 [ 3.409342] bus_probe_device+0x9c/0xa8 [ 3.413137] deferred_probe_work_func+0x74/0xb0 [ 3.417625] process_one_work+0x1a0/0x328 [ 3.421589] worker_thread+0x1f8/0x420 [ 3.425300] kthread+0x140/0x160 [ 3.428491] ret_from_fork+0x10/0x34 [ 3.432025] ---[ end trace 014dcf72c59e749d ]--- [ 3.436789] meson-drm d0100000.vpu: failed to bind c883a000.hdmi-tx (ops meson_dw_hdmi_ops): -19 [ 3.445329] meson-drm d0100000.vpu: Couldn't bind all components [ 3.451558] meson-drm d0100000.vpu: master bind failed: -19 [ 3.458691] meson8b-dwmac c9410000.ethernet: IRQ eth_wake_irq not found [ 3.463391] meson8b-dwmac c9410000.ethernet: IRQ eth_lpi not found [ 3.469564] meson8b-dwmac c9410000.ethernet: PTP uses main clock [ 3.475419] meson8b-dwmac c9410000.ethernet: no reset control found [ 3.482347] meson8b-dwmac c9410000.ethernet: User ID: 0x11, Synopsys ID: 0x37 [ 3.488760] meson8b-dwmac c9410000.ethernet: DWMAC1000 [ 3.493875] meson8b-dwmac c9410000.ethernet: DMA HW capability register supported [ 3.501292] meson8b-dwmac c9410000.ethernet: RX Checksum Offload Engine supported [ 3.508709] meson8b-dwmac c9410000.ethernet: COE Type 2 [ 3.513882] meson8b-dwmac c9410000.ethernet: TX Checksum insertion supported [ 3.520868] meson8b-dwmac c9410000.ethernet: Wake-Up On Lan supported [ 3.527328] meson8b-dwmac c9410000.ethernet: Normal descriptors [ 3.533119] meson8b-dwmac c9410000.ethernet: Ring mode enabled [ 3.538896] meson8b-dwmac c9410000.ethernet: Enable RX Mitigation via HW Watchdog Timer [ 3.547244] libphy: stmmac: probed [ 3.551570] dwc3-meson-g12a d0078080.usb: USB2 ports: 2 [ 3.555388] dwc3-meson-g12a d0078080.usb: USB3 ports: 0 [ 4.095936] dwc2 c9100000.usb: supply vusb_d not found, using dummy regulator [ 4.097582] dwc2 c9100000.usb: supply vusb_a not found, using dummy regulator [ 4.104769] dwc2 c9100000.usb: EPs: 7, dedicated fifos, 712 entries in SPRAM [ 4.113148] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 4.116990] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 4.124670] xhci-hcd xhci-hcd.0.auto: hcc params 0x0228f664 hci version 0x100 quirks 0x0000000002010010 [ 4.133884] xhci-hcd xhci-hcd.0.auto: irq 42, io mem 0xc9000000 [ 4.140001] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.09 [ 4.147904] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.155058] usb usb1: Product: xHCI Host Controller [ 4.159888] usb usb1: Manufacturer: Linux 5.9.0-arm-64 xhci-hcd [ 4.165752] usb usb1: SerialNumber: xhci-hcd.0.auto [ 4.171096] hub 1-0:1.0: USB hub found [ 4.174311] hub 1-0:1.0: 2 ports detected [ 4.178553] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 4.183719] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 [ 4.191294] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed [ 4.197800] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 4.205877] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.09 [ 4.213970] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 4.221126] usb usb2: Product: xHCI Host Controller [ 4.225955] usb usb2: Manufacturer: Linux 5.9.0-arm-64 xhci-hcd [ 4.231820] usb usb2: SerialNumber: xhci-hcd.0.auto [ 4.237098] hub 2-0:1.0: USB hub found [ 4.240389] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19) [ 4.249999] meson-gx-mmc d0070000.mmc: allocated mmc-pwrseq [ 4.281059] scpi_protocol scpi: SCP Protocol legacy pre-1.0 firmware g[ 4.285886] meson-gx-mmc d0070000.mmc: no support for card's volts [ 4.288014] mmc2: error -22 whilst initialising SDIO card et_dvfs_info 002b [ 4.309444] simple-framebuffer 7fe5b000.framebuffer: framebuffer at 0x7fe5b000, 0x195000 bytes, mapped to 0x(____ptrval____) [ 4.315076] simple-framebuffer 7fe5b000.framebuffer: format=x8r8g8b8, mode=720x576x32, linelength=2880 [ 4.329817] Console: switching to colour frame buffer device 90x36 [ 4.335109] simple-framebuffer 7fe5b000.framebuffer: fb0: simplefb registered! [ 4.343255] libphy: mdio_mux: probed [ 4.354147] libphy: mdio_mux: probed [ 4.356373] printk: console [netcon0] enabled [ 4.356495] netconsole: network logging started [ 4.363272] ALSA device list: [ 4.366700] No soundcards found. [ 4.371641] Freeing unused kernel memory: 3392K [ 4.395211] Run /init as init process [ 4.510993] usb 1-2: new high-speed USB device number 2 using xhci-hcd [ 4.667508] usb 1-2: New USB device found, idVendor=05e3, idProduct=0723, bcdDevice=94.54 [ 4.675234] usb 1-2: New USB device strings: Mfr=3, Product=4, SerialNumber=2 [ 4.691234] usb 1-2: Product: USB Storage [ 4.693841] usb 1-2: Manufacturer: Generic [ 4.696434] usb 1-2: SerialNumber: 000000009454 [ 4.702373] usb-storage 1-2:1.0: USB Mass Storage device detected [ 4.708033] scsi host0: usb-storage 1-2:1.0 [ 4.739959] usbcore: registered new interface driver uas [ 4.843513] mmc1: tuning execution failed: -5 [ 4.846820] mmc1: tuning execution failed: -5 [ 4.850470] mmc1: tuning execution failed: -5 [ 4.942738] mmc1: tuning execution failed: -5 [ 4.953768] mmc1: tried to HW reset card, got error -5 [ 4.957915] random: fast init done [ 4.960833] blk_update_request: I/O error, dev mmcblk1, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 5.068676] mmc1: tuning execution failed: -5 [ 5.076918] mmc1: tried to HW reset card, got error -5 [ 5.081092] blk_update_request: I/O error, dev mmcblk1, sector 8 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 5.188017] mmc1: tuning execution failed: -5 [ 5.196594] mmc1: tried to HW reset card, got error -5 [ 5.200915] blk_update_request: I/O error, dev mmcblk1, sector 9 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 5.200948] blk_update_request: I/O error, dev mmcblk1, sector 10 op 0x0:(READ) flags 0x0 phys_seg 6 prio class 0 [ 5.210470] Buffer I/O error on dev mmcblk1, logical block 9, async page read [ 5.227786] Buffer I/O error on dev mmcblk1, logical block 10, async page read [ 5.234871] Buffer I/O error on dev mmcblk1, logical block 11, async page read [ 5.242097] Buffer I/O error on dev mmcblk1, logical block 12, async page read [ 5.249186] Buffer I/O error on dev mmcblk1, logical block 13, async page read [ 5.256415] Buffer I/O error on dev mmcblk1, logical block 14, async page read [ 5.263503] Buffer I/O error on dev mmcblk1, logical block 15, async page read [ 5.378290] mmc1: tuning execution failed: -5 [ 5.383582] mmc1: tried to HW reset card, got error -5 [ 5.485759] mmc1: tuning execution failed: -5 [ 5.494326] mmc1: tried to HW reset card, got error -5 [ 5.498517] blk_update_request: I/O error, dev mmcblk1boot0, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 5.509407] blk_update_request: I/O error, dev mmcblk1boot1, sector 0 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 0 [ 5.521989] blk_update_request: I/O error, dev mmcblk1boot0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 5.522261] blk_update_request: I/O error, dev mmcblk1boot0, sector 1 op 0x0:(READ) flags 0x0 phys_seg 7 prio class 0 [ 5.532201] Buffer I/O error on dev mmcblk1boot0, logical block 0, async page read [ 5.550216] Buffer I/O error on dev mmcblk1boot0, logical block 1, async page read [ 5.557783] Buffer I/O error on dev mmcblk1boot0, logical block 2, async page read [ 5.567337] blk_update_request: I/O error, dev mmcblk1boot1, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0 [ 5.567538] blk_update_request: I/O error, dev mmcblk1boot1, sector 1 op 0x0:(READ) flags 0x0 phys_seg 7 prio class 0 [ 5.731217] scsi 0:0:0:0: Direct-Access Generic STORAGE DEVICE 9454 PQ: 0 ANSI: 0 [ 5.744982] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 5.756644] mmc1: tuning execution failed: -5 [ 5.759482] mmc1: tried to HW reset card, got error -5 [ 5.851953] sd 0:0:0:0: [sda] 30785536 512-byte logical blocks: (15.8 GB/14.7 GiB) [ 5.862491] mmc1: tuning execution failed: -5 [ 5.865457] sd 0:0:0:0: [sda] Write Protect is off [ 5.868936] mmc1: tried to HW reset card, got error -5 [ 5.879573] sd 0:0:0:0: [sda] No Caching mode page found [ 5.884156] sd 0:0:0:0: [sda] Assuming drive cache: write through [ 5.917959] sda: sda1 sda2 [ 5.932289] sd 0:0:0:0: [sda] Attached SCSI removable disk [ 6.048871] mmc1: tuning execution failed: -5 [ 6.052330] mmc1: tried to HW reset card, got error -5 [ 6.152616] mmc1: tuning execution failed: -5 [ 6.159164] mmc1: tried to HW reset card, got error -5 [ 6.680812] EXT4-fs (sda2): mounted filesystem with writeback data mode. Opts: data=writeback [ 7.587906] systemd[1]: System time before build time, advancing clock. [ 7.700177] NET: Registered protocol family 10 [ 7.734427] Segment Routing with IPv6 [ 7.781966] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid) [ 7.816263] systemd[1]: Detected architecture arm64. [ 7.865889] systemd[1]: Set hostname to <arm-64>. [ 8.336479] systemd[1]: /etc/systemd/system/serial-getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ 8.353745] systemd[1]: /etc/systemd/system/serial-getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ 8.371894] systemd[1]: /etc/systemd/system/getty@.service.d/override.conf:5: Unknown lvalue 'After' in section 'Service', ignoring [ 8.464881] random: systemd: uninitialized urandom read (16 bytes read) [ 8.477169] random: systemd: uninitialized urandom read (16 bytes read) [ 8.481130] systemd[1]: Reached target System Time Synchronized. [ 8.490569] random: systemd: uninitialized urandom read (16 bytes read) [ 8.497856] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ 8.504925] systemd[1]: Reached target Swap. [ 8.511367] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 8.718019] EXT4-fs (sda2): re-mounted. Opts: commit=600,errors=remount-ro [ 9.663661] SError Interrupt on CPU3, code 0xbf000002 -- SError [ 9.663665] CPU: 3 PID: 357 Comm: systemd-udevd Tainted: G WC 5.9.0-arm-64 #20.10 [ 9.663668] Hardware name: Amlogic Meson GXL (S905X) P212 Development Board (DT) [ 9.663669] pstate: 00000005 (nzcv daif -PAN -UAO BTYPE=--) [ 9.663671] pc : el1_sync_handler+0xf8/0x130 [ 9.663672] lr : el1_sync+0x7c/0x100 [ 9.663673] sp : ffff8000103ab750 [ 9.663675] x29: ffff8000103ab750 x28: ffff000068401c00 [ 9.663678] x27: 0000000000000100 x26: 0000000000000000 [ 9.663681] x25: 0000000000000001 x24: ffff80000a230270 [ 9.663685] x23: 0000000080000005 x22: ffff80000a225f08 [ 9.663688] x21: ffff8000103ab8a0 x20: 0000ffffffffffff [ 9.663691] x19: ffff00006acf6148 x18: 0000000000000001 [ 9.663694] x17: 0000000000000001 x16: 0000000000000019 [ 9.663697] x15: ffff000068402068 x14: ffffffffffffffff [ 9.663700] x13: 0000000000000000 x12: 0101010101010101 [ 9.663704] x11: 0000000000000040 x10: ffff800012a37ef8 [ 9.663707] x9 : ffff800012a37ef0 x8 : ffff00007cc026f0 [ 9.663710] x7 : 0000000000000000 x6 : 0000000000000000 [ 9.663713] x5 : ffff00007cc026c8 x4 : ffff800010c06000 [ 9.663716] x3 : 0000000096000210 x2 : 0000002200000000 [ 9.663719] x1 : 0000000000000000 x0 : ffff8000103ab760 [ 9.663723] Kernel panic - not syncing: Asynchronous SError Interrupt [ 9.663726] CPU: 3 PID: 357 Comm: systemd-udevd Tainted: G WC 5.9.0-arm-64 #20.10 [ 9.663728] Hardware name: Amlogic Meson GXL (S905X) P212 Development Board (DT) [ 9.663729] Call trace: [ 9.663730] dump_backtrace+0x0/0x1a0 [ 9.663731] show_stack+0x18/0x28 [ 9.663732] dump_stack+0xc0/0x11c [ 9.663734] panic+0x15c/0x31c [ 9.663735] nmi_panic+0x8c/0x90 [ 9.663737] arm64_serror_panic+0x78/0x84 [ 9.663738] do_serror+0x78/0x180 [ 9.663739] el1_error+0x8c/0x108 [ 9.663741] el1_sync_handler+0xf8/0x130 [ 9.663742] el1_sync+0x7c/0x100 [ 9.663744] lima_mmu_init+0x40/0x118 [lima] [ 9.663745] lima_device_init+0x1b8/0x5f0 [lima] [ 9.663746] lima_pdev_probe+0xa0/0x190 [lima] [ 9.663748] platform_drv_probe+0x54/0xa8 [ 9.663749] really_probe+0xe4/0x3b0 [ 9.663751] driver_probe_device+0x58/0xb8 [ 9.663752] device_driver_attach+0x74/0x80 [ 9.663753] __driver_attach+0x58/0xe0 [ 9.663755] bus_for_each_dev+0x70/0xc0 [ 9.663756] driver_attach+0x24/0x30 [ 9.663757] bus_add_driver+0x14c/0x1f0 [ 9.663759] driver_register+0x64/0x120 [ 9.663760] __platform_driver_register+0x48/0x58 [ 9.663762] lima_platform_driver_init+0x24/0x1000 [lima] [ 9.663763] do_one_initcall+0x54/0x1bc [ 9.663764] do_init_module+0x54/0x200 [ 9.663766] load_module+0x1de8/0x23f0 [ 9.663767] __do_sys_finit_module+0xd8/0xf0 [ 9.663769] __arm64_sys_finit_module+0x20/0x30 [ 9.663770] el0_svc_common.constprop.0+0x74/0x1f0 [ 9.663771] do_el0_svc+0x24/0x90 [ 9.663773] el0_sync_handler+0x180/0x2f8 [ 9.663774] el0_sync+0x158/0x180 [ 9.663793] SMP: stopping secondary CPUs [ 9.663794] Kernel Offset: disabled [ 9.663796] CPU features: 0x0040002,20002004 [ 9.663797] Memory Limit: none In the Android system can know the dtb file is gxlx2_p291_2g.I extracted the DTB file and put it into the DTB folder. It doesn't seem to start.
  23. Hi! I'm sorry, didn't noticed I had posted in wrong section, so here we go again! I'm trying to activate X11 hardware acceleration on this board. It's running an RT PREEMPT Kernel from the project AllwinCNC which aim to run linuxcnc software using ARISC core to generate steps in realtime. Unfortunately, I'm getting very bad performance in X11 with lima driver. It seems to be running on software and not the lima driver itself and I'd like to know if it is possible to have the graphics acceleration done in hardware instead. CPU usage is going to 100% and it is resulting in errors on the aforementioned CNC controller software due to this. BOARD: Orange Pi PC 1GB armbianmonitor -U output -> https://we.tl/t-RKjLXMHAGt orangepipc:~:% uname -a Linux orangepipc 5.10.21-rt34-sunxi #trunk SMP PREEMPT_RT Thu Apr 1 12:25:28 +06 2021 armv7l GNU/Linux orangepipc:~:% lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 10 (buster) Release: 10 Codename: buster I got this on glxgears: 111 frames in 5.0 seconds = 22.122 FPS 184 frames in 5.0 seconds = 36.786 FPS It seems to be handled in software: name of display: :0.0 display: :0 screen: 0 direct rendering: Yes Extended renderer info (GLX_MESA_query_renderer): Vendor: VMware, Inc. (0xffffffff) Device: llvmpipe (LLVM 7.0, 128 bits) (0xffffffff) Version: 18.3.6 Accelerated: no Video memory: 999MB Unified memory: no Preferred profile: core (0x1) Max core profile version: 3.3 Max compat profile version: 3.1 Max GLES1 profile version: 1.1 Max GLES[23] profile version: 3.0 OpenGL vendor string: VMware, Inc. OpenGL renderer string: llvmpipe (LLVM 7.0, 128 bits) OpenGL core profile version string: 3.3 (Core Profile) Mesa 18.3.6 OpenGL core profile shading language version string: 3.30 OpenGL core profile context flags: (none) OpenGL core profile profile mask: core profile OpenGL version string: 3.1 Mesa 18.3.6 OpenGL shading language version string: 1.40 OpenGL context flags: (none) OpenGL ES profile version string: OpenGL ES 3.0 Mesa 18.3.6 OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.00 How can I have hardware acceleration on X11 using Lima? Is it possible?
  24. Dear all, I'm frequently losing GPIO interrupts on various boards, which seem to be caused by bursty processes. When I shield the cores that have those interrupts according to /proc/interrupts with e..g. "cset shield --cpu=0,1" , way less interrupts are lost (e.g. for 4kHz interrupts one in hours instead of once per minute). Most of these (ADC) interrupts are handled by my own kernel module, but couldn't find how to restrict them to e.g. CPU0, and they are not movable using /proc/irq/*/smp_affinity. HomeCT1:~:% grep ads /proc/interrupts 66: 166559 0 0 0 sunxi_pio_edge 1 Edge ads131a04 162: 273 152692648 13858531 17 ads131a04-dev0 Edge ads131a04_consumer0 HomeCT1:~:% cat /proc/irq/162/smp_affinity f I noticed that on allwinner (opi0, nanopi neo+2), the ADC interrupts are on different CPU cores. On the neo3 they always seem to go to the 1st CPU core. Is there any way to force the interrupts to 1st core on the allwinner as well (e.g. in kernel module c-code or via devicetree)? This would make it easier to shield the first core and reduce the lost interrupts. Or is there another way to give more priority to the GPIO interrupts? Making the kernel thread realtime with chrt is apparently not enough. PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 2407 root rt 0 0 0 0 S 4.6 0.0 116:06.38 [irq/162-ads131a] Kind regards, Dennis
  25. I'm trying to get Armbian running on a Rock Pi S, but my custom builds aren't booting (see output below). I can successfully boot with the Buster image from here, but I need a custom custom build that will eventually include a few added scripts and be flashed to the NAND flash on the board, instead of using an SD card. When I run a custom-built image, I never see the Armbian splash on in the serial console, instead I get the following output: DDR Version V1.26 REGFB: 0x00000032, 0x00000032 In 589MHz DDR3 Col=10 Bank=8 Row=15 Size=512MB msch:1 Returning to boot ROM... INFO: Preloader serial: 0 NOTICE: BL31: v1.3(release):3a579d3 NOTICE: BL31: Built : 09:09:17, Jan 29 2019 INFO: Lastlog: last=0x100000, realtime=0x102000, size=0x2000 INFO: ARM GICv2 driver initialized INFO: Using opteed sec cpu_context! INFO: boot cpu mask: 1 INFO: plat_rockchip_pmu_init: pd status 0xe INFO: BL31: Initializing runtime services WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE initialization. SMC`s destined for OPTEE will return SMC_UNK ERROR: Error initializing runtime service opteed_fast INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x600000 INFO: SPSR = 0x3c9 U-Boot 2017.09-armbian (Nov 18 2020 - 11:04:16 -0700) Model: Radxa ROCK Pi S PreSerial: 0 DRAM: 510 MiB Sysmem: init Relocation Offset is: 1f918000 vdd-core init 1044000 uV MMC: dwmmc@ff480000: 0, dwmmc@ff490000: 1 Using default environment In: serial@ff0c0000 Out: serial@ff0c0000 Err: serial@ff0c0000 Model: Radxa ROCK Pi S switch to partitions #0, OK mmc1 is current device Bootdev(atags): mmc 0 MMC0: Legacy, 50Mhz PartType: DOS rockchip_get_boot_mode: Could not found misc partition boot mode: None CLK: (sync kernel. arm: enter 816000 KHz, init 816000 KHz, kernel 0N/A) apll 816000 KHz dpll 1300000 KHz vpll0 1179647 KHz vpll1 903167 KHz aclk_bus 185714 KHz hclk_bus 100000 KHz pclk_bus 100000 KHz aclk_peri 185714 KHz hclk_peri 100000 KHz pclk_peri 100000 KHz hclk_audio 98303 KHz pclk_audio 98303 KHz Net: No ethernet found. Hit key to stop autoboot('CTRL+C'): 0 Could not find misc partition ANDROID: reboot reason: "(none)" load_android_image: Can't find part: boot Android image load failed Android boot failed, error -1. do_boot_rockchip: Could not find mmcsda1 part switch to partitions #0, OK mmc1 is current device ** No partition table - mmc 1 ** switch to partitions #0, OK mmc0 is current device Scanning mmc 0:1... Found U-Boot script /boot/boot.scr 3045 bytes read in 25 ms (118.2 KiB/s) ## Executing script at 00500000 Boot script loaded from mmc 0 138 bytes read in 22 ms (5.9 KiB/s) ** File not found /boot/uInitrd ** 10786824 bytes read in 504 ms (20.4 MiB/s) 65592 bytes read in 55 ms (1.1 MiB/s) ** File not found /boot/dtb/rockchip/overlay/rk3308-fixup.scr ** Wrong Ramdisk Image Format Ramdisk image is corrupt or invalid SCRIPT FAILED: continuing... Device 0: unknown device No ethernet found. missing environment variable: pxeuuid missing environment variable: bootfile Retrieving file: pxelinux.cfg/00000000 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/0000000 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/000000 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/00000 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/0000 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/000 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/00 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/0 No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/default-arm-rockchip No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/default-arm No ethernet found. missing environment variable: bootfile Retrieving file: pxelinux.cfg/default No ethernet found. Config file not found No ethernet found. => From the console, it looks to me like there might be a boot file missing or something, but I'm a total noob with linux/u-boot, so I'm not really sure what I'm looking at. More information: Build environment: Windows 10 using Ubuntu 20.04 WSL Repo was checked out this morning Tried deleting the whole local copy and starting from scratch to no avail Build command: ./compile.sh KERNEL_ONLY="no" KERNEL_CONFIGURE="no" KERNEL_KEEP_CONFIG="no" BUILD_MINIMAL="" BUILD_DESKTOP="no" BOARD="rockpi-s" BRANCH="legacy" RELEASE="buster" Tried using Rufus and Etcher to write the SD image, also tried formatting using tool from Getting Started Guide Also, writing the SD card from Windows Reading console from UART0 on the board Image file (just in case I'm using the wrong one) is output/images/Armbian_20.11.0-trunk_Rockpi-s_buster_legacy_4.4.243_minimal.img Thanks for any and all advice!
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines