Jump to content

denni_isl

Members
  • Posts

    125
  • Joined

  • Last visited

Posts posted by denni_isl

  1. This is in /etc/dnsmasq.conf

    interface=eth0
    # listen=192.168.4.1
    dhcp-range=192.168.4.8,192.168.4.250,255.255.255.0,12h
     server=8.8.8.8
    # domain-deeded
     bogus-priv
    

     

    sudo systemctl restart dnsmasq.service

     

    and sudo nmtui, edit connection, wired connection, edit ipv4 configuration,  Manual (Shared) 192.168.4.1/24, ok

     

  2. Sharing is caring. 

     

    Did finally manage to get this working.   So lets make it simple clever.

     

    Actually i did this on a 64bit raspian light kernel 6.1 but it must be the same on Armbian 

     

    10 jan 24

     

        Sharing the Raspberry Pi's WiFi over the ethernet port

    sudo apt get update && sudo apt install dnsmasq iptables iptables-persistent dhcpcd5
    sudo vim /etc/dhcpcd.conf
        interface eth0
        static ip_address=192.168.4.1/24
    -------
    sudo mv /etc/dnsmasq.conf /etc/dnsmasq.conf.bk
    sudo nano /etc/dnsmasq.conf -
     interface=eth0

    dhcp-range=192.168.4.8,192.168.4.250,255.255.255.0,12h

    server=8.8.8.8

    bogus-priv
    ------

    sudo systemctl restart dnsmasq.service

    ------
    sudo vim /etc/sysctl.conf
        net.ipv4.ip_forward=1
    -------
    sudo systemctl start dnsmasq
    -------
    sudo sh -c "echo 1 > /proc/sys/net/ipv4/ip_forward"
    -------

    sudo iptables -t nat -A POSTROUTING -o wlan0 -j MASQUERADE
    sudo iptables -A FORWARD -i wlan0 -o eth0 -m state --state RELATED,ESTABLISHED -j ACCEPT
    sudo iptables -A FORWARD -i eth0 -o wlan0 -j ACCEPT
    -------
    sudo iptables -L -n -v
    ----------
    sudo sh -c "iptables-save > /etc/iptables.ipv4.nat"
    ---------
    sudo vim /etc/rc.local
        iptables-restore < /etc/iptables.ipv4.nat
    exit0
    ---------
    sudo reboot
    --------

    Did get a perfect internet connection on odroid n2+ through eth0 - so the rpi4b is now supplying wifi for that board and providing petitboot with netbooting images through netboot_default after exit to shell.

     

     

  3. - To my surprice I was able to upgrade odroid-n2+ to kernel 6.0.10 on a debian
      bookworm install.  Had previously tried to compile kernel 6.0.9 and 6.0.10 from
    kernel.org and also through the armbian build with no success.  The 6.0.9 and 6.0.10
    from kernel.org did work but did both lack wifi connections - did try many dongle
    without success.   This deb package from imola.armbian.com do work like a charm on
    debian bookworm.    
         -------------------------------------

     

    Did download https://imola.armbian.com/beta/pool/main/l/

     

    linux-dtb-edge-meson64_22.11.0-trunk.0138_arm64.deb
    linux-headers-edge-meson64_22.11.0-trunk.0138_arm64.deb
    linux-image-edge-meson64_22.11.0-trunk.0138_arm64.deb
    linux-source-edge-meson64_22.11.0-trunk.0138_all.deb

     

    and did dpkg -i linux............deb

     

        --------------------------------------

    ls /boot
    armbianEnv.txt                  Image
    armbianEnv.txt.out              initrd.img-6.0.10-meson64
    armbian_first_run.txt.template  System.map-6.0.10-meson64
    boot.bmp                        uImage
    boot.cmd                        uInitrd
    boot.scr                        uInitrd-6.0.10-meson64
    config-6.0.10-meson64           vmlinuz-6.0.10
    dtb                             vmlinuz-6.0.10-meson64
    dtb-6.0.10-meson64
       --------------------------
    ➜  src cat /etc/os-release
    PRETTY_NAME="Debian GNU/Linux bookworm/sid"
    NAME="Debian GNU/Linux"
    VERSION_CODENAME=bookworm
    ID=debian
       --------------------------  
    OS: Armbian (22.08.8) aarch64
    Host: Hardkernel ODROID-N2Plu
    Kernel: 6.0.10-meson64
       -------------------------

     

     

  4.    

    Use at your own risk and practice with less important drive (of course).

        ----------------- copy hard drive to .img(.gz) and .img(.gz) hard drive ----

     

    * boot your computer up with a live usb or sd wit gparted > unmount the disk you want to copy >

     gparted > make the last partition smaller but leave some small additional space > check filesystem

     

    * to copy used partitions  over to your_hard_drive_copy .img.gz ;
      - calculate >  count= (gparted last sector of the alst partition (/)  right mouse button, information, last sector  * 512 / bs=4096  >

     

    * calculate in console;

    expr 22171647 \* 512 / 4096 = 2771455   -(2771456)) (+1 sector).  - last sector +1 * 512 / 4096 = last sector in bs=4096

     

    *  copy used partitions  /dev/sdc á .img og .img.gz;  

                   sudo dd if=/dev/sdc bs=4096 count=2771456 conv=sync,noerror status=progress of=manjaro_vim3_38okt20.img && gzip manjaro_khad_aml_mini.img

     

    * .img over to /dev/sda;

                 dd if=hard_drive_backup.img of=/dev/sda bs=1m status=progress ; sync,
     

    * when restored one need to boot again with a live usb or cd with gparted and umount the disk > resize >  check filesystem

        ------------------------------------------------------

  5. The console is completely different now - it used to be blurred.  I usually set up usable console; sudo apt install console-data console-setup  (for right keyboard)  and sudo dpkg-reconfigure keyboard-configuration and sudo dpkg-reconfigure console-data > sudo dpkg-reconfigure console-setup - utf8 - latin1 - termus - 11x22

     

    Now the console on firefly-rk3399 is Cristal clear with the new kernel 6 


  6. 3 Nov 22

    Was able to compile Armbian (22.11.0-trunk) Kernel: 6.0.6-media for firefly-rk3399 with

    sudo ./compile.sh CLEAN_LEVEL=make,debs,images,alldebs,cache EXTRAWIFI=yes CREATE_PATCHES=yes
    EXPERT=yes NO_APT_CACHER=yes

     

    and apply this patch to drivers/usb/dwc3/core.c

    + #include <linux/ectcon.h>

     

    and copy /boot/dtb/rockchip/firefly-rk3399.dtb from a SD card with Arbian with kernel 5.15.27-media
    to /boot/dtb/rockchip/ on the new Armbian 22.11.0-trunk kernel 6.0.6 image

     

     

  7. Did get Arbian 22.08 bullseye kernel 5.19.16-media to work by copying rk3399-firefly.dtb from a working 5.15.27-media

     

    The boot up error

     

    Quote

    fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected!

     

    Found this

     

    Spoiler

    Without this patch the Firefly-RK3399 board boot process hangs after these lines: fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected! fan53555-reg: supplied by vcc_sys vcc1v8_s3: supplied by vcc_1v8 Blacklisting driver fan53555 allows booting. The device tree uses a value of fcs,suspend-voltage-selector different to any other board. Changing this setting to the usual value is sufficient to enable booting. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> --- arch/arm64/boot/dts/rockchip/rk3399-firefly.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts b/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts index 4f28628aa091..50940ef844a7 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts +++ b/arch/arm64/boot/dts/rockchip/rk3399-firefly.dts @@ -458,7 +458,7 @@ vdd_cpu_b: regulator@40 { compatible = "silergy,syr827"; reg = <0x40>; - fcs,suspend-voltage-selector = <0>; + fcs,suspend-voltage-selector = <1>; regulator-name = "vdd_cpu_b"; regulator-min-microvolt = <712500>; regulator-max-microvolt = <1500000>; -- 2.17.1

     

  8. The newest images are not booting out of the box  did though get Armbian_22.11.0-trunk_Firefly-rk3399_sid_current_5_19.14.img to boot

     

    Quote

    changing  extlinux.conf - fdt /boot/dtb/rockchip/rk3399-roc-pc-plus.dtb 

     

    - it is working quite well with rk3399-roc-pc-plus device blog except there is no wifi at all.

     

    Trying to compile with this line bullseye kernel 5.19 server image

     

    Quote

    sudo ./compile.sh CLEAN_LEVEL=make,debs,images,alldebs,cache EXTRAWIFI=yes CREATE_PATCHES=yes EXPERT=yes NO_APT_CACHER=yes

     

    get tihis error;

    Quote

    drivers/usb/dwc3/host.c:110:11: error: ‘struct dwc3’ has no member named ‘xhci_trb_ent_quirk’; did you mean ‘dis_u1_entry_quirk’?
    make[3]: *** [scripts/Makefile.build:249: drivers/usb/dwc3/host.o] Error 1
    make[2]: *** [scripts/Makefile.build:466: drivers/usb/dwc3] Error 2
    make[1]: *** [scripts/Makefile.build:466: drivers/usb] Error 2
    make: *** [Makefile:1846: drivers] Error 2
    [ error ] ERROR in function compile_kernel [ functions/cli/cli-entrypoint.sh:108 -> functions/main/default-build.sh:63 -> functions/compilation/kernel.sh:142 -> functions/logging/traps.sh:0 ]
    [ error ] Kernel was not built [ @host ]
    [ o.k. ] Process terminated

        -------------

    This is beound my scope

    This seems to be the case

     

    https://www.kernel.org/doc/html/v5.16/driver-api/usb/dwc3.html

     

     

  9. This error was common on my nanopim4v2 and i did have to start it manually all the time.  Did fix it by adding

    rootdelay=5 in /boot/armbianEnv.txt and with the help of serial adapter did  apply this method to u-boot. 

    Stop u-boot, printenv (inspecting),  setenv bootdelay 5, saveenv (printenv to see if bootdelay shanged), reset.  

     

    Side issue.  The gparted icon did not start gparted on "Armbian 22.02.1 Focal with Linux 5.15.25-rockchip64" rockpro64.   Installing poicykit-1-gnome did fix that after reboot.   Now it ask for password while starting.

     

  10. To turn off the annoying heartbeat blue light.

     

    Quote

    Become a root;

    su

     

    to see the possibilities;

    cat /sys/class/leds/green:work/trigger

     

    to turn off the blue heartbeat light;

    echo none > /sys/class/leds/green:work/trigger

     

    make a script and let /etc/rc.local run it at startup

    script;

    #!/bin/bash

    echo none > /sys/class/leds/green:work/trigger

    make the script executable

    chmod +x turn_off_blue_light.sh

     

    /etc/rc.local

    #!/bin/sh -e

    /path/to/turn_off_blue_light.sh

    exit 0

     

     

     

     

     

     

  11. Did try few resent images as of beginning of feb 21 for nanopi-m4v2 and compiled my own using the armbian build and tried to move u-boot support for hdmi - bud did have to plug the hdmi cable after starting kernel ....  

     

    This pilter75 image does bypass u-boot hdmi and therefore allows the kernel control of hdmi

    https://users.armbian.com/piter75/Armbian_21.05.0-trunk_Nanopim4v2_buster_current_5.10.18_minimal-stability-fix.img.xz

     

    There is one problem - USB 3 do flicker.  It is not possible to restore with rsync.    

    Might be because I did install full firmware or overclocking.  

     

    Edit:

    It is either - USB is working okay without full firmware and overclocking.

  12. And the legacy kernel that does always boot up - mbian 21.02.1 Bullseye with Linux 4.4.213-rk3399.

     

    Spoiler

    [    2.715597] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-2
    41330                                                                           
    [    2.716296] dma-pl330 ff6d0000.dma-controller:       DBUFF-32x8bytes Num_Chan
    s-6 Num_Peri-12 Num_Events-12                                                   
    [    2.718568] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-2
    41330                                                                           
    [    2.719281] dma-pl330 ff6e0000.dma-controller:       DBUFF-128x8bytes Num_Cha
    ns-8 Num_Peri-20 Num_Events-16                                                  
    [    2.721123] rockchip-system-monitor rockchip-system-monitor: system monitor p
    robe                                                                            
    [    2.723158] Serial: 8250/16550 driver, 5 ports, IRQ sharing disabled         
    [    2.724419] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 36, base_baud =
    1500000) is a 16550A                                                            
    [    2.725735] ff370000.serial: ttyS4 at MMIO 0xff370000 (irq = 38, base_baud =
    1500000) is a 16550A                                                            
    [    2.727589] [drm] Initialized drm 1.1.0 20060810                             
    [    2.731608] [drm] Rockchip DRM driver version: v1.0.1                        
    [    2.732402] rockchip-drm display-subsystem: dmc is disabled                  
    [    2.733201] rockchip-vop ff900000.vop: missing rockchip,grf property         
    [    2.734035] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffffff8
    008c77d50)                                                                      
    [    2.734821] rockchip-vop ff8f0000.vop: missing rockchip,grf property         
    [    2.735575] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffffff8
    008c77d50)                                                                      
    [    2.736356] ERROR: Bad of_node_put() on /hdmi@ff940000/ports/port/endpoint@1
    [    2.736997] CPU: 5 PID: 1 Comm: swapper/0 Not tainted 4.4.213-rk3399 #14     
    [    2.737608] Hardware name: Rockchip RK3399 Firefly Board (Linux Opensource) (
    DT)                                                                             
    [    2.738287] Call trace:                                                      
    [    2.738536] [<ffffff800808803c>] dump_backtrace+0x0/0x21c                    
    [    2.739035] [<ffffff800808827c>] show_stack+0x24/0x30                        
    [    2.739500] [<ffffff80084e3c68>] dump_stack+0xa4/0xcc                        
    [    2.739965] [<ffffff80089946c4>] of_node_release+0x3c/0xb0                   
    [    2.740474] [<ffffff80084e5f4c>] kobject_put+0x168/0x1a4                     
    [    2.740959] [<ffffff8008993cfc>] of_node_put+0x24/0x30                       
    [    2.741435] [<ffffff800898f480>] __of_get_next_child+0x34/0x60               
    [    2.741968] [<ffffff800898f4ec>] of_get_next_child+0x40/0x64                 
    [    2.742487] [<ffffff8008992f80>] of_graph_get_next_endpoint+0xf0/0x134       
    [    2.743080] [<ffffff8008610954>] drm_of_find_possible_crtcs+0x68/0xe4        
    [    2.743671] [<ffffff8008612fe0>] dw_hdmi_rockchip_bind+0xb8/0x5b8            
    [    2.744230] [<ffffff8008644b6c>] component_bind_all+0x134/0x200              
    [    2.744773] [<ffffff800861a73c>] rockchip_drm_bind+0x494/0x192c              
    [    2.745317] [<ffffff80086446a8>] try_to_bring_up_master.part.2+0xa0/0x114    
    [    2.745931] [<ffffff80086447ec>] component_master_add_with_match+0xd0/0x124  
    [    2.746568] [<ffffff80089c137c>] rockchip_drm_platform_probe+0x270/0x28c     
    [    2.747183] [<ffffff800864c440>] platform_drv_probe+0x5c/0xb0                
    [    2.747714] [<ffffff800864a270>] driver_probe_device+0x244/0x3a0             
    [    2.748268] [<ffffff800864a420>] __driver_attach+0x54/0xa0                   
    [    2.748776] [<ffffff80086482d8>] bus_for_each_dev+0x88/0x98                  
    [    2.749284] [<ffffff8008649bac>] driver_attach+0x30/0x3c                     
    [    2.749769] [<ffffff8008649784>] bus_add_driver+0x1ec/0x230                  
    [    2.750278] [<ffffff800864afa8>] driver_register+0xa0/0xd8                   
    [    2.750786] [<ffffff800864c384>] __platform_driver_register+0x58/0x64        
    [    2.751377] [<ffffff8009214d28>] rockchip_drm_platform_driver_init+0x1c/0x24
    [    2.752014] [<ffffff8008083134>] do_one_initcall+0x18c/0x194                 
    [    2.752535] [<ffffff80091e0db8>] kernel_init_freeable+0x210/0x214            
    [    2.753091] [<ffffff8008bb8868>] kernel_init+0x18/0xfc                       
    [    2.753564] [<ffffff8008082ef0>] ret_from_fork+0x10/0x20                     
    [    2.754281] i2c i2c-9: of_i2c: modalias failure on /hdmi@ff940000/ports      
    [    2.754906] dwhdmi-rockchip ff940000.hdmi: registered DesignWare HDMI I2C bus
     driver                                                                         
    [    2.755709] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a
     with HDCP (DWC HDMI 2.0 TX PHY)                                                
    [    2.757377] rockchip-drm display-subsystem: bound ff940000.hdmi (ops 0xffffff
    8008c6ce18)                                                                     
    [    2.758120] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).      
    [    2.758719] [drm] No driver support for vblank timestamp query.              
    [    2.759456] rockchip-drm display-subsystem: failed to parse loader memory    
    [    3.089513] rockchip-vop ff900000.vop: [drm:vop_crtc_enable] Update mode to 1
    920x1080p60, type: 11                                                           
    [    3.211203] Console: switching to colour frame buffer device 240x67          
    [    3.292438] rockchip-drm display-subsystem: fb0:  frame buffer device        
    [    3.326809] rc_core: IR keymap rc-cec not found                              
    [    3.327372] Registered IR keymap rc-empty                                    
    [    3.327955] rc rc0: RC for dw_hdmi as /devices/platform/ff940000.hdmi/rc/rc0
    [    3.329306] input: RC for dw_hdmi as /devices/platform/ff940000.hdmi/rc/rc0/i
    nput0                                                                           
    [    3.330694] Unable to detect cache hierarchy for CPU 0                       
    [    3.332494] brd: module loaded                                               
    [    3.339973] loop: module loaded                                              
    [    3.340919] lkdtm: No crash points registered, enable through debugfs        
    [    3.345252] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input).
    [    3.346102] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28).                 
    [    3.346810] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11).                 
    [    3.347502] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no).           
    [    3.348470] rk_gmac-dwmac fe300000.ethernet: cannot get clock clk_mac_speed  
    [    3.349290] rk_gmac-dwmac fe300000.ethernet: clock input from PHY            
    [    3.355013] rk_gmac-dwmac fe300000.ethernet: init for RGMII                  
    [    3.355834] stmmac - user ID: 0x10, Synopsys ID: 0x35                        
    [    3.356437]  Ring mode enabled                                               
    [    3.356801]  DMA HW capability register supported                            
    [    3.357368]  Normal descriptors                                              
    [    3.357780]  RX Checksum Offload Engine supported (type 2)                   
    [    3.358427]  TX Checksum insertion supported                                 
    [    3.358952]  Wake-Up On Lan supported                                        
    [    3.359439]  Enable RX Mitigation via HW Watchdog Timer                      
    [    3.445760] libphy: stmmac: probed                                           
    [    3.446177] eth%d: PHY ID 001cc915 at 0 IRQ POLL (stmmac-0:00) active        
    [    3.446954] eth%d: PHY ID 001cc915 at 1 IRQ POLL (stmmac-0:01)               
    [    3.449641] usbcore: registered new interface driver rndis_wlan              
    [    3.450642] Rockchip WiFi SYS interface (V1.00) ...                          
    [    3.451399] usbcore: registered new interface driver cdc_ether               
    [    3.452137] usbcore: registered new interface driver rndis_host              
    [    3.454702] rockchip-dwc3 usb0: failed to get drvdata dwc3                   
    [    3.460307] rockchip-dwc3 usb1: fail to get drvdata hcd                      
    [    3.462689] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver       
    [    3.463523] ehci-pci: EHCI PCI platform driver                               
    [    3.464129] ehci-platform: EHCI generic platform driver                      
    [    3.476363] ehci-platform fe3c0000.usb: EHCI Host Controller                 
    [    3.484759] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus
    number 1                                                                        
    [    3.493289] ehci-platform fe3c0000.usb: irq 30, io mem 0xfe3c0000            
    [    3.510784] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00           
    [    3.519190] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002    
    [    3.527526] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    3.535925] usb usb1: Product: EHCI Host Controller                          
    [    3.544120] usb usb1: Manufacturer: Linux 4.4.213-rk3399 ehci_hcd            
    [    3.552473] usb usb1: SerialNumber: fe3c0000.usb                             
    [    3.561173] hub 1-0:1.0: USB hub found                                       
    [    3.565000] hub 1-0:1.0: 1 port detected                                     
    [    3.569424] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver           
    [    3.573472] ohci-platform: OHCI generic platform driver                      
    [    3.577952] ohci-platform fe3e0000.usb: Generic Platform OHCI controller     
    [    3.582227] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus
    number 2                                                                        
    [    3.586482] ohci-platform fe3e0000.usb: irq 31, io mem 0xfe3e0000            
    [    3.646905] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001    
    [    3.650925] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    3.654957] usb usb2: Product: Generic Platform OHCI controller              
    [    3.658849] usb usb2: Manufacturer: Linux 4.4.213-rk3399 ohci_hcd            
    [    3.662701] usb usb2: SerialNumber: fe3e0000.usb                             
    [    3.666891] hub 2-0:1.0: USB hub found                                       
    [    3.670502] hub 2-0:1.0: 1 port detected                                     
    [    3.675091] usbcore: registered new interface driver cdc_acm                 
    [    3.678798] cdc_acm: USB Abstract Control Model driver for USB modems and ISD
    N adapters                                                                      
    [    3.682758] usbcore: registered new interface driver cdc_wdm                 
    [    3.686530] usbcore: registered new interface driver usbserial               
    [    3.690231] usbcore: registered new interface driver usbserial_generic       
    [    3.693959] usbserial: USB Serial support registered for generic             
    [    3.698623] usbcore: registered new interface driver iforce                  
    [    3.702291] usbcore: registered new interface driver xpad                    
    [    3.706025] usbcore: registered new interface driver usbtouchscreen          
    [    3.709626] <<-GTP-INFO->> GTP driver installing                             
    [    3.713489] .. rk pwm remotectl v1.1 init                                    
    [    3.717114] input: ff420030.pwm as /devices/platform/ff420030.pwm/input/input
    1                                                                               
    [    3.721098] remotectl-pwm ff420030.pwm: Missing psci property in the DT.     
    [    3.724952] sensor_register_slave:mma8452,id=17                              
    [    3.728477] sensor_register_slave:lis3dh,id=7                                
    [    3.731977] sensor_register_slave:mma7660,id=18                              
    [    3.735466] sensor_register_slave:lsm303d,id=22                              
    [    3.738937] sensor_register_slave:mpu6880_acc,id=24                          
    [    3.742429] sensor_register_slave:mpu6500_acc,id=25                          
    [    3.745896] sensor_register_slave:lsm330_acc,id=26                           
    [    3.749328] sensor_register_slave:akm8975,id=30                              
    [    3.752715] sensor_register_slave:akm8963,id=31                              
    [    3.756071] sensor_register_slave:l3g4200d,id=45                             
    [    3.759415] sensor_register_slave:l3g20d,id=46                               
    [    3.762706] sensor_register_slave:ewtsa,id=47                                
    [    3.765981] sensor_register_slave:lsm330_gyro,id=51                          
    [    3.769284] sensor_register_slave:cm3217,id=53                               
    [    3.772536] sensor_register_slave:cm3218,id=54                               
    [    3.776217] i2c /dev entries driver                                          
    [    3.780652] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected!   
    [    3.784218] fan53555-reg: supplied by vcc5v0_sys                             
    [    3.789771] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected!   
    [    3.793298] fan53555-reg: supplied by vcc5v0_sys                             
    [    3.799465] rk808 0-001b: Pmic Chip id: 0x0                                  
    [    3.805897] rk808-regulator rk808-regulator: there is no dvs0 gpio           
    [    3.809412] rk808-regulator rk808-regulator: there is no dvs1 gpio           
    [    3.812926] DCDC_REG1: supplied by vcc3v3_sys                                
    [    3.816911] DCDC_REG2: supplied by vcc3v3_sys                                
    [    3.820708] DCDC_REG3: supplied by vcc3v3_sys                                
    [    3.824181] DCDC_REG4: supplied by vcc3v3_sys                                
    [    3.827786] LDO_REG1: supplied by vcc3v3_sys                                 
    [    3.832035] LDO_REG2: supplied by vcc3v3_sys                                 
    [    3.836109] LDO_REG3: supplied by vcc3v3_sys                                 
    [    3.840167] LDO_REG4: supplied by vcc3v3_sys                                 
    [    3.844144] LDO_REG5: supplied by vcc3v3_sys                                 
    [    3.848076] LDO_REG6: supplied by vcc3v3_sys                                 
    [    3.851969] LDO_REG7: supplied by vcc3v3_sys                                 
    [    3.855833] LDO_REG8: supplied by vcc3v3_sys                                 
    [    3.859642] SWITCH_REG1: supplied by vcc3v3_sys                              
    [    3.862830] SWITCH_REG2: supplied by vcc3v3_sys                              
    [    3.869022] rk808-rtc rk808-rtc: rtc core: registered rk808-rtc as rtc0      
    [    3.872472] rk3x-i2c ff3c0000.i2c: Initialized RK3xxx I2C bus at ffffff80097d
    2000                                                                            
    [    3.876345] rk3x-i2c ff110000.i2c: Initialized RK3xxx I2C bus at ffffff80097d
    4000                                                                            
    [    3.878773] usb 1-1: new high-speed USB device number 2 using ehci-platform  
    [    3.882559] rockchip-pinctrl pinctrl: pin gpio4-17 already requested by ff940
    000.hdmi; cannot claim for ff130000.i2c                                         
    [    3.886013] rockchip-pinctrl pinctrl: pin-145 (ff130000.i2c) status -22      
    [    3.889118] rockchip-pinctrl pinctrl: could not request pin 145 (gpio4-17) fr
    om group i2c3-xfer  on device rockchip-pinctrl                                  
    [    3.892687] rk3x-i2c ff130000.i2c: Error applying setting, reverse things bac
    k                                                                               
    [    3.896324] rk3x-i2c ff130000.i2c: Initialized RK3xxx I2C bus at ffffff80097d
    6000                                                                            
    [    3.900802] fusb302 4-0022: Can't get property of role, set role to default D
    RP                                                                              
    [    3.913184] fusb302 4-0022: port 0 probe success with role ROLE_MODE_DRP, try
    _role ROLE_MODE_NONE                                                            
    [    3.916850] input: Typec_Headphone as /devices/platform/ff3d0000.i2c/i2c-4/4-
    0022/input/input2                                                               
    [    3.920558] rk3x-i2c ff3d0000.i2c: Initialized RK3xxx I2C bus at ffffff80097d
    8000                                                                            
    [    3.925313] rk-ov13850 1-0010: probing...                                    
    [    3.928408] rk-ov13850 1-0010: probing successful                            
    [    3.932328] usbcore: registered new interface driver uvcvideo                
    [    3.935601] USB Video Class driver (1.1.1)                                   
    [    3.940503] Boot mode: normal                                                
    [    3.944683] rk_tsadcv2_temp_to_code: Invalid conversion table: code=1023, tem
    perature=2147483647                                                             
    [    3.948494] rockchip-thermal ff260000.tsadc: tsadc is probed successfully!   
    [    3.952614] dw_wdt ff848000.watchdog: Should better to setup a 'resets' prope
    rty in dt, that must been named with reset                                      
    [    3.956976] device-mapper: uevent: version 1.0.3                             
    [    3.960646] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-d
    evel@redhat.com                                                                 
    [    3.965007] cpu cpu0: bin=1                                                  
    [    3.968302] cpu cpu0: leakage=31                                             
    [    3.983498] cpu cpu0: temp=36250, pvtm=149844 (150419 + -575)                
    [    3.987195] cpu cpu0: pvtm-volt-sel=2                                        
    [    3.990547] cpu cpu0: bin-scale=12                                           
    [    3.994150] cpu cpu4: bin=1                                                  
    [    3.997461] cpu cpu4: leakage=55                                             
    [    4.011520] usb 1-1: New USB device found, idVendor=1a40, idProduct=0201     
    [    4.012904] cpu cpu4: temp=36250, pvtm=160111 (160466 + -355)                
    [    4.012979] cpu cpu4: pvtm-volt-sel=3                                        
    [    4.013025] cpu cpu4: bin-scale=1                                            
    [    4.014216] cpu cpu0: avs=0                                                  
    [    4.014321] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0         
    [    4.014974] cpu cpu0: failed to find power_model node                        
    [    4.016027] cpu cpu4: avs=0                                                  
    [    4.016047] cpu cpu4: Failed to get scale rate, 1                            
    [    4.016133] cpu cpu4: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0         
    [    4.018934] cpu cpu4: failed to find power_model node                        
    [    4.019705] sdhci: Secure Digital Host Controller Interface driver           
    [    4.019706] sdhci: Copyright(c) Pierre Ossman                                
    [    4.019709] Synopsys Designware Multimedia Card Interface Driver             
    [    4.020191] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode
    .                                                                               
    [    4.020211] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller.    
    [    4.020221] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a                
    [    4.020246] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit
     host data width,256 deep fifo                                                  
    [    4.020293] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found           
    [    4.020294] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found          
    [    4.020692] dwmmc_rockchip fe320000.dwmmc: IDMAC supports 32-bit address mode
    .                                                                               
    [    4.020706] dwmmc_rockchip fe320000.dwmmc: Using internal DMA controller.    
    [    4.020712] dwmmc_rockchip fe320000.dwmmc: Version ID is 270a                
    [    4.020727] dwmmc_rockchip fe320000.dwmmc: DW MMC controller at irq 26,32 bit
     host data width,256 deep fifo                                                  
    [    4.020788] dwmmc_rockchip fe320000.dwmmc: No vmmc regulator found           
    [    4.020882] vcc_sd: unsupportable voltage range: 3300000-3000000uV           
    [    4.020891] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000
    done                                                                            
    [    4.020894] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000
    done                                                                            
    [    4.034836] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz,
    actual 400000HZ div = 0)                                                        
    [    4.050802] vcc_sd: unsupportable voltage range: 3300000-3000000uV           
    [    4.050807] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000
    done                                                                            
    [    4.050810] rockchip-iodomain ff770000.syscon:io-domains: Setting to 3000000
    done                                                                            
    [    4.050826] dwmmc_rockchip fe320000.dwmmc: 1 slots initialized               
    [    4.051069] sdhci-pltfm: SDHCI platform and OF driver helper                 
    [    4.052424] sdhci-arasan fe330000.sdhci: No vmmc regulator found             
    [    4.052426] sdhci-arasan fe330000.sdhci: No vqmmc regulator found            
    [    4.081052] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
    [    4.083047] usb 1-1: Product: USB 2.0 Hub [MTT]                              
    [    4.085261] hub 1-1:1.0: USB hub found                                       
    [    4.086808] mmc1: SDHCI controller on fe330000.sdhci [fe330000.sdhci] using A
    DMA                                                                             
    [    4.087381] ledtrig-cpu: registered to indicate activity on CPUs             
    [    4.087410] hidraw: raw HID events driver (C) Jiri Kosina                    
    [    4.087564] usbcore: registered new interface driver usbhid                  
    [    4.087565] usbhid: USB HID core driver                                      
    [    4.087634] ashmem: initialized                                              
    [    4.097837] hub 1-1:1.0: 7 ports detected                                    
    [    4.101353] Initializing XFRM netlink socket                                 
    [    4.103370] NET: Registered protocol family 10                               
    [    4.105454] lib80211: common routines for IEEE802.11 drivers                 
    [    4.107306] [WLAN_RFKILL]: Enter rfkill_wlan_init                            
    [    4.109181] [WLAN_RFKILL]: Enter rfkill_wlan_probe                           
    [    4.110887] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6354   
    [    4.112712] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
    [    4.114531] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gp
    io.                                                                             
    [    4.116411] [WLAN_RFKILL]: wlan_platdata_parse_dt: get property: WIFI,host_wa
    ke_irq = 3, flags = 0.                                                          
    [    4.118388] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found
     !                                                                              
    [    4.120242] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio                      
    [    4.121887] [WLAN_RFKILL]: Exit rfkill_wlan_probe                            
    [    4.123530] [BT_RFKILL]: Enter rfkill_rk_init                                
    [    4.125321] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_
    gpios = 83.                                                                     
    [    4.127299] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_
    gpio = 9.                                                                       
    [    4.129223] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_g
    pio = 90.                                                                       
    [    4.131132] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_h
    ost_irq = 4.                                                                    
    [    4.134046] [BT_RFKILL]: bluetooth_platdata_parse_dt: clk_get failed!!!.     
    [    4.136862] [BT_RFKILL]: Request irq for bt wakeup host                      
    [    4.139541] [BT_RFKILL]: ** disable irq                                      
    [    4.141131] [BT_RFKILL]: bt shut off power                                   
    [    4.162830] [BT_RFKILL]: bt_default device registered.                       
    [    4.164573] Key type dns_resolver registered                                 
    [    4.166195] sensor_register_slave:mpu6880_gyro,id=50                         
    [    4.167877] Error: Driver 'ov7750' is already registered, aborting...        
    [    4.169640] Error: Driver 'ov8858' is already registered, aborting...        
    [    4.171448] Error: Driver 'sc031gs' is already registered, aborting...       
    [    4.173645] cif_isp10_v4l2_drv_probe: CIF ISP10 driver version: v0.2.3       
    [    4.175497] cif_isp10_pltfrm_dev_init(886) ERR: could not get default pinstat
    e                                                                               
    [    4.177320] cif_isp10_pltfrm_dev_init WARN: could not get pins_sleep pinstate
    [    4.179125] cif_isp10_pltfrm_dev_init WARN: could not get pins_inactive pinst
    ate                                                                             
    [    4.192123] mmc1: new HS400 Enhanced strobe MMC card at address 0001         
    [    4.194181] mmcblk1: mmc1:0001 DJNB4R 116 GiB                                
    [    4.196310] mmcblk1boot0: mmc1:0001 DJNB4R partition 1 4.00 MiB              
    [    4.198586] mmcblk1boot1: mmc1:0001 DJNB4R partition 2 4.00 MiB              
    [    4.201016] mmcblk1rpmb: mmc1:0001 DJNB4R partition 3 4.00 MiB               
    [    4.203467]  mmcblk1: p1                                                     
    [    4.206921] rk-ov13850.ov_camera_module_write_config(180) ERR: no active sens
    or configuration                                                                
    [    4.207698] rk-ov13850.ov_camera_module_write_config(231) ERR: failed with er
    ror -14                                                                         
    [    4.211004] rk-ov13850.pltfrm_camera_module_read_reg(1035) ERR: i2c read from
     offset 0x0000300a failed with error -6                                         
    [    4.213333] rk-ov13850.pltfrm_camera_module_read_reg(1035) ERR: i2c read from
     offset 0x0000300b failed with error -6                                         
    [    4.215466] rk-ov13850.ov13850_check_camera_id(1858) ERR: register read faile
    d, camera module powered off?                                                   
    [    4.217519] rk-ov13850.ov13850_check_camera_id(1876) ERR: failed with error (
    -6)                                                                             
    [    4.219412] rk-ov13850.ov_camera_module_attach(254) ERR: failed with error -6
    [    4.221253] cif_isp10_img_src_v4l2_i2c_subdev_to_img_src(59) ERR: failed with
     error -6                                                                       
    [    4.223149] cif_isp10_img_src_to_img_src(70) ERR: to_img_src failed!         
    [    4.224901] cif_isp10_img_src_to_img_src(78) ERR: failed with error -14      
    [    4.226681] cif_isp10_img_srcs_init(1105) ERR: failed with error -14         
    [    4.228437] cif_isp10_create(6101) ERR: cif_isp10_img_srcs_init failed       
    [    4.230202] cif_isp10_create(6139) ERR: failed with error -14                
    [    4.232310] Registered cp15_barrier emulation handler                        
    [    4.234097] Registered setend emulation handler                              
    [    4.237205] registered taskstats version 1                                   
    [    4.238788] Loading compiled-in X.509 certificates                           
    [    4.241697] Btrfs loaded, integrity-checker=on                               
    [    4.243344] BTRFS: selftest: Running btrfs free space cache tests            
    [    4.245054] BTRFS: selftest: Running extent only tests                       
    [    4.246653] BTRFS: selftest: Running bitmap only tests                       
    [    4.248246] BTRFS: selftest: Running bitmap and extent tests                 
    [    4.249874] BTRFS: selftest: Running space stealing from bitmap to extent    
    [    4.251874] BTRFS: selftest: Free space cache tests finished                 
    [    4.253501] BTRFS: selftest: Running extent buffer operation tests           
    [    4.254058] BTRFS: selftest: Running btrfs_split_item tests                  
    [    4.256839] BTRFS: selftest: Running find delalloc tests                     
    [    4.362023] BTRFS: selftest: Running btrfs_get_extent tests                  
    [    4.363777] BTRFS: selftest: Running hole first btrfs_get_extent test        
    [    4.365484] BTRFS: selftest: Running outstanding_extents tests               
    [    4.367164] BTRFS: selftest: Running qgroup tests                            
    [    4.368692] BTRFS: selftest: Qgroup basic add                                
    [    4.370210] BTRFS: selftest: Qgroup multiple refs test                       
    [    4.371016] usb 1-1.3: new high-speed USB device number 3 using ehci-platform
    [    4.421950] Key type encrypted registered                                    
    [    4.424547] rga2: Driver loaded successfully ver:3.02                        
    [    4.426594] rga2: Module initialized.                                        
    [    4.429008] phy phy-ff770000.syscon:usb2-phy@e450.7: Failed to get VBUS suppl
    y regulator                                                                     
    [    4.436002] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller                   
    [    4.442452] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus nu
    mber 3                                                                          
    [    4.449041] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110
     quirks 0x06030010                                                              
    [    4.455655] xhci-hcd xhci-hcd.8.auto: irq 229, io mem 0xfe800000             
    [    4.462245] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002    
    [    4.468676] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    4.475157] usb usb3: Product: xHCI Host Controller                          
    [    4.481446] usb usb3: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd            
    [    4.487891] usb usb3: SerialNumber: xhci-hcd.8.auto                          
    [    4.495299] hub 3-0:1.0: USB hub found                                       
    [    4.501613] hub 3-0:1.0: 1 port detected                                     
    [    4.508044] usb 1-1.3: New USB device found, idVendor=1a40, idProduct=0101   
    [    4.508520] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller                   
    [    4.508858] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus nu
    mber 4                                                                          
    [    4.508905] usb usb4: We don't know the algorithms for LPM for this host, dis
    abling LPM.                                                                     
    [    4.508950] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003    
    [    4.508953] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    4.508955] usb usb4: Product: xHCI Host Controller                          
    [    4.508957] usb usb4: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd            
    [    4.508959] usb usb4: SerialNumber: xhci-hcd.8.auto                          
    [    4.509228] hub 4-0:1.0: USB hub found                                       
    [    4.509239] hub 4-0:1.0: 1 port detected                                     
    [    4.510171] xhci-hcd xhci-hcd.8.auto: remove, state 1                        
    [    4.510182] usb usb4: USB disconnect, device number 1                        
    [    4.526447] xhci-hcd xhci-hcd.8.auto: Host not halted after 16000 microsecond
    s.                                                                              
    [    4.526450] xhci-hcd xhci-hcd.8.auto: Host controller not halted, aborting re
    set.                                                                            
    [    4.526481] xhci-hcd xhci-hcd.8.auto: USB bus 4 deregistered                 
    [    4.526577] xhci-hcd xhci-hcd.8.auto: remove, state 1                        
    [    4.526586] usb usb3: USB disconnect, device number 1                        
    [    4.526928] xhci-hcd xhci-hcd.8.auto: USB bus 3 deregistered                 
    [    4.531712] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller                   
    [    4.531867] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus nu
    mber 3                                                                          
    [    4.531986] xhci-hcd xhci-hcd.9.auto: hcc params 0x0220fe64 hci version 0x110
     quirks 0x06030010                                                              
    [    4.532010] xhci-hcd xhci-hcd.9.auto: irq 230, io mem 0xfe900000             
    [    4.532117] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002    
    [    4.532120] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    4.532122] usb usb3: Product: xHCI Host Controller                          
    [    4.532124] usb usb3: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd            
    [    4.532126] usb usb3: SerialNumber: xhci-hcd.9.auto                          
    [    4.532344] hub 3-0:1.0: USB hub found                                       
    [    4.532356] hub 3-0:1.0: 1 port detected                                     
    [    4.532492] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller                   
    [    4.532568] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus nu
    mber 4                                                                          
    [    4.532595] usb usb4: We don't know the algorithms for LPM for this host, dis
    abling LPM.                                                                     
    [    4.532637] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003    
    [    4.532639] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    4.532641] usb usb4: Product: xHCI Host Controller                          
    [    4.532643] usb usb4: Manufacturer: Linux 4.4.213-rk3399 xhci-hcd            
    [    4.532644] usb usb4: SerialNumber: xhci-hcd.9.auto                          
    [    4.532842] hub 4-0:1.0: USB hub found                                       
    [    4.532854] hub 4-0:1.0: 1 port detected                                     
    [    4.536757] ehci-platform fe380000.usb: EHCI Host Controller                 
    [    4.536972] ehci-platform fe380000.usb: new USB bus registered, assigned bus
    number 5                                                                        
    [    4.537048] ehci-platform fe380000.usb: irq 28, io mem 0xfe380000            
    [    4.546972] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00           
    [    4.547190] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002    
    [    4.547196] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    4.547200] usb usb5: Product: EHCI Host Controller                          
    [    4.547204] usb usb5: Manufacturer: Linux 4.4.213-rk3399 ehci_hcd            
    [    4.547208] usb usb5: SerialNumber: fe380000.usb                             
    [    4.547849] hub 5-0:1.0: USB hub found                                       
    [    4.547874] hub 5-0:1.0: 1 port detected                                     
    [    4.548761] ohci-platform fe3a0000.usb: Generic Platform OHCI controller     
    [    4.549051] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus
    number 6                                                                        
    [    4.549165] ohci-platform fe3a0000.usb: irq 29, io mem 0xfe3a0000            
    [    4.606963] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001    
    [    4.606967] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=
    1                                                                               
    [    4.606970] usb usb6: Product: Generic Platform OHCI controller              
    [    4.606973] usb usb6: Manufacturer: Linux 4.4.213-rk3399 ohci_hcd            
    [    4.606976] usb usb6: SerialNumber: fe3a0000.usb                             
    [    4.607641] hub 6-0:1.0: USB hub found                                       
    [    4.607665] hub 6-0:1.0: 1 port detected                                     
    [    4.608733] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode
    .                                                                               
    [    4.608768] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller.    
    [    4.608776] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a                
    [    4.608800] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 25,32 bit
     host data width,256 deep fifo                                                  
    [    4.608869] dwmmc_rockchip fe310000.dwmmc: No vmmc regulator found           
    [    4.608872] dwmmc_rockchip fe310000.dwmmc: No vqmmc regulator found          
    [    4.609155] dwmmc_rockchip fe310000.dwmmc: allocated mmc-pwrseq              
    [    4.626910] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz,
    actual 400000HZ div = 0)                                                        
    [    4.642965] dwmmc_rockchip fe310000.dwmmc: 1 slots initialized               
    [    4.643824] asoc-simple-card hdmi-codec: i2s-hifi <-> ff8a0000.i2s mapping ok
    [    4.645994] rockchip-spdif ff870000.spdif: Missing dma channel for stream: 0
    [    4.645996] rockchip-spdif ff870000.spdif: ASoC: pcm constructor failed: -22
    [    4.645999] asoc-simple-card spdif-sound: ASoC: can't create pcm ff870000.spd
    if-dit-hifi :-22                                                                
    [    4.646001] asoc-simple-card spdif-sound: ASoC: failed to instantiate card -2
    2                                                                               
    [    4.647082] asoc-simple-card: probe of spdif-sound failed with error -22     
    [    4.648035] input: gpio-keys as /devices/platform/gpio-keys/input/input3     
    [    4.648095] dhd_module_init: in Dongle Host Driver, version 1.579.77.41.22 (r
    -20191105-2)(20191120-1)                                                        
    [    4.648097] ======== dhd_wlan_init_plat_data ========                        
    [    4.648100] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter                  
    [    4.648104] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=70, oob_irq_flags=0x
    414                                                                             
    [    4.648105] dhd_wlan_init_gpio: WL_REG_ON=-1                                 
    [    4.648106] dhd_wifi_platform_load: Enter                                    
    [    4.648108] Power-up adapter 'DHD generic adapter'                           
    [    4.648125] wifi_platform_set_power = 1                                      
    [    4.648126] ======== PULL WL_REG_ON(-1) HIGH! ========                       
    [    4.648128] [WLAN_RFKILL]: rockchip_wifi_power: 1                            
    [    4.648130] [WLAN_RFKILL]: wifi turn on power. -1                            
    [    4.651315] rk808-rtc rk808-rtc: setting system clock to 2021-02-16 12:14:44
    UTC (1613477684)                                                                
    [    4.651326] of_cfs_init                                                      
    [    4.651367] of_cfs_init: OK                                                  
    [    4.662490] ALSA device list:                                                
    [    4.662492]   #0: Dummy 1                                                    
    [    4.662493]   #1: Loopback 1                                                 
    [    4.662494]   #2: HDMI-CODEC                                                 
    [    4.677195] vendor storage:20190527 ret = 0                                  
    [    4.685630] mmc2: queuing unknown CIS tuple 0x80 (2 bytes)                   
    [    4.687192] mmc2: queuing unknown CIS tuple 0x80 (3 bytes)                   
    [    4.688754] mmc2: queuing unknown CIS tuple 0x80 (3 bytes)                   
    [    4.691559] mmc2: queuing unknown CIS tuple 0x80 (7 bytes)                   
    [    4.746936] mmc_host mmc2: Bus speed (slot 0) = 50000000Hz (slot req 50000000
    Hz, actual 50000000HZ div = 0)                                                  
    [    4.756413] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 316   
    [    4.759550] mmc2: queuing unknown CIS tuple 0x91 (3 bytes)                   
    [    4.759575] mmc2: new ultra high speed SDR104 SDIO card at address 0001      
    [    4.924471] usb 1-1.3: New USB device strings: Mfr=0, Product=1, SerialNumber
    =0                                                                              
    [    4.924474] usb 1-1.3: Product: USB 2.0 Hub                                  
    [    4.925204] hub 1-1.3:1.0: USB hub found                                     
    [    4.925440] hub 1-1.3:1.0: 4 ports detected                                  
    [    4.938247] Freeing unused kernel memory: 1088K                              
    [    4.950908] wifi_platform_bus_enumerate device present 1                     
    [    4.950911] ======== Card detection to detect SDIO card! ========            
    [    4.950915] mmc2:mmc host rescan start!                                      
    [    4.967106] bcmsdh_register: register client driver                          
    [    4.971257] bcmsdh_sdmmc_probe: Enter num=1                                  
    [    4.991782] bcmsdh_sdmmc_probe: Enter num=2                                  
    [    4.998982] usb 1-1.4: new high-speed USB device number 4 using ehci-platform
    [    5.023238] bus num (host idx)=2, slot num (rca)=1                           
    [    5.023246] found adapter info 'DHD generic adapter'                         
    [    5.023465] sdioh_attach: set sd_f2_blocksize 256                            
    [    5.023666] sdioh_attach: sd clock rate = 0                                  
    [    5.024305] dhdsdio_probe : no mutex held. set lock                          
    [    5.024731] F1 signature read @0x18000000=0x17224356                         
    [    5.028997] F1 signature OK, socitype:0x1 chip:0x4354 rev:0x2 pkg:0x2        
    [    5.029421] DHD: dongle ram size is set to 786432(orig 786432) at 0x180000   
    [    5.029493] [dhd] dhd_conf_set_chiprev : chip=0x4354, chiprev=2              
    [    5.029676] [dhd] CFG80211-ERROR) wl_setup_wiphy : Registering Vendor80211   
    [    5.029974] [dhd] CFG80211-ERROR) wl_setup_wiphy : SAE support               
    [    5.030262] [dhd] CFG80211-ERROR) wl_init_prof : wl_init_prof: No profile    
    [    5.030772] dhd_attach(): thread:dhd_watchdog_thread:df started              
    [    5.030946] dhd_attach(): thread:dhd_dpc:e0 started                          
    [    5.031176] dhd_attach(): thread:dhd_rxf:e1 started                          
    [    5.031183] dhd_deferred_work_init: work queue initialized                   
    [    5.031186] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 2       
    [    5.031206] dhd_bus_set_default_min_res_mask: Unhandled chip id              
    [    5.031428] sdioh_cis_read: func_cis_ptr[0]=0x10ac                           
    [    5.039124] Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(2019112
    0-1)                                                                            
    [    5.039612] Register interface [wlan0]  MAC: cc:4b:73:1d:de:88               
    [    5.039612]                                                                  
    [    5.039845] dhd_tcpack_suppress_set: TCP ACK Suppress mode 2 -> mode 0       
    [    5.039854] dhd_wl_ioctl: returning as busstate=0                            
    [    5.039857] dhd_dbg_detach_pkt_monitor, 2204                                 
    [    5.039859] dhd_bus_devreset: == Power OFF ==                                
    [    5.040051] bcmsdh_oob_intr_unregister: Enter                                
    [    5.040053] bcmsdh_oob_intr_unregister: irq is not registered                
    [    5.040060] dhd_txglom_enable: enable 0                                      
    [    5.040062] dhd_bus_devreset:  WLAN OFF DONE                                 
    [    5.040096] wifi_platform_set_power = 0                                      
    [    5.040098] ======== PULL WL_REG_ON(-1) LOW! ========                        
    [    5.040101] [WLAN_RFKILL]: rockchip_wifi_power: 0                            
    [    5.040348] [WLAN_RFKILL]: wifi shut off power.                              
    [    5.040352] dhdsdio_probe : the lock is released.                            
    [    5.040466] dhd_module_init: Exit err=0                                      
    [    5.126471] usb 1-1.4: New USB device found, idVendor=0d8c, idProduct=0004   
    [    5.126476] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber
    =0                                                                              
    [    5.126480] usb 1-1.4: Product: USB2.0 High-Speed True HD Audio              
    [    5.126483] usb 1-1.4: Manufacturer: C-Media Electronics Inc.                
    [    5.136284] input: C-Media Electronics Inc. USB2.0 High-Speed True HD Audio a
    s /devices/platform/fe3c0000.usb/usb1/1-1/1-1.4/1-1.4:1.2/0003:0D8C:0004.0001/in
    put/input4                                                                      
    [    5.191899] hid-generic 0003:0D8C:0004.0001: input,hidraw0: USB HID v1.00 Dev
    ice [C-Media Electronics Inc. USB2.0 High-Speed True HD Audio] on usb-fe3c0000.u
    sb-1.4/input2                                                                   
    [    5.226938] usb 1-1.3.2: new full-speed USB device number 5 using ehci-platfo
    rm                                                                              
    [    5.354240] usb 1-1.3.2: language id specifier not provided by device, defaul
    ting to English                                                                 
    [    5.367890] usb 1-1.3.2: New USB device found, idVendor=0c45, idProduct=7403
    [    5.372284] usb 1-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNumb
    er=0                                                                            
    [    5.385234] input: HID 0c45:7403 as /devices/platform/fe3c0000.usb/usb1/1-1/1
    -1.3/1-1.3.2/1-1.3.2:1.0/0003:0C45:7403.0002/input/input5                       
    [    5.447664] hid-generic 0003:0C45:7403.0002: input,hidraw1: USB HID v1.00 Key
    board [HID 0c45:7403] on usb-fe3c0000.usb-1.3.2/input0                          
    [    5.456558] input: HID 0c45:7403 as /devices/platform/fe3c0000.usb/usb1/1-1/1
    -1.3/1-1.3.2/1-1.3.2:1.1/0003:0C45:7403.0003/input/input6                       
    [    5.475144] hid-generic 0003:0C45:7403.0003: input,hidraw2: USB HID v1.10 Mou
    se [HID 0c45:7403] on usb-fe3c0000.usb-1.3.2/input1                             
    [    5.836406] EXT4-fs (mmcblk1p1): mounted filesystem with ordered data mode. O
    pts: (null)                                                                     
    [    6.066050] ip_tables: (C) 2000-2006 Netfilter Core Team                     
    [    6.076387] cgroup: cgroup2: unknown option "nsdelegate,memory_recursiveprot"
    [    6.085257] cgroup: cgroup2: unknown option "nsdelegate"                     
    [    6.100623] systemd[1]: systemd 247.3-1 running in system mode. (+PAM +AUDIT
    +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +A
    CL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hier
    archy=unified)                                                                  
    [    6.116078] systemd[1]: Detected architecture arm64.                         
    [    6.143150] systemd[1]: Set hostname to <firefly-rk3399>.                    
    [    6.215610] systemd-sysv-generator[287]: SysV service '/etc/init.d/hostapd' l
    acks a native systemd unit file. Automatically generating a unit file for compat
    ibility. Please update package to include a native systemd unit file, in order t
    o make it more safe and robust.                                                 
    [    6.230969] systemd-sysv-generator[287]: SysV service '/etc/init.d/cpufrequti
    ls' lacks a native systemd unit file. Automatically generating a unit file for c
    ompatibility. Please update package to include a native systemd unit file, in or
    der to make it more safe and robust.                                            
    [    6.244755] systemd-sysv-generator[287]: SysV service '/etc/init.d/rng-tools-
    debian' lacks a native systemd unit file. Automatically generating a unit file f
    or compatibility. Please update package to include a native systemd unit file, i
    n order to make it more safe and robust.                                        
    [    6.264045] systemd-sysv-generator[287]: SysV service '/etc/init.d/loadcpufre
    q' lacks a native systemd unit file. Automatically generating a unit file for co
    mpatibility. Please update package to include a native systemd unit file, in ord
    er to make it more safe and robust.                                             
    [    6.280473] systemd-sysv-generator[287]: SysV service '/etc/init.d/sysfsutils
    ' lacks a native systemd unit file. Automatically generating a unit file for com
    patibility. Please update package to include a native systemd unit file, in orde
    r to make it more safe and robust.                                              
    [    6.499813] systemd[1]: /lib/systemd/system/rk3399-bluetooth.service:11: Supp
    ort for option SysVStartPriority= has been removed and it is ignored            
    [    6.541842] systemd[1]: Queued start job for default target Graphical Interfa
    ce.                                                                             
    [    6.552391] random: systemd: uninitialized urandom read (16 bytes read, 114 b
    its of entropy available)                                                       
    [    6.561649] systemd[1]: system-getty.slice: unit configures an IP firewall, b
    ut the local system does not support BPF/cgroup firewalling.                    
    [    6.571151] systemd[1]: (This warning is only shown for the first unit using
    IP firewalling.)                                                                
    [    6.582220] systemd[1]: Created slice system-getty.slice.                    
    [    6.597416] random: systemd: uninitialized urandom read (16 bytes read, 115 b
    its of entropy available)                                                       
    [    6.605919] systemd[1]: Created slice system-modprobe.slice.                 
    [    6.620764] random: systemd: uninitialized urandom read (16 bytes read, 115 b
    its of entropy available)                                                       
    [    6.629310] systemd[1]: Created slice system-serial\x2dgetty.slice.          
    [    6.644496] random: systemd: uninitialized urandom read (16 bytes read, 115 b
    its of entropy available)                                                       
    [    6.653044] systemd[1]: Created slice User and Session Slice.                
    [    6.668385] random: systemd: uninitialized urandom read (16 bytes read, 116 b
    its of entropy available)                                                       
    [    6.676625] systemd[1]: Started Dispatch Password Requests to Console Directo
    ry Watch.                                                                       
    [    6.691877] random: systemd: uninitialized urandom read (16 bytes read, 116 b
    its of entropy available)                                                       
    [    6.699884] systemd[1]: Started Forward Password Requests to Wall Directory W
    atch.                                                                           
    [    6.715243] random: systemd: uninitialized urandom read (16 bytes read, 116 b
    its of entropy available)                                                       
    [    6.723591] systemd[1]: Set up automount Arbitrary Executable File Formats Fi
    le System Automount Point.                                                      
    [    6.739011] random: systemd: uninitialized urandom read (16 bytes read, 116 b
    its of entropy available)                                                       
    [    6.746912] systemd[1]: Reached target Local Encrypted Volumes.              
    [    6.761833] random: systemd: uninitialized urandom read (16 bytes read, 116 b
    its of entropy available)                                                       
    [    6.769707] systemd[1]: Reached target Paths.                                
    [    6.784358] random: systemd: uninitialized urandom read (16 bytes read, 116 b
    its of entropy available)                                                       
    [    6.792256] systemd[1]: Reached target Remote File Systems.                  
    [    6.807148] systemd[1]: Reached target Slices.                               
    [    6.822028] systemd[1]: Reached target Swap.                                 
    [    6.836710] systemd[1]: Reached target System Time Set.                      
    [    6.851830] systemd[1]: Listening on Syslog Socket.                          
    [    6.866849] systemd[1]: Listening on fsck to fsckd communication Socket.     
    [    6.881920] systemd[1]: Listening on initctl Compatibility Named Pipe.       
    [    6.896928] systemd[1]: Listening on Journal Audit Socket.                   
    [    6.911491] systemd[1]: Listening on Journal Socket (/dev/log).              
    [    6.926262] systemd[1]: Listening on Journal Socket.                         
    [    6.940907] systemd[1]: Listening on udev Control Socket.                    
    [    6.954704] systemd[1]: Listening on udev Kernel Socket.                     
    [    6.970139] systemd[1]: Mounting Huge Pages File System...                   
    [    6.991626] systemd[1]: Mounting POSIX Message Queue File System...          
    [    7.007353] systemd[1]: Mounting Kernel Debug File System...                 
    [    7.027439] systemd[1]: Mounting Kernel Trace File System...                 
    [    7.048290] systemd[1]: Starting Restore / save the current clock...         
    [    7.067670] systemd[1]: Starting Set the console keyboard layout...          
    [    7.082897] systemd[1]: Starting Create list of static device nodes for the c
    urrent kernel...                                                                
    [    7.093284] systemd[1]: Starting Load Kernel Module configfs...              
    [    7.101531] systemd[1]: Starting Load Kernel Module drm...                   
    [    7.108444] systemd[1]: Starting Load Kernel Module fuse...                  
    [    7.115882] systemd[1]: Started Nameserver information manager.              
    [    7.121674] systemd[1]: Reached target Network (Pre).                        
    [    7.127048] systemd[1]: Condition check resulted in Set Up Additional Binary
    Formats being skipped.                                                          
    [    7.129852] systemd[1]: Condition check resulted in File System Check on Root
     Device being skipped.                                                          
    [    7.135299] systemd[1]: Starting Load Kernel Modules...                      
    [    7.141467] systemd[1]: Starting Remount Root and Kernel File Systems...     
    [    7.148009] systemd[1]: Starting Coldplug All udev Devices...                
    [    7.157223] systemd[1]: Mounted Huge Pages File System.                      
    [    7.161885] systemd[1]: Mounted POSIX Message Queue File System.             
    [    7.167878] systemd[1]: Mounted Kernel Debug File System.                    
    [    7.172375] systemd[1]: Mounted Kernel Trace File System.                    
    [    7.177138] systemd[1]: Finished Restore / save the current clock.           
    [    7.182059] systemd[1]: Finished Create list of static device nodes for the c
    urrent kernel.                                                                  
    [    7.183911] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remount-
    ro                                                                              
    [    7.190908] systemd[1]: modprobe@configfs.service: Succeeded.                
    [    7.193520] systemd[1]: Finished Load Kernel Module configfs.                
    [    7.198630] systemd[1]: modprobe@drm.service: Succeeded.                     
    [    7.201177] systemd[1]: Finished Load Kernel Module drm.                     
    [    7.205920] systemd[1]: modprobe@fuse.service: Succeeded.                    
    [    7.208646] systemd[1]: Finished Load Kernel Module fuse.                    
    [    7.213484] systemd[1]: Finished Set the console keyboard layout.            
    [    7.218711] systemd[1]: Finished Load Kernel Modules.                        
    [    7.223539] systemd[1]: Finished Remount Root and Kernel File Systems.       
    [    7.230128] systemd[1]: Mounting FUSE Control File System...                 
    [    7.236549] systemd[1]: Mounting Kernel Configuration File System...         
    [    7.242313] systemd[1]: Condition check resulted in Rebuild Hardware Database
     being skipped.                                                                 
    [    7.245101] systemd[1]: Condition check resulted in Platform Persistent Stora
    ge Archival being skipped.                                                      
    [    7.249682] systemd[1]: Starting Load/Save Random Seed...                    
    [    7.256465] systemd[1]: Starting Apply Kernel Variables...                   
    [    7.263347] systemd[1]: Starting Create System Users...                      
    [    7.272182] systemd[1]: Mounted FUSE Control File System.                    
    [    7.277220] systemd[1]: Mounted Kernel Configuration File System.            
    [    7.284007] systemd[1]: Finished Apply Kernel Variables.                     
    [    7.292972] systemd[1]: Finished Create System Users.                        
    [    7.299370] systemd[1]: Starting Create Static Device Nodes in /dev...       
    [    7.327860] systemd[1]: Finished Create Static Device Nodes in /dev.         
    [    7.332680] systemd[1]: Reached target Local File Systems (Pre).             
    [    7.339087] systemd[1]: Mounting /tmp...                                     
    [    7.345271] systemd[1]: Starting Rule-based Manager for Device Events and Fil
    es...                                                                           
    [    7.352014] systemd[1]: Mounted /tmp.                                        
    [    7.356700] systemd[1]: Reached target Local File Systems.                   
    [    7.363082] systemd[1]: Starting Armbian ZRAM config...                      
    [    7.369815] systemd[1]: Starting Set console font and keymap...              
    [    7.375052] systemd[1]: Finished Coldplug All udev Devices.                  
    [    7.383284] systemd[1]: Starting Helper to synchronize boot up for ifupdown..
    .                                                                               
    [    7.388948] systemd[1]: Finished Set console font and keymap.                
    [    7.395439] random: nonblocking pool is initialized                          
    [    7.395793] systemd[1]: Finished Helper to synchronize boot up for ifupdown.
    [    7.414032] systemd[1]: Starting Raise network interfaces...                 
    [    7.418897] systemd[1]: Finished Load/Save Random Seed.                      
    [    7.424327] systemd[1]: Condition check resulted in First Boot Complete being
     skipped.                                                                       
    [    7.426986] systemd[1]: Condition check resulted in Store a System Token in a
    n EFI Variable being skipped.                                                   
    [    7.429776] systemd[1]: Condition check resulted in Commit a transient machin
    e-id on disk being skipped.                                                     
    [    7.447577] systemd[1]: Started Rule-based Manager for Device Events and File
    s.                                                                              
    [    7.550149] dhd_ioctl_entry: Interface is down                               
    [    7.550680] zram: Added device: zram0                                        
    [    7.552306] zram: Added device: zram1                                        
    [    7.556394] zram: Added device: zram2                                        
    [    7.628698] dhd_ioctl_entry: Interface is down                               
    [    7.630148] asoc-simple-card rt5640-sound: rt5640-aif1 <-> ff890000.i2s mappi
    ng ok                                                                           
    [    7.693475] usbcore: registered new interface driver snd-usb-audio           
    [    7.730174] mali ff9a0000.gpu: leakage=32                                    
    [    7.738076] systemd[1]: Reached target Hardware activated USB gadget.        
    [    7.749362] systemd[1]: Found device /dev/ttyFIQ0.                           
    [    7.750912] zram0: detected capacity change from 0 to 1997332480             
    [    7.765330] mali ff9a0000.gpu: temp=35625, pvtm=122719 (122995 + -276)       
    [    7.781389] mali ff9a0000.gpu: pvtm-volt-sel=1                               
    [    7.788771] mali ff9a0000.gpu: avs=0                                         
    [    7.789479] Adding 1950516k swap on /dev/zram0.  Priority:5 extents:1 across:
    1950516k SS                                                                     
    [    7.799809] mali ff9a0000.gpu: GPU identified as 0x0860 r2p0 status 0        
    [    7.805522] mali ff9a0000.gpu: Protected mode not available                  
    [    7.811868] mali ff9a0000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0
    [    7.817460] mali ff9a0000.gpu: Using configured power model mali-simple-power
    -model, and fallback mali-simple-power-model                                    
    [    7.823487] I : [File] : drivers/gpu/arm/midgard/backend/gpu/mali_kbase_devfr
    eq.c; [Line] : 423; [Func] : kbase_devfreq_init(); success initing power_model_s
    imple.                                                                          
    [    7.832424] mali ff9a0000.gpu: Probed as mali0                               
    [    7.835836] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfk
    ill Watch.                                                                      
    [    7.891096] cfg80211: World regulatory domain updated:                       
    [    7.891101] cfg80211:  DFS Master region: unset                              
    [    7.891102] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gai
    n, max_eirp), (dfs_cac_time)                                                    
    [    7.891106] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 m
    Bm), (N/A)                                                                      
    [    7.891109] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUT
    O), (N/A, 2000 mBm), (N/A)                                                      
    [    7.891110] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 m
    Bm), (N/A)                                                                      
    [    7.891113] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AU
    TO), (N/A, 2000 mBm), (N/A)                                                     
    [    7.891115] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AU
    TO), (N/A, 2000 mBm), (0 s)                                                     
    [    7.891117] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000
    mBm), (0 s)                                                                     
    [    7.891118] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 m
    Bm), (N/A)                                                                      
    [    7.891120] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0
    mBm), (N/A)                                                                     
    [    7.916398] zram1: detected capacity change from 0 to 52428800               
    [    8.019838] systemd[1]: Finished Armbian ZRAM config.                        
    [    8.163515] systemd[1]: Finished Raise network interfaces.                   
    [    8.206232] systemd[1]: Starting Armbian memory supported logging...         
    [    8.222010] systemd[1]: Condition check resulted in Set Up Additional Binary
    Formats being skipped.                                                          
    [    8.230184] systemd[1]: Condition check resulted in Store a System Token in a
    n EFI Variable being skipped.                                                   
    [    8.238549] systemd[1]: Condition check resulted in Rebuild Hardware Database
     being skipped.                                                                 
    [    8.247843] systemd[1]: Condition check resulted in Commit a transient machin
    e-id on disk being skipped.                                                     
    [    8.254039] systemd[1]: Condition check resulted in Platform Persistent Stora
    ge Archival being skipped.                                                      
    [    8.262305] systemd[1]: Starting Load/Save RF Kill Switch Status...          
    [    8.263371] EXT4-fs (zram1): mounted filesystem without journal. Opts: discar
    d                                                                               
    [    8.302926] [BT_RFKILL]: ENABLE UART_RTS                                     
    [    8.407232] [BT_RFKILL]: DISABLE UART_RTS                                    
    [    8.428072] [BT_RFKILL]: bt turn on power                                    
    [    8.458636] systemd[1]: Started Load/Save RF Kill Switch Status.             
    [    8.822267] systemd[1]: Condition check resulted in Set Up Additional Binary
    Formats being skipped.                                                          
    [    8.828250] systemd[1]: Condition check resulted in Store a System Token in a
    n EFI Variable being skipped.                                                   
    [    8.834492] systemd[1]: Condition check resulted in Rebuild Hardware Database
     being skipped.                                                                 
    [    8.840441] systemd[1]: Condition check resulted in Commit a transient machin
    e-id on disk being skipped.                                                     
    [    8.846413] systemd[1]: Condition check resulted in Platform Persistent Stora
    ge Archival being skipped.                                                      
    [   11.226203] systemd[1]: Finished Armbian memory supported logging.           
    [   11.235614] systemd[1]: Starting Journal Service...                          
    [   11.440482] systemd[1]: Started Journal Service.                             
    [   11.498922] systemd-journald[617]: Received client request to flush runtime j
    ournal.                                                                         
    [   11.501868] systemd-journald[617]: File /var/log/journal/9037e8e7d867444d9fdc
    d3f434a08594/system.journal corrupted or uncleanly shut down, renaming and repla
    cing.                                                                           
    [   11.505601] systemd-journald[617]: Failed to open system journal: No space le
    ft on device                                                                    
    [   12.160892] nr_pdflush_threads exported in /proc is scheduled for removal    
    [   25.040538] [BT_RFKILL]: ENABLE UART_RTS                                     
    [   25.115568] proc: unrecognized mount option "hidepid=invisible" or missing va
    lue                                                                             
    [   25.142853] [BT_RFKILL]: DISABLE UART_RTS                                    
    [   25.145040] [BT_RFKILL]: bt turn on power                                    
    [   25.173878] ttyS0 - failed to request DMA, use interrupt mode                
    [   25.516223] proc: unrecognized mount option "hidepid=invisible" or missing va
    lue                                                                             
    [   25.803304] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready               
    [   25.835563] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready              
    [   25.836399] dhd_open: Enter ffffffc0dc5b9000                                 
    [   25.836811] dhd_open : no mutex held. set lock                               
    [   25.837225]                                                                  
    [   25.837225] Dongle Host Driver, version 1.579.77.41.22 (r-20191105-2)(2019112
    0-1)                                                                            
    [   25.838041] [dhd-wlan0] wl_android_wifi_on : in g_wifi_on=0                  
    [   25.838564] wifi_platform_set_power = 1                                      
    [   25.838964] ======== PULL WL_REG_ON(-1) HIGH! ========                       
    [   25.839427] [WLAN_RFKILL]: rockchip_wifi_power: 1                            
    [   25.839850] [WLAN_RFKILL]: wifi turn on power. -1                            
    [   26.142846] sdio_reset_comm():                                               
    [   26.174812] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz,
    actual 400000HZ div = 0)                                                        
    [   26.194274] mmc_host mmc2: Bus speed (slot 0) = 100000Hz (slot req 100000Hz,
    actual 100000HZ div = 0)                                                        
    [   26.253527] mmc2: queuing unknown CIS tuple 0x80 (2 bytes)                   
    [   26.260279] mmc2: queuing unknown CIS tuple 0x80 (3 bytes)                   
    [   26.266782] mmc2: queuing unknown CIS tuple 0x80 (3 bytes)                   
    [   26.278536] mmc2: queuing unknown CIS tuple 0x80 (7 bytes)                   
    [   26.503415] mmc_host mmc2: Bus speed (slot 0) = 50000000Hz (slot req 50000000
    Hz, actual 50000000HZ div = 0)                                                  
    [   26.517443] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 316   
    [   26.518131] sdioh_start: set sd_f2_blocksize 256                             
    [   26.519074]                                                                  
    [   26.519074]                                                                  
    [   26.519074] dhd_bus_devreset: == WLAN ON ==                                  
    [   26.519854] F1 signature read @0x18000000=0x17224356                         
    [   26.524642] F1 signature OK, socitype:0x1 chip:0x4354 rev:0x2 pkg:0x2        
    [   26.525841] DHD: dongle ram size is set to 786432(orig 786432) at 0x180000   
    [   26.526527] dhd_bus_set_default_min_res_mask: Unhandled chip id              
    [   26.528067] dhd_os_open_image: /lib/firmware/rkwifi/config.txt (204 bytes) op
    en success                                                                      
    [   26.529715] [dhd] dhd_conf_read_country : ccode = ALL                        
    [   26.530181] [dhd] dhd_conf_read_country : regrev = 0                         
    [   26.530643] [dhd] dhd_conf_read_sdio_params : dhd_doflow = 1                 
    [   26.531260] [dhd] dhd_conf_read_others : srl = 15                            
    [   26.531712] [dhd] dhd_conf_read_others : lrl = 15                            
    [   26.532173] [dhd] dhd_conf_set_path_params : Final fw_path=/lib/firmware/rkwi
    fi/fw_bcm4356a2_ag.bin                                                          
    [   26.532981] [dhd] dhd_conf_set_path_params : Final nv_path=/lib/firmware/rkwi
    fi/nvram_ap6356.txt                                                             
    [   26.533758] [dhd] dhd_conf_set_path_params : Final clm_path=/lib/firmware/rkw
    ifi/clm_bcm4356a2_ag.blob                                                       
    [   26.534579] [dhd] dhd_conf_set_path_params : Final conf_path=/lib/firmware/rk
    wifi/config.txt                                                                 
    [   26.536082] dhd_os_open_image: /lib/firmware/rkwifi/fw_bcm4356a2_ag.bin (5554
    12 bytes) open success                                                          
    [   26.625107] dhd_os_open_image: /lib/firmware/rkwifi/nvram_ap6356.txt (4006 by
    tes) open success                                                               
    [   26.626240] NVRAM version: AP6356_NVRAM_V1.1_20141015                        
    [   26.628701] dhdsdio_write_vars: Download, Upload and compare of NVRAM succeed
    ed.                                                                             
    [   26.690828] dhd_bus_init: enable 0x06, ready 0x06 (waited 0us)               
    [   26.691647] bcmsdh_oob_intr_register: HW_OOB irq=70 flags=0x4                
    [   26.692324] dhd_get_memdump_info: File [/data/misc/wifi/.memdump.info] doesn'
    t exist                                                                         
    [   26.693010] dhd_get_memdump_info: MEMDUMP ENABLED = 2                        
    [   26.693732] Disable tdls_auto_op failed. -1                                  
    [   26.694106] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 1       
    [   26.695663] dhd_apply_default_clm: Ignore clm file /lib/firmware/rkwifi/clm_b
    cm4356a2_ag.blob                                                                
    [   26.697897] Firmware up: op_mode=0x0005, MAC=cc:4b:73:1d:de:88               
    [   26.703811] dhd_preinit_ioctls Set scancache failed -23                      
    [   26.711572]   Driver: 1.579.77.41.22 (r-20191105-2)(20191120-1)              
    [   26.711572]   Firmware: wl0: Jun 16 2015 14:25:06 version 7.35.184.r1 (TOB) (
    r559293) FWID 01-b22ae69c                                                       
    [   26.711572]   CLM: 7.10.16 (2014-02-13 17:00:38)                             
    [   26.713543] dhd_txglom_enable: enable 1                                      
    [   26.713884] [dhd] dhd_conf_set_txglom_params : txglom_mode=copy              
    [   26.714402] [dhd] dhd_conf_set_txglom_params : txglomsize=36, deferred_tx_len
    =0                                                                              
    [   26.715071] [dhd] dhd_conf_set_txglom_params : txinrx_thres=128, dhd_txminmax
    =-1                                                                             
    [   26.715716] [dhd] dhd_conf_set_txglom_params : tx_max_offset=0, txctl_tmo_fix
    =300                                                                            
    [   26.716375] [dhd] dhd_conf_get_disable_proptx : fw_proptx=1, disable_proptx=-
    1                                                                               
    [   26.717802] dhd_wlfc_hostreorder_init(): successful bdcv2 tlv signaling, 64  
    [   26.719794] dhd_pno_init: Support Android Location Service                   
    [   26.755500] dhd_wlfc_enable: ret=0                                           
    [   26.755823] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not cr
    eated                                                                           
    [   26.756492] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not cr
    eated                                                                           
    [   26.757160] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not cr
    eated                                                                           
    [   26.758126] rtt_do_get_ioctl: failed to send getbuf proxd iovar (CMD ID : 1),
     status=-23                                                                     
    [   26.758855] dhd_rtt_init : FTM is not supported                              
    [   26.759260] dhd_preinit_ioctls: SensorHub diabled 0                          
    [   26.760091] dhd_preinit_ioctls failed to set ShubHub disable                 
    [   26.760965] dhd_ndo_get_version: failed, retcode = -23                       
    [   26.761803] dhd_wl_ioctl_get_intiovar: get int iovar wnm_bsstrans_resp failed
    , ERR -23                                                                       
    [   26.762494] failed to get wnm_bsstrans_resp                                  
    [   26.763892] failed to set WNM capabilities                                   
    [   26.764513] [dhd] dhd_conf_set_country : set country ALL, revision 0         
    [   26.764522] [dhd] CFG80211-ERROR) wl_cfg80211_event : Event handler is not cr
    eated                                                                           
    [   26.766108] [dhd] CONFIG-ERROR) dhd_conf_set_bufiovar : country setting faile
    d -2, len=12                                                                    
    [   26.767725] [dhd] dhd_conf_set_country : Country code: US (US/0)             
    [   26.772824] [dhd-wlan0] wl_android_wifi_on : Success                         
    [   26.829186] dhd_open : the lock is released.                                 
    [   26.829567] dhd_open: Exit ret=0                                             
    [   26.879412] NET: Registered protocol family 17                               
    [   26.949255] P2P interface registered                                         
    [   26.949624] wl_cfgp2p_add_p2p_disc_if: wdev: ffffffc0ee1f9800, wdev->net:    
           (null)                                                                   
    [   26.975477] WLC_E_IF: NO_IF set, event Ignored                               
    [   26.977425] P2P interface started                                            
    [   27.024548] [drm] unsupported connector property: hdmi_color_depth_capacity  
    [   34.627636] [dhd-wlan0] wl_cfg80211_connect : Connecting with 10:da:43:b4:37:
    23 ssid "kaffi-5G", len (8), sec=wpa2psk/mfpc/516, channel=44                   
    [   34.627636]                                                                  
    [   34.629542] dhd_dbg_start_pkt_monitor, 1724                                  
    [   34.691424] [dhd-wlan0] wl_iw_event : Link UP with 10:da:43:b4:37:23         
    [   34.692010] [dhd-wlan0] wl_ext_iapsta_event : Link UP with 10:da:43:b4:37
    :23                                                                             
    [   34.692733] [dhd-wlan0] wl_notify_connect_status : wl_bss_connect_done succee
    ded with 10:da:43:b4:37:23                                                      
    [   34.712805] cfg80211: Regulatory domain changed to country: DE               
    [   34.713343] cfg80211:  DFS Master region: ETSI                               
    [   34.713725] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gai
    n, max_eirp), (dfs_cac_time)                                                    
    [   34.714591] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 m
    Bm), (N/A)                                                                      
    [   34.715343] cfg80211:   (5150000 KHz - 5250000 KHz @ 80000 KHz, 200000 KHz AU
    TO), (N/A, 2301 mBm), (N/A)                                                     
    [   34.716176] cfg80211:   (5250000 KHz - 5350000 KHz @ 80000 KHz, 200000 KHz AU
    TO), (N/A, 2000 mBm), (0 s)                                                     
    [   34.717004] cfg80211:   (5470000 KHz - 5725000 KHz @ 160000 KHz), (N/A, 2698
    mBm), (0 s)                                                                     
    [   34.717717] cfg80211:   (5725000 KHz - 5875000 KHz @ 80000 KHz), (N/A, 1397 m
    Bm), (N/A)                                                                      
    [   34.718418] cfg80211:   (57000000 KHz - 66000000 KHz @ 2160000 KHz), (N/A, 40
    00 mBm), (N/A)                                                                  
    [   35.046478] [dhd-wlan0] wl_notify_connect_status : wl_bss_connect_done succee
    ded with 10:da:43:b4:37:23 vndr_oui: 00-10-18                                   
    [   37.190153] tty_port_close_start: tty->count = 1 port count = 2.             
                                                                                    
    Armbian 21.02.1 Bullseye ttyFIQ0                                                
                                                                                    
    firefly-rk3399 login:

     

     

  13. 5 hours ago, balbes150 said:

    Try using other dtbs (roc-pc-plus, roc-mezzanine, rock-pi-4b etc)

     

    Some progress,  rk3399-nanopi-m4.dtb does bring everyting up exept hdmi - the others on the list did just end at Starting kernel .....

    rk3399-orangepi-4.dtb does also bring up the board.

     

    Quote

    verbosity=7
    bootlogo=false
    overlay_prefix=rockchip
    #fdtfile=rockchip/rk3399-firefly.dtb
    #fdtfile=rockchip/rk3399-roc-pc-plus.dtb
    #fdtfile=rockchip/rk3399-roc-pc.dtb
    #fdtfile=rockchip/rk3399-rock-pi-4b.dtb
    #fdtfile=rockchip/rk3399-rockpro64.dtb
    #fdtfile=rockchip/rk3399-roc-pc-mezzanine.dtb
    fdtfile=rockchip/rk3399-nanopi-m4.dtb
    #fdtfile=rockchip/rk3399-orangepi-4.dtb
    rootdev=UUID=e4ee432b-e6cf-43d2-aca5-c26b7fca040e
    rootfstype=ext4
    usbstoragequirks=0x2537:0x1066:u,0x2537:0x1068:u

     

    Spoiler

    ïDDR Version 1.24 20191016                                                      
    In                                                                              
    Channel 0: DDR3, 800MHz                                                         
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB          
    Channel 1: DDR3, 800MHz                                                         
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB          
    256B stride                                                                     
    ch 0 ddrconfig = 0x101, ddrsize = 0x2020                                        
    ch 1 ddrconfig = 0x101, ddrsize = 0x2020                                        
    pmugrf_os_reg[2] = 0x3AA17AA1, stride = 0xD                                     
    OUT                                                                             
    Boot1: 2019-03-14, version: 1.19                                                
    CPUId = 0x0                                                                     
    ChipType = 0x10, 241                                                            
    SdmmcInit=2 0                                                                   
    BootCapSize=100000                                                              
    UserCapSize=119276MB                                                            
    FwPartOffset=2000 , 100000                                                      
    mmc0:cmd5,20                                                                    
    SdmmcInit=0 0                                                                   
    BootCapSize=0                                                                   
    UserCapSize=61056MB                                                             
    FwPartOffset=2000 , 0                                                           
    StorageInit ok = 259304                                                         
    SecureMode = 0                                                                  
    SecureInit read PBA: 0x4                                                        
    SecureInit read PBA: 0x404                                                      
    SecureInit read PBA: 0x804                                                      
    SecureInit read PBA: 0xc04                                                      
    SecureInit read PBA: 0x1004                                                     
    SecureInit read PBA: 0x1404                                                     
    SecureInit read PBA: 0x1804                                                     
    SecureInit read PBA: 0x1c04                                                     
    SecureInit ret = 0, SecureMode = 0                                              
    atags_set_bootdev: ret:(0)                                                      
    GPT 0x3380ec0 signature is wrong                                                
    recovery gpt...                                                                 
    GPT 0x3380ec0 signature is wrong                                                
    recovery gpt fail!                                                              
    LoadTrust Addr:0x4000                                                           
    No find bl30.bin                                                                
    No find bl32.bin                                                                
    Load uboot, ReadLba = 2000                                                      
    Load OK, addr=0x200000, size=0xbaecc                                            
    RunBL31 0x40000                                                                 
    NOTICE:  BL31: v1.3(debug):42583b6                                              
    NOTICE:  BL31: Built : 07:55:13, Oct 15 2019                                    
    NOTICE:  BL31: Rockchip release version: v1.1                                   
    INFO:    GICv3 with legacy support detected. ARM GICV3 driver initialized in EL3
    INFO:    Using opteed sec cpu_context!                                          
    INFO:    boot cpu mask: 0                                                       
    INFO:    plat_rockchip_pmu_init(1190): pd status 3e                             
    INFO:    BL31: Initializing runtime services                                    
    WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE iniK
    ERROR:   Error initializing runtime service opteed_fast                         
    INFO:    BL31: Preparing for EL3 exit to normal world                           
    INFO:    Entry point address = 0x200000                                         
    INFO:    SPSR = 0x3c9                                                           
                                                                                    
                                                                                    
    U-Boot 2020.10-armbian (Feb 03 2021 - 22:38:38 +0100)                           
                                                                                    
    SoC: Rockchip rk3399                                                            
    Reset cause: POR                                                                
    Model: Firefly-RK3399 Board                                                     
    DRAM:  3.9 GiB                                                                  
    PMIC:  RK808                                                                    
    Cannot find regulator pwm init_voltage                                          
    MMC:   mmc@fe310000: 2, mmc@fe320000: 1, sdhci@fe330000: 0                      
    Loading Environment from MMC... *** Warning - bad CRC, using default environment
                                                                                    
    In:    serial@ff1a0000                                                          
    Out:   serial@ff1a0000                                                          
    Err:   serial@ff1a0000                                                          
    Model: Firefly-RK3399 Board                                                     
    Net:   eth0: ethernet@fe300000                                                  
    Hit any key to stop autoboot:  0                                                
    switch to partitions #0, OK                                                     
    mmc1 is current device                                                          
    Scanning mmc 1:1...                                                             
    Found U-Boot script /boot/boot.scr                                              
    3185 bytes read in 5 ms (622.1 KiB/s)                                           
    ## Executing script at 00500000                                                 
    Boot script loaded from mmc 1                                                   
    434 bytes read in 5 ms (84 KiB/s)                                               
    15339744 bytes read in 652 ms (22.4 MiB/s)                                      
    28582400 bytes read in 1211 ms (22.5 MiB/s)                                     
    75124 bytes read in 11 ms (6.5 MiB/s)                                           
    2698 bytes read in 8 ms (329.1 KiB/s)                                           
    Applying kernel provided DT fixup script (rockchip-fixup.scr)                   
    ## Executing script at 09000000                                                 
    Moving Image from 0x2080000 to 0x2200000, end=3de0000                           
    ## Loading init Ramdisk from Legacy Image at 06000000 ...                       
       Image Name:   uInitrd                                                        
       Image Type:   AArch64 Linux RAMDisk Image (gzip compressed)                  
       Data Size:    15339680 Bytes = 14.6 MiB                                      
       Load Address: 00000000                                                       
       Entry Point:  00000000                                                       
       Verifying Checksum ... OK                                                    
    ## Flattened Device Tree blob at 01f00000                                       
       Booting using the fdt blob at 0x1f00000                                      
       Loading Ramdisk to f507d000, end f5f1e0a0 ... OK                             
       Loading Device Tree to 00000000f5002000, end 00000000f507cfff ... OK         
                                                                                    
    Starting kernel ...                                                             
                                                                                    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]          
    [    0.000000] Linux version 5.10.12-rockchip64 (root@beast) (aarch64-linux-gnu1
    [    0.000000] Machine model: FriendlyElec NanoPi M4                            
    [    0.000000] efi: UEFI not found.                                             
    [    0.000000] cma: Reserved 128 MiB at 0x00000000ed000000                      
    [    0.000000] NUMA: No NUMA configuration found                                
    [    0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000000f7fffff]
    [    0.000000] NUMA: NODE_DATA [mem 0xf77e2100-0xf77e3fff]                      
    [    0.000000] Zone ranges:                                                     
    [    0.000000]   DMA      [mem 0x0000000000200000-0x000000003fffffff]           
    [    0.000000]   DMA32    [mem 0x0000000040000000-0x00000000f7ffffff]           
    [    0.000000]   Normal   empty                                                 
    [    0.000000] Movable zone start for each node                                 
    [    0.000000] Early memory node ranges                                         
    [    0.000000]   node   0: [mem 0x0000000000200000-0x00000000f7ffffff]          
    [    0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000000f7ffffff]
    [    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 32 pages/cpu s94040 r8192 d28840 u131072        
    [    0.000000] Detected VIPT I-cache on CPU0                                    
    [    0.000000] CPU features: detected: ARM erratum 845719                       
    [    0.000000] CPU features: detected: GIC system register CPU interface        
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 999432    
    [    0.000000] Policy zone: DMA32                                               
    [    0.000000] Kernel command line: root=UUID=e4ee432b-e6cf-43d2-aca5-c26b7fca01
    [    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 byte)
    [    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes,)
    [    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off           
    [    0.000000] software IO TLB: mapped [mem 0x000000003bfff000-0x000000003ffff0)
    [    0.000000] Memory: 3739812K/4061184K available (14848K kernel code, 2632K r)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1       
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.                
    [    0.000000] rcu:     RCU event tracing is enabled.                           
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=6.  
    [    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 ji.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6     
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0                   
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode                      
    [    0.000000] GICv3: 256 SPIs implemented                                      
    [    0.000000] GICv3: 0 Extended SPIs implemented                               
    [    0.000000] GICv3: Distributor has no Range Selector support                 
    [    0.000000] GICv3: 16 PPIs implemented                                       
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fef00000   
    [    0.000000] ITS [mem 0xfee20000-0xfee3ffff]                                  
    [    0.000000] ITS@0x00000000fee20000: allocated 65536 Devices @40100000 (flat,)
    [    0.000000] ITS: using cache flushing for cmd queue                          
    [    0.000000] GICv3: using LPI property table @0x00000000400d0000              
    [    0.000000] GIC: using cache flushing for LPI property table                 
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000000400e000
    [    0.000000] GICv3: GIC: PPI partition interrupt-partition-0[0] { /cpus/cpu@0}
    [    0.000000] GICv3: GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@1}
    [    0.000000] random: get_random_bytes called from start_kernel+0x698/0x850 wi0
    [    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).            
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycless
    [    0.000007] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398s
    [    0.001369] Console: colour dummy device 80x25                               
    [    0.002432] printk: console [tty1] enabled                                   
    [    0.002572] Calibrating delay loop (skipped), value calculated using timer f)
    [    0.002619] pid_max: default: 32768 minimum: 301                             
    [    0.002799] LSM: Security Framework initializing                             
    [    0.002855] Yama: becoming mindful.                                          
    [    0.003010] AppArmor: AppArmor initialized                                   
    [    0.003127] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, lin)
    [    0.003182] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.006796] rcu: Hierarchical SRCU implementation.                           
    [    0.007999] Platform MSI: interrupt-controller@fee20000 domain created       
    [    0.008524] PCI/MSI: /interrupt-controller@fee00000/interrupt-controller@feed
    [    0.010823] EFI services will not be available.                              
    [    0.011532] smp: Bringing up secondary CPUs ...                              
    [    0.012628] Detected VIPT I-cache on CPU1                                    
    [    0.012672] GICv3: CPU1: found redistributor 1 region 0:0x00000000fef20000   
    [    0.012689] GICv3: CPU1: using allocated LPI pending table @0x00000000400f000
    [    0.012757] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]       
    [    0.013869] Detected VIPT I-cache on CPU2                                    
    [    0.013903] GICv3: CPU2: found redistributor 2 region 0:0x00000000fef40000   
    [    0.013918] GICv3: CPU2: using allocated LPI pending table @0x000000004018000
    [    0.013965] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]       
    [    0.015068] Detected VIPT I-cache on CPU3                                    
    [    0.015101] GICv3: CPU3: found redistributor 3 region 0:0x00000000fef60000   
    [    0.015117] GICv3: CPU3: using allocated LPI pending table @0x000000004019000
    [    0.015163] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]       
    [    0.016296] CPU features: detected: Spectre-v2                               
    [    0.016304] CPU features: detected: Spectre-v4                               
    [    0.016309] CPU features: detected: ARM errata 1165522, 1319367, or 1530923  
    [    0.016317] Detected PIPT I-cache on CPU4                                    
    [    0.016354] GICv3: CPU4: found redistributor 100 region 0:0x00000000fef80000
    [    0.016369] GICv3: CPU4: using allocated LPI pending table @0x00000000401a000
    [    0.016418] CPU4: Booted secondary processor 0x0000000100 [0x410fd082]       
    [    0.017477] Detected PIPT I-cache on CPU5                                    
    [    0.017507] GICv3: CPU5: found redistributor 101 region 0:0x00000000fefa0000
    [    0.017520] GICv3: CPU5: using allocated LPI pending table @0x00000000401b000
    [    0.017558] CPU5: Booted secondary processor 0x0000000101 [0x410fd082]       
    [    0.017728] smp: Brought up 1 node, 6 CPUs                                   
    [    0.018139] SMP: Total of 6 processors activated.                            
    [    0.018165] CPU features: detected: 32-bit EL0 Support                       
    [    0.018190] CPU features: detected: CRC32 instructions                       
    [    0.018216] CPU features: detected: 32-bit EL1 Support                       
    [    0.044870] CPU: All CPU(s) started at EL2                                   
    [    0.044965] alternatives: patching kernel code                               
    [    0.048683] devtmpfs: initialized                                            
    [    0.065882] Registered cp15_barrier emulation handler                        
    [    0.065922] Registered setend emulation handler                              
    [    0.066166] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, ms
    [    0.066246] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)  
    [    0.069226] pinctrl core: initialized pinctrl subsystem                      
    [    0.069904] DMI not present or invalid.                                      
    [    0.070480] NET: Registered protocol family 16                               
    [    0.073833] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
    [    0.075240] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic als
    [    0.075987] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic s
    [    0.076104] audit: initializing netlink subsys (disabled)                    
    [    0.076443] audit: type=2000 audit(0.076:1): state=initialized audit_enabled1
    [    0.077705] thermal_sys: Registered thermal governor 'fair_share'            
    [    0.077713] thermal_sys: Registered thermal governor 'bang_bang'             
    [    0.077735] thermal_sys: Registered thermal governor 'step_wise'             
    [    0.077750] thermal_sys: Registered thermal governor 'user_space'            
    [    0.078232] cpuidle: using governor menu                                     
    [    0.078574] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.    
    [    0.078807] ASID allocator initialised with 65536 entries                    
    [    0.080058] Serial: AMBA PL011 UART driver                                   
    [    0.138355] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages     
    [    0.138384] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages     
    [    0.138403] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages     
    [    0.138422] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages     
    [    0.144925] cryptd: max_cpu_qlen set to 1000                                 
    [    0.224295] raid6: neonx8   gen()  1665 MB/s                                 
    [    0.292451] raid6: neonx8   xor()  1212 MB/s                                 
    [    0.360635] raid6: neonx4   gen()  1696 MB/s                                 
    [    0.428800] raid6: neonx4   xor()  1246 MB/s                                 
    [    0.496988] raid6: neonx2   gen()  1511 MB/s                                 
    [    0.565151] raid6: neonx2   xor()  1152 MB/s                                 
    [    0.633324] raid6: neonx1   gen()  1185 MB/s                                 
    [    0.701501] raid6: neonx1   xor()   928 MB/s                                 
    [    0.769669] raid6: int64x8  gen()   995 MB/s                                 
    [    0.837858] raid6: int64x8  xor()   578 MB/s                                 
    [    0.905989] raid6: int64x4  gen()   990 MB/s                                 
    [    0.974128] raid6: int64x4  xor()   591 MB/s                                 
    [    1.042291] raid6: int64x2  gen()   928 MB/s                                 
    [    1.110449] raid6: int64x2  xor()   524 MB/s                                 
    [    1.178608] raid6: int64x1  gen()   723 MB/s                                 
    [    1.246760] raid6: int64x1  xor()   391 MB/s                                 
    [    1.246775] raid6: using algorithm neonx4 gen() 1696 MB/s                    
    [    1.246790] raid6: .... xor() 1246 MB/s, rmw enabled                         
    [    1.246805] raid6: using neon recovery algorithm                             
    [    1.251027] vcc5v0_sys: supplied by vdd_5v                                   
    [    1.251186] vbus_typec: supplied by vdd_5v                                   
    [    1.251286] vcc5v0_core: supplied by vdd_5v                                  
    [    1.251717] vcc3v3_sys: supplied by vcc5v0_core                              
    [    1.251807] vcc3v0_sd: supplied by vcc3v3_sys                                
    [    1.251921] vcc5v0_usb1: supplied by vcc5v0_sys                              
    [    1.252400] vcc5v0_usb2: supplied by vcc5v0_sys                              
    [    1.252860] iommu: Default domain type: Translated                           
    [    1.256287] vgaarb: loaded                                                   
    [    1.256815] SCSI subsystem initialized                                       
    [    1.257335] usbcore: registered new interface driver usbfs                   
    [    1.257395] usbcore: registered new interface driver hub                     
    [    1.257454] usbcore: registered new device driver usb                        
    [    1.258110] pps_core: LinuxPPS API ver. 1 registered                         
    [    1.258128] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giom>
    [    1.258159] PTP clock support registered                                     
    [    1.258461] EDAC MC: Ver: 3.0.0                                              
    [    1.259741] NetLabel: Initializing                                           
    [    1.259761] NetLabel:  domain hash size = 128                                
    [    1.259775] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO                 
    [    1.259860] NetLabel:  unlabeled traffic allowed by default                  
    [    1.260392] clocksource: Switched to clocksource arch_sys_counter            
    [    1.383526] VFS: Disk quotas dquot_6.6.0                                     
    [    1.383622] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)   
    [    1.384523] AppArmor: AppArmor Filesystem Enabled                            
    [    1.395397] NET: Registered protocol family 2                                
    [    1.396336] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 327)
    [    1.396625] TCP established hash table entries: 32768 (order: 6, 262144 byte)
    [    1.397167] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, line)
    [    1.397847] TCP: Hash tables configured (established 32768 bind 32768)       
    [    1.398060] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)     
    [    1.398236] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
    [    1.398585] NET: Registered protocol family 1                                
    [    1.398629] NET: Registered protocol family 44                               
    [    1.398652] PCI: CLS 0 bytes, default 64                                     
    [    1.398889] Trying to unpack rootfs image as initramfs...                    
    [    2.505029] Freeing initrd memory: 14980K                                    
    [    2.506266] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counte
    [    2.506717] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counte
    [    2.507421] kvm [1]: IPA Size Limit: 40 bits                                 
    [    2.508617] kvm [1]: vgic-v2@fff20000                                        
    [    2.508665] kvm [1]: GIC system register CPU interface enabled               
    [    2.508938] kvm [1]: vgic interrupt IRQ18                                    
    [    2.509257] kvm [1]: Hyp mode initialized successfully                       
    [    2.520913] Initialise system trusted keyrings                               
    [    2.520973] Key type blacklist registered                                    
    [    2.521235] workingset: timestamp_bits=44 max_order=20 bucket_order=0        
    [    2.527635] zbud: loaded                                                     
    [    2.529403] squashfs: version 4.0 (2009/01/31) Phillip Lougher               
    [    2.530247] fuse: init (API version 7.32)                                    
    [    2.531623] integrity: Platform Keyring initialized                          
    [    2.597614] xor: measuring software checksum speed                           
    [    2.601543]    8regs           :  2531 MB/sec                                
    [    2.604947]    32regs          :  2917 MB/sec                                
    [    2.609076]    arm64_neon      :  2399 MB/sec                                
    [    2.609092] xor: using function: 32regs (2917 MB/sec)                        
    [    2.609114] Key type asymmetric registered                                   
    [    2.609129] Asymmetric key parser 'x509' registered                          
    [    2.609180] Block layer SCSI generic (bsg) driver version 0.4 loaded (major )
    [    2.609388] io scheduler mq-deadline registered                              
    [    2.609406] io scheduler kyber registered                                    
    [    2.609546] io scheduler bfq registered                                      
    [    2.628163] rockchip-pcie f8000000.pcie: host bridge /pcie@f8000000 ranges:  
    [    2.628210] OF: /pcie@f8000000: Missing device_type                          
    [    2.628251] rockchip-pcie f8000000.pcie:      MEM 0x00fa000000..0x00fbdfffff0
    [    2.628288] rockchip-pcie f8000000.pcie:       IO 0x00fbe00000..0x00fbefffff0
    [    2.629196] rockchip-pcie f8000000.pcie: no vpcie12v regulator found         
    [    2.629238] rockchip-pcie f8000000.pcie: no vpcie3v3 regulator found         
    [    2.636958] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-0
    [    2.636989] dma-pl330 ff6d0000.dma-controller:       DBUFF-32x8bytes Num_Cha2
    [    2.638483] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-0
    [    2.638510] dma-pl330 ff6e0000.dma-controller:       DBUFF-128x8bytes Num_Ch6
    [    2.644418] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled         
    [    2.647947] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 47, base_baud =A
    [    2.648141] serial serial0: tty port ttyS0 registered                        
    [    2.649003] ff1a0000.serial: ttyS2 at MMIO 0xff1a0000 (irq = 48, base_baud =A
    [    2.764309] printk: console [ttyS2] enabled                                  
    [    2.766064] Serial: AMBA driver                                              
    [    2.767805] cacheinfo: Unable to detect cache hierarchy for CPU 0            
    [    2.780279] loop: module loaded                                              
    [    2.786078] libphy: Fixed MDIO Bus: probed                                   
    [    2.787094] tun: Universal TUN/TAP device driver, 1.6                        
    [    2.788649] thunder_xcv, ver 1.0                                             
    [    2.788988] thunder_bgx, ver 1.0                                             
    [    2.789322] nicpf, ver 1.0                                                   
    [    2.790677] e1000e: Intel(R) PRO/1000 Network Driver                         
    [    2.791125] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.              
    [    2.791698] igb: Intel(R) Gigabit Ethernet Network Driver                    
    [    2.792183] igb: Copyright (c) 2007-2014 Intel Corporation.                  
    [    2.792736] igbvf: Intel(R) Gigabit Virtual Function Network Driver          
    [    2.793296] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.              
    [    2.794119] sky2: driver version 1.30                                        
    [    2.795161] VFIO - User Level meta-driver version: 0.3                       
    [    2.804636] OF: graph: no port node found in /syscon@ff770000/usb2-phy@e450/t
    [    2.821452] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver       
    [    2.822061] ehci-pci: EHCI PCI platform driver                               
    [    2.822502] ehci-platform: EHCI generic platform driver                      
    [    2.825366] ehci-platform fe380000.usb: EHCI Host Controller                 
    [    2.825898] ehci-platform fe380000.usb: new USB bus registered, assigned bus1
    [    2.826743] ehci-platform fe380000.usb: irq 39, io mem 0xfe380000            
    [    2.840411] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00           
    [    2.841221] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, b0
    [    2.841963] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    2.842610] usb usb1: Product: EHCI Host Controller                          
    [    2.843049] usb usb1: Manufacturer: Linux 5.10.12-rockchip64 ehci_hcd        
    [    2.843625] usb usb1: SerialNumber: fe380000.usb                             
    [    2.844684] hub 1-0:1.0: USB hub found                                       
    [    2.845066] hub 1-0:1.0: 1 port detected                                     
    [    2.848199] ehci-platform fe3c0000.usb: EHCI Host Controller                 
    [    2.848750] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus2
    [    2.849575] ehci-platform fe3c0000.usb: irq 41, io mem 0xfe3c0000            
    [    2.864409] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00           
    [    2.865187] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, b0
    [    2.865928] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    2.866574] usb usb2: Product: EHCI Host Controller                          
    [    2.867014] usb usb2: Manufacturer: Linux 5.10.12-rockchip64 ehci_hcd        
    [    2.867590] usb usb2: SerialNumber: fe3c0000.usb                             
    [    2.868562] hub 2-0:1.0: USB hub found                                       
    [    2.868940] hub 2-0:1.0: 1 port detected                                     
    [    2.870034] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver           
    [    2.870605] ohci-pci: OHCI PCI platform driver                               
    [    2.871057] ohci-platform: OHCI generic platform driver                      
    [    2.871852] ohci-platform fe3a0000.usb: Generic Platform OHCI controller     
    [    2.872497] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus3
    [    2.873344] ohci-platform fe3a0000.usb: irq 40, io mem 0xfe3a0000            
    [    2.936624] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, b0
    [    2.937365] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    2.938011] usb usb3: Product: Generic Platform OHCI controller              
    [    2.938542] usb usb3: Manufacturer: Linux 5.10.12-rockchip64 ohci_hcd        
    [    2.939116] usb usb3: SerialNumber: fe3a0000.usb                             
    [    2.940050] hub 3-0:1.0: USB hub found                                       
    [    2.940460] hub 3-0:1.0: 1 port detected                                     
    [    2.941513] ohci-platform fe3e0000.usb: Generic Platform OHCI controller     
    [    2.942129] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus4
    [    2.942947] ohci-platform fe3e0000.usb: irq 42, io mem 0xfe3e0000            
    [    3.004592] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, b0
    [    3.005333] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    3.005979] usb usb4: Product: Generic Platform OHCI controller              
    [    3.006509] usb usb4: Manufacturer: Linux 5.10.12-rockchip64 ohci_hcd        
    [    3.007084] usb usb4: SerialNumber: fe3e0000.usb                             
    [    3.008018] hub 4-0:1.0: USB hub found                                       
    [    3.008428] hub 4-0:1.0: 1 port detected                                     
    [    3.010324] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller                   
    [    3.010837] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus n5
    [    3.011690] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version 0x110
    [    3.012575] xhci-hcd xhci-hcd.0.auto: irq 78, io mem 0xfe800000              
    [    3.013513] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, b0
    [    3.014255] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    3.014901] usb usb5: Product: xHCI Host Controller                          
    [    3.015341] usb usb5: Manufacturer: Linux 5.10.12-rockchip64 xhci-hcd        
    [    3.015916] usb usb5: SerialNumber: xhci-hcd.0.auto                          
    [    3.016928] hub 5-0:1.0: USB hub found                                       
    [    3.017315] hub 5-0:1.0: 1 port detected                                     
    [    3.018019] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller                   
    [    3.018524] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus n6
    [    3.019217] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed       
    [    3.019874] usb usb6: We don't know the algorithms for LPM for this host, di.
    [    3.020787] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, b0
    [    3.021529] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    3.022175] usb usb6: Product: xHCI Host Controller                          
    [    3.022613] usb usb6: Manufacturer: Linux 5.10.12-rockchip64 xhci-hcd        
    [    3.023189] usb usb6: SerialNumber: xhci-hcd.0.auto                          
    [    3.024149] hub 6-0:1.0: USB hub found                                       
    [    3.024586] hub 6-0:1.0: 1 port detected                                     
    [    3.025530] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller                   
    [    3.026040] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus n7
    [    3.026888] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe64 hci version 0x110
    [    3.027776] xhci-hcd xhci-hcd.1.auto: irq 79, io mem 0xfe900000              
    [    3.028746] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, b0
    [    3.029487] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    3.030133] usb usb7: Product: xHCI Host Controller                          
    [    3.030572] usb usb7: Manufacturer: Linux 5.10.12-rockchip64 xhci-hcd        
    [    3.031149] usb usb7: SerialNumber: xhci-hcd.1.auto                          
    [    3.032127] hub 7-0:1.0: USB hub found                                       
    [    3.032536] hub 7-0:1.0: 1 port detected                                     
    [    3.033238] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller                   
    [    3.033742] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus n8
    [    3.034453] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed       
    [    3.035111] usb usb8: We don't know the algorithms for LPM for this host, di.
    [    3.035970] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, b0
    [    3.036727] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber1
    [    3.037373] usb usb8: Product: xHCI Host Controller                          
    [    3.037814] usb usb8: Manufacturer: Linux 5.10.12-rockchip64 xhci-hcd        
    [    3.038388] usb usb8: SerialNumber: xhci-hcd.1.auto                          
    [    3.039352] hub 8-0:1.0: USB hub found                                       
    [    3.039728] hub 8-0:1.0: 1 port detected                                     
    [    3.040679] usbcore: registered new interface driver usb-storage             
    [    3.043770] mousedev: PS/2 mouse device common for all mice                  
    [    3.045653] i2c /dev entries driver                                          
    [    3.054564] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected!   
    [    3.056744] vdd_cpu_b: supplied by vcc3v3_sys                                
    [    3.060420] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected!   
    [    3.062548] vdd_gpu: supplied by vcc3v3_sys                                  
    [    3.067240] rk808 0-001b: chip id: 0x0                                       
    [    3.071843] rk808-regulator rk808-regulator: there is no dvs0 gpio           
    [    3.072494] rk808-regulator rk808-regulator: there is no dvs1 gpio           
    [    3.073950] vdd_center: supplied by vcc3v3_sys                               
    [    3.075010] vdd_cpu_l: supplied by vcc3v3_sys                                
    [    3.075733] vcc_ddr: supplied by vcc3v3_sys                                  
    [    3.076948] vcc_1v8: supplied by vcc3v3_sys                                  
    [    3.078685] vcc1v8_cam: supplied by vcc3v3_sys                               
    [    3.079375] vcc3v0_touch: Bringing 2800000uV into 3000000-3000000uV          
    [    3.080827] vcc3v0_touch: supplied by vcc3v3_sys                             
    [    3.082442] vcc1v8_pmupll: supplied by vcc3v3_sys                            
    [    3.084071] vcc_sdio: supplied by vcc3v3_sys                                 
    [    3.085541] vcca3v0_codec: supplied by vcc3v3_sys                            
    [    3.087167] vcc_1v5: supplied by vcc3v3_sys                                  
    [    3.088641] vcca1v8_codec: supplied by vcc3v3_sys                            
    [    3.090278] vcc_3v0: supplied by vcc3v3_sys                                  
    [    3.091018] vcc3v3_s3: supplied by vcc3v3_sys                                
    [    3.091799] vcc3v3_s0: supplied by vcc3v3_sys                                
    [    3.096015] rk808-rtc rk808-rtc: registered as rtc0                          
    [    3.096587] random: fast init done                                           
    [    3.097392] rk808-rtc rk808-rtc: setting system clock to 2013-01-18T08:50:10)
    [    3.104708] dw_wdt ff848000.watchdog: No valid TOPs array specified          
    [    3.107384] sdhci: Secure Digital Host Controller Interface driver           
    [    3.107942] sdhci: Copyright(c) Pierre Ossman                                
    [    3.108359] Synopsys Designware Multimedia Card Interface Driver             
    [    3.110306] sdhci-pltfm: SDHCI platform and OF driver helper                 
    [    3.110931] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
    [    3.111177] dwmmc_rockchip fe320000.mmc: IDMAC supports 32-bit address mode.
    [    3.111609] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.      
    [    3.112240] dwmmc_rockchip fe320000.mmc: Using internal DMA controller.      
    [    3.112852] dwmmc_rockchip fe310000.mmc: Version ID is 270a                  
    [    3.112901] mmc2: CQHCI version 5.10                                         
    [    3.113453] dwmmc_rockchip fe320000.mmc: Version ID is 270a                  
    [    3.113555] dwmmc_rockchip fe320000.mmc: DW MMC controller at irq 37,32 bit o
    [    3.114091] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 36,32 bit o
    [    3.114388] ledtrig-cpu: registered to indicate activity on CPUs             
    [    3.115141] dwmmc_rockchip fe320000.mmc: Got CD GPIO                         
    [    3.115237] dwmmc_rockchip fe310000.mmc: allocated mmc-pwrseq                
    [    3.115249] mmc_host mmc0: card is non-removable.                            
    [    3.116788] hid: raw HID events driver (C) Jiri Kosina                       
    [    3.119067] usbcore: registered new interface driver usbhid                  
    [    3.119569] usbhid: USB HID core driver                                      
    [    3.123764] vcc1v8_s3: supplied by vcc_1v8                                   
    [    3.124213] vcca1v8_s3: supplied by vcc1v8_s3                                
    [    3.126549] drop_monitor: Initializing network drop monitor service          
    [    3.127923] NET: Registered protocol family 10                               
    [    3.128601] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz,)
    [    3.130109] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz,)
    [    3.139025] mmc2: SDHCI controller on fe330000.sdhci [fe330000.sdhci] using A
    [    3.173266] Segment Routing with IPv6                                        
    [    3.173704] NET: Registered protocol family 17                               
    [    3.174358] 8021q: 802.1Q VLAN Support v1.8                                  
    [    3.174795] Key type dns_resolver registered                                 
    [    3.175517] mmc0: queuing unknown CIS tuple 0x80 (2 bytes)                   
    [    3.175744] registered taskstats version 1                                   
    [    3.176442] Loading compiled-in X.509 certificates                           
    [    3.177648] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)                   
    [    3.179759] mmc0: queuing unknown CIS tuple 0x80 (3 bytes)                   
    [    3.180457] Loaded X.509 cert 'Build time autogenerated kernel key: f47c1788'
    [    3.183136] mmc0: queuing unknown CIS tuple 0x80 (7 bytes)                   
    [    3.187511] zswap: loaded using pool zstd/z3fold                             
    [    3.188372] Key type ._fscrypt registered                                    
    [    3.188777] Key type .fscrypt registered                                     
    [    3.189133] Key type fscrypt-provisioning registered                         
    [    3.192590] Btrfs loaded, crc32c=crc32c-generic                              
    [    3.193671] mmc_host mmc1: Bus speed (slot 0) = 148500000Hz (slot req 150000)
    [    3.195918] dwmmc_rockchip fe320000.mmc: All phases bad!                     
    [    3.196423] mmc1: tuning execution failed: -5                                
    [    3.196825] mmc1: error -5 whilst initialising SD card                       
    [    3.208431] usb 2-1: new high-speed USB device number 2 using ehci-platform  
    [    3.211402] mmc2: Command Queue Engine enabled                               
    [    3.211825] mmc2: new HS200 MMC card at address 0001                         
    [    3.213068] mmcblk2: mmc2:0001 DJNB4R 116 GiB                                
    [    3.213718] mmcblk2boot0: mmc2:0001 DJNB4R partition 1 4.00 MiB              
    [    3.214493] mmcblk2boot1: mmc2:0001 DJNB4R partition 2 4.00 MiB              
    [    3.215263] mmcblk2rpmb: mmc2:0001 DJNB4R partition 3 4.00 MiB, chardev (243)
    [    3.215910] Key type encrypted registered                                    
    [    3.216303] AppArmor: AppArmor sha1 policy hashing enabled                   
    [    3.217138]  mmcblk2: p1                                                     
    [    3.220499] mmc_host mmc1: Bus speed (slot 0) = 300000Hz (slot req 300000Hz,)
    [    3.240996] mmc_host mmc0: Bus speed (slot 0) = 148500000Hz (slot req 150000)
    [    3.265766] rockchip-pcie f8000000.pcie: host bridge /pcie@f8000000 ranges:  
    [    3.266438] rockchip-pcie f8000000.pcie:      MEM 0x00fa000000..0x00fbdfffff0
    [    3.267206] rockchip-pcie f8000000.pcie:       IO 0x00fbe00000..0x00fbefffff0
    [    3.268872] rockchip-pcie f8000000.pcie: no vpcie12v regulator found         
    [    3.269479] rockchip-pcie f8000000.pcie: no vpcie3v3 regulator found         
    [    3.270228] vcca0v9_s3: supplied by vcc1v8_s3                                
    [    3.282363] mmc_host mmc1: Bus speed (slot 0) = 148500000Hz (slot req 150000)
    [    3.284550] dwmmc_rockchip fe320000.mmc: All phases bad!                     
    [    3.285033] mmc1: tuning execution failed: -5                                
    [    3.313208] mmc_host mmc1: Bus speed (slot 0) = 300000Hz (slot req 300000Hz,)
    [    3.356253] mmc_host mmc1: Bus speed (slot 0) = 50000000Hz (slot req 5000000)
    [    3.357244] mmc1: new high speed SDXC card at address 0001                   
    [    3.358842] mmcblk1: mmc1:0001 EC2QT 59.6 GiB                                
    [    3.362357]  mmcblk1: p1                                                     
    [    3.365054] usb 2-1: New USB device found, idVendor=1a40, idProduct=0201, bc0
    [    3.365794] usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
    [    3.366431] usb 2-1: Product: USB 2.0 Hub [MTT]                              
    [    3.367442] hub 2-1:1.0: USB hub found                                       
    [    3.367921] hub 2-1:1.0: 7 ports detected                                    
    [    3.501235] dwmmc_rockchip fe310000.mmc: Successfully tuned phase to 198     
    [    3.504675] mmc0: new ultra high speed SDR104 SDIO card at address 0001      
    [    3.656408] usb 2-1.3: new high-speed USB device number 3 using ehci-platform
    [    3.765045] usb 2-1.3: New USB device found, idVendor=1a40, idProduct=0101, 1
    [    3.765795] usb 2-1.3: New USB device strings: Mfr=0, Product=1, SerialNumbe0
    [    3.766449] usb 2-1.3: Product: USB 2.0 Hub                                  
    [    3.767444] hub 2-1.3:1.0: USB hub found                                     
    [    3.767914] hub 2-1.3:1.0: 4 ports detected                                  
    [    3.796460] rockchip-pcie f8000000.pcie: PCIe link training gen1 timeout!    
    [    3.797936] rockchip-pcie: probe of f8000000.pcie failed with error -110     
    [    3.802764] input: gpio-keys as /devices/platform/gpio-keys/input/input0     
    [    3.803867] of_cfs_init                                                      
    [    3.804136] of_cfs_init: OK                                                  
    [    3.808110] Freeing unused kernel memory: 4352K                              
    [    3.824526] Run /init as init process                                        
    [    3.848455] usb 2-1.4: new high-speed USB device number 4 using ehci-platform
    [    3.970805] usb 2-1.4: New USB device found, idVendor=0d8c, idProduct=0004, 8
    [    3.971566] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumbe0
    [    3.972220] usb 2-1.4: Product: USB2.0 High-Speed True HD Audio              
    [    3.972771] usb 2-1.4: Manufacturer: C-Media Electronics Inc.                
    [    3.978166] input: C-Media Electronics Inc. USB2.0 High-Speed True HD Audio 1
    [    4.036895] hid-generic 0003:0D8C:0004.0001: input,hidraw0: USB HID v1.00 De2
    [    4.164428] usb 2-1.3.2: new full-speed USB device number 5 using ehci-platfm
    [    4.403326] usb 2-1.3.2: language id specifier not provided by device, defauh
    [    4.413063] usb 2-1.3.2: New USB device found, idVendor=0c45, idProduct=74031
    [    4.413840] usb 2-1.3.2: New USB device strings: Mfr=1, Product=2, SerialNum0
    [    4.417884] input: HID 0c45:7403 as /devices/platform/fe3c0000.usb/usb2/2-1/2
    [    4.477426] hid-generic 0003:0C45:7403.0002: input,hidraw1: USB HID v1.00 Ke0
    [    4.480840] input: HID 0c45:7403 as /devices/platform/fe3c0000.usb/usb2/2-1/3
    [    4.482498] hid-generic 0003:0C45:7403.0003: input,hidraw2: USB HID v1.10 Mo1
    [    4.521989] rk_gmac-dwmac fe300000.ethernet: IRQ eth_wake_irq not found      
    [    4.522618] rk_gmac-dwmac fe300000.ethernet: IRQ eth_lpi not found           
    [    4.523387] rk_gmac-dwmac fe300000.ethernet: PTP uses main clock             
    [    4.524343] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input).
    [    4.531370] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28).                 
    [    4.531914] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11).                 
    [    4.532478] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no).           
    [    4.533171] rk_gmac-dwmac fe300000.ethernet: cannot get clock clk_mac_speed  
    [    4.533806] rk_gmac-dwmac fe300000.ethernet: clock input from PHY            
    [    4.539395] rk_gmac-dwmac fe300000.ethernet: init for RGMII                  
    [    4.544497] rk_gmac-dwmac fe300000.ethernet: User ID: 0x10, Synopsys ID: 0x35
    [    4.545154] rk_gmac-dwmac fe300000.ethernet:         DWMAC1000               
    [    4.545628] rk_gmac-dwmac fe300000.ethernet: DMA HW capability register suppd
    [    4.546298] rk_gmac-dwmac fe300000.ethernet: RX Checksum Offload Engine suppd
    [    4.546965] rk_gmac-dwmac fe300000.ethernet: COE Type 2                      
    [    4.547435] rk_gmac-dwmac fe300000.ethernet: TX Checksum insertion supported
    [    4.548063] rk_gmac-dwmac fe300000.ethernet: Wake-Up On Lan supported        
    [    4.548770] rk_gmac-dwmac fe300000.ethernet: Normal descriptors              
    [    4.549306] rk_gmac-dwmac fe300000.ethernet: Ring mode enabled               
    [    4.549830] rk_gmac-dwmac fe300000.ethernet: Enable RX Mitigation via HW Watr
    [    4.551752] libphy: stmmac: probed                                           
    [    4.577498] rockchip-vop ff8f0000.vop: Adding to iommu group 2               
    [    4.585802] rockchip-vop ff900000.vop: Adding to iommu group 3               
    [    4.600700] rockchip-drm display-subsystem: bound ff8f0000.vop (ops vop_comp)
    [    4.601749] [drm] unsupported AFBC format[3231564e]                          
    [    4.617284] rockchip-drm display-subsystem: bound ff900000.vop (ops vop_comp)
    [    4.624974] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11)
    [    4.629871] rockchip-drm display-subsystem: bound ff940000.hdmi (ops dw_hdmi)
    [    5.664448] rk3x-i2c ff160000.i2c: timeout, ipd: 0x91, state: 2              
    [    6.688457] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [    7.712429] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [    8.736428] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [    9.760432] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [    9.811482] Console: switching to colour frame buffer device 128x48          
    [    9.866429] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame be
    [    9.881302] [drm] Initialized rockchip 1.0.0 20140818 for display-subsystem 0
    [   10.194556] EXT4-fs (mmcblk1p1): mounted filesystem with writeback data mode)
    [   11.084598] systemd[1]: System time before build time, advancing clock.      
    [   11.113044] systemd[1]: Inserted module 'autofs4'                            
    [   11.198627] systemd[1]: systemd 245.4-4ubuntu3.4 running in system mode. (+P)
    [   11.202847] systemd[1]: Detected architecture arm64.                         
    [   11.256531] systemd[1]: Set hostname to <firefly-rk3399>.                    
    [   11.377704] dw-apb-uart ff1a0000.serial: forbid DMA for kernel console       
    [   11.701684] systemd[1]: /lib/systemd/system/dbus.socket:5: ListenStream= ref.
    [   11.936452] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [   12.036055] random: systemd: uninitialized urandom read (16 bytes read)      
    [   12.044911] systemd[1]: Created slice system-modprobe.slice.                 
    [   12.053902] random: systemd: uninitialized urandom read (16 bytes read)      
    [   12.059981] systemd[1]: Created slice system-serial\x2dgetty.slice.          
    [   12.069057] random: systemd: uninitialized urandom read (16 bytes read)      
    [   12.074953] systemd[1]: Created slice User and Session Slice.                
    [   12.084208] systemd[1]: Started Forward Password Requests to Wall Directory .
    [   12.094081] systemd[1]: Set up automount Arbitrary Executable File Formats F.
    [   12.103730] systemd[1]: Reached target User and Group Name Lookups.          
    [   12.112825] systemd[1]: Reached target Remote File Systems.                  
    [   12.122142] systemd[1]: Reached target Slices.                               
    [   12.131379] systemd[1]: Reached target Swap.                                 
    [   12.140576] systemd[1]: Reached target System Time Set.                      
    [   12.150289] systemd[1]: Listening on Syslog Socket.                          
    [   12.160019] systemd[1]: Listening on fsck to fsckd communication Socket.     
    [   12.169546] systemd[1]: Listening on initctl Compatibility Named Pipe.       
    [   12.179908] systemd[1]: Listening on Journal Audit Socket.                   
    [   12.189625] systemd[1]: Listening on Journal Socket (/dev/log).              
    [   12.199278] systemd[1]: Listening on Journal Socket.                         
    [   12.209063] systemd[1]: Listening on udev Control Socket.                    
    [   12.218462] systemd[1]: Listening on udev Kernel Socket.                     
    [   12.232899] systemd[1]: Mounting Huge Pages File System...                   
    [   12.246817] systemd[1]: Mounting POSIX Message Queue File System...          
    [   12.261190] systemd[1]: Mounting Kernel Debug File System...                 
    [   12.275265] systemd[1]: Mounting Kernel Trace File System...                 
    [   12.290608] systemd[1]: Starting Restore / save the current clock...         
    [   12.304601] systemd[1]: Starting Set the console keyboard layout...          
    [   12.319690] systemd[1]: Starting Create list of static device nodes for the .
    [   12.329139] systemd[1]: Condition check resulted in Load Kernel Module drm b.
    [   12.338977] systemd[1]: Started Nameserver information manager.              
    [   12.349403] systemd[1]: Reached target Network (Pre).                        
    [   12.362023] systemd[1]: Condition check resulted in Set Up Additional Binary.
    [   12.366941] systemd[1]: Condition check resulted in File System Check on Roo.
    [   12.383039] systemd[1]: Starting Load Kernel Modules...                      
    [   12.396316] systemd[1]: Starting Remount Root and Kernel File Systems...     
    [   12.410016] systemd[1]: Starting udev Coldplug all Devices...                
    [   12.425457] systemd[1]: Mounted Huge Pages File System.                      
    [   12.435019] systemd[1]: Mounted POSIX Message Queue File System.             
    [   12.444486] systemd[1]: Mounted Kernel Debug File System.                    
    [   12.450498] EXT4-fs (mmcblk1p1): re-mounted. Opts: commit=600,errors=remounto
    [   12.461899] systemd[1]: Mounted Kernel Trace File System.                    
    [   12.474059] systemd[1]: Finished Restore / save the current clock.           
    [   12.486332] systemd[1]: Finished Create list of static device nodes for the .
    [   12.502240] systemd[1]: Finished Load Kernel Modules.                        
    [   12.515583] systemd[1]: Finished Remount Root and Kernel File Systems.       
    [   12.531957] systemd[1]: Mounting FUSE Control File System...                 
    [   12.546977] systemd[1]: Mounting Kernel Configuration File System...         
    [   12.562385] systemd[1]: Condition check resulted in Rebuild Hardware Databas.
    [   12.573771] systemd[1]: Condition check resulted in Platform Persistent Stor.
    [   12.593079] systemd[1]: Starting Load/Save Random Seed...                    
    [   12.614547] systemd[1]: Starting Apply Kernel Variables...                   
    [   12.628716] systemd[1]: Starting Create System Users...                      
    [   12.642029] systemd[1]: Mounted FUSE Control File System.                    
    [   12.651715] systemd[1]: Mounted Kernel Configuration File System.            
    [   12.960459] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [   13.984426] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [   14.278961] OF: graph: no port node found in /i2c@ff3d0000/typec-portc@22    
    [   14.650544] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac4356-sdio f2
    [   14.834441] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac4356-sdio f2
    [   14.849024] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4356/2 wl0: Mar  40
    [   15.012442] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [   16.032485] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
                                                                                    
    firefly-rk3399 login: root (automatic login)                                    
                                                                                    
     _____ _           __ _         ____  _  ____________ ___   ___                 
    |  ___(_)_ __ ___ / _| |_   _  |  _ \| |/ /___ /___ // _ \ / _ \                
    | |_  | | '__/ _ \ |_| | | | | | |_) | ' /  |_ \ |_ \ (_) | (_) |               
    |  _| | | | |  __/  _| | |_| | |  _ <| . \ ___) |__) \__, |\__, |               
    |_|   |_|_|  \___|_| |_|\__, | |_| \_\_|\_\____/____/  /_/   /_/                
                            |___/                                                   
    Welcome to Armbian 21.02.1 Focal with Linux 5.10.12-rockchip64                  
                                                                                    
    No end-user support: community creations                                        
                                                                                    
    System load:   50%              Up time:       1 min                            
    Memory usage:  8% of 3.71G      IP:                                             
    CPU temp:      44°C            Usage of /:    5% of 59G                        
                                                                                    
    [ General system configuration (beta): armbian-config ]                         
                                                                                    
    New to Armbian? Documentation: https://docs.armbian.com Support: https://forum.m
                                                                                    
    New root password:                                                              
    Armbian 21.02.1 Focal ttyS2                                                     
                                                                                    
    firefly-rk3399 login: root                                                      
    Password:                                                                       
     _____ _           __ _         ____  _  ____________ ___   ___                 
    |  ___(_)_ __ ___ / _| |_   _  |  _ \| |/ /___ /___ // _ \ / _ \                
    | |_  | | '__/ _ \ |_| | | | | | |_) | ' /  |_ \ |_ \ (_) | (_) |               
    |  _| | | | |  __/  _| | |_| | |  _ <| . \ ___) |__) \__, |\__, |               
    |_|   |_|_|  \___|_| |_|\__, | |_| \_\_|\_\____/____/  /_/   /_/                
                            |___/                                                   
    Welcome to Armbian 21.02.1 Focal with Linux 5.10.12-rockchip64                  
                                                                                    
    No end-user support: community creations                                        
                                                                                    
    System load:   9%               Up time:       3 min                            
    Memory usage:  4% of 3.71G      IP:                                             
    CPU temp:      36°C            Usage of /:    5% of 59G                        
                                                                                    
    [ 0 security updates available, 2 updates total: apt upgrade ]                  
    Last check: 2021-02-04 13:28                                                    
                                                                                    
    [ General system configuration (beta): armbian-config ]                         
                                                                                    
    Last login: Thu Feb  4 13:28:27 UTC 2021 on tty1                                
    New to Armbian? Documentation: https://docs.armbian.com Support: https://forum.m
                                                                                    
    New root password: ******                                                       
    Repeat password: ******                                                         
                                                                                    
    Choose default system command shell:                                            
                                                                                    
    1) bash                                                                         
    2) zsh                                                                          
                                                                                    
    Shell: BASH                                                                     
                                                                                    
    Creating a new user account. Press <Ctrl-C> to abort                            
                                                                                    
    Desktop environment will not be enabled if you abort the new user creation      
                                                                                    
    Please provide a username (eg. your forename):                                  
    Creating a new user account. Press <Ctrl-C> to abort                            
                                                                                    
    Desktop environment will not be enabled if you abort the new user creation      
                                                                                    
    Please provide a username (eg. your forename): denni                            
    Create password: ******                                                         
    Repeat password: ******                                                         
                                                                                    
    Please provide your real name: Denni                                            
                                                                                    
    Dear Denni, your account denni has been created and is sudo enabled.            
    Please use this account for your daily work from now on.                        
                                                                                    
                                                                                    
    Now starting desktop environment...                                             
                                                                                    
    root@firefly-rk3399:~# [  271.040440] rk3x-i2c ff160000.i2c: timeout, ipd: 0x802
    [  272.064473] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  273.088518] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  274.112476] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  275.136477] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  276.160482] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  277.184482] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  278.208473] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  279.232475] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  280.256474] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  282.097381] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [  282.097876] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    [  282.099116] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [  282.099607] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    [  282.100847] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [  282.101338] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    [  282.102598] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [  282.103088] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    [  282.104367] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [  282.104896] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    [  282.106309] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [  282.106801] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    [  287.222137] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [  287.222735] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    [  287.328397] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  288.352397] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  289.376515] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  290.400461] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              
    [  291.424437] rk3x-i2c ff160000.i2c: timeout, ipd: 0x80, state: 2              

     

    But no hdmi connection - just UART

     

    Quote

    ^C                                                                              
    root@firefly-rk3399:~# ls                                                       
    root@firefly-rk3399:~# uname -a                                                 
    Linux firefly-rk3399 5.10.12-rockchip64 #21.02.1 SMP PREEMPT Wed Feb 3 20:55:02x
    root@firefly-rk3399:~# cat /etc/os-release                                      
    NAME="Ubuntu"                                                                   
    VERSION="20.04.2 LTS (Focal Fossa)"                                             
    ID=ubuntu                                                                       
    ID_LIKE=debian                                                                  
    PRETTY_NAME="Armbian 21.02.1 Focal"                                             
    VERSION_ID="20.04"                                                              
    HOME_URL="https://www.ubuntu.com/"                                              
    SUPPORT_URL="https://help.ubuntu.com/"                                          
    BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"                             
    PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-pol"
    VERSION_CODENAME=focal                                                          
    UBUNTU_CODENAME=focal                                                           
    root@firefly-rk3399:~#

     

    apt update - apt upgrade

    and the new image boots up

     

    Quote

    [   44.293412] rockchip-i2s ff8a0000.i2s: Fail to set mclk -22                  
    [   44.293904] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
                                                                                    
    denni@firefly-rk3399:~$ [   49.359286] rockchip-i2s ff8a0000.i2s: Fail to set m2
    [   49.359820] rockchip-i2s ff8a0000.i2s: ASoC: error at snd_soc_dai_set_sysclk2
    ^C                                                                              
    denni@firefly-rk3399:~$ ls                                                      
    Desktop                                                                         
    denni@firefly-rk3399:~$ ls                                                      
    Desktop                                                                         
    denni@firefly-rk3399:~$ uname -a                                                
    Linux firefly-rk3399 5.10.16-rockchip64 #21.02.2 SMP PREEMPT Sun Feb 14 21:35:0x
    denni@firefly-rk3399:~$

     

     

     

    Screenshot_2021-02-16_11-18-07.png

    Screenshot_2021-02-16_11-49-26.png

  14. 4 hours ago, balbes150 said:

    fdtfile=rockchip/rk3399-firefly.dtb

     

    Quote

    verbosity=7
    bootlogo=false
    overlay_prefix=rockchip
    fdtfile=rockchip/rk3399-firefly.dtb
    rootdev=UUID=e4ee432b-e6cf-43d2-aca5-c26b7fca040e
    rootfstype=ext4

     

     

    Spoiler

    In                                                                                                                                 
    Channel 0: DDR3, 800MHz                                                                                                            
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB                                                             
    Channel 1: DDR3, 800MHz                                                                                                            
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB                                                             
    256B stride                                                                                                                        
    ch 0 ddrconfig = 0x101, ddrsize = 0x2020                                                                                           
    ch 1 ddrconfig = 0x101, ddrsize = 0x2020                                                                                           
    pmugrf_os_reg[2] = 0x3AA17AA1, stride = 0xD                                                                                        
    OUT                                                                                                                                
    Boot1: 2019-03-14, version: 1.19                                                                                                   
    CPUId = 0x0                                                                                                                        
    ChipType = 0x10, 243                                                                                                               
    SdmmcInit=2 0                                                                                                                      
    BootCapSize=100000                                                                                                                 
    UserCapSize=119276MB                                                                                                               
    FwPartOffset=2000 , 100000                                                                                                         
    mmc0:cmd5,20                                                                                                                       
    SdmmcInit=0 0                                                                                                                      
    BootCapSize=0                                                                                                                      
    UserCapSize=61056MB                                                                                                                
    FwPartOffset=2000 , 0                                                                                                              
    StorageInit ok = 65347                                                                                                             
    SecureMode = 0                                                                                                                     
    SecureInit read PBA: 0x4                                                                                                           
    SecureInit read PBA: 0x404                                                                                                         
    SecureInit read PBA: 0x804                                                                                                         
    SecureInit read PBA: 0xc04                                                                                                         
    SecureInit read PBA: 0x1004                                                                                                        
    SecureInit read PBA: 0x1404                                                                                                        
    SecureInit read PBA: 0x1804                                                                                                        
    SecureInit read PBA: 0x1c04                                                                                                        
    SecureInit ret = 0, SecureMode = 0                                                                                                 
    atags_set_bootdev: ret:(0)                                                                                                         
    GPT 0x3380ec0 signature is wrong                                                                                                   
    recovery gpt...                                                                                                                    
    GPT 0x3380ec0 signature is wrong                                                                                                   
    recovery gpt fail!                                                                                                                 
    LoadTrust Addr:0x4000                                                                                                              
    No find bl30.bin                                                                                                                   
    No find bl32.bin                                                                                                                   
    Load uboot, ReadLba = 2000                                                                                                         
    Load OK, addr=0x200000, size=0xbaecc                                                                                               
    RunBL31 0x40000                                                                                                                    
    NOTICE:  BL31: v1.3(debug):42583b6                                                                                                 
    NOTICE:  BL31: Built : 07:55:13, Oct 15 2019                                                                                       
    NOTICE:  BL31: Rockchip release version: v1.1                                                                                      
    INFO:    GICv3 with legacy support detected. ARM GICV3 driver initialized in EL3                                                   
    INFO:    Using opteed sec cpu_context!                                                                                             
    INFO:    boot cpu mask: 0                                                                                                          
    INFO:    plat_rockchip_pmu_init(1190): pd status 3e                                                                                
    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 SK
    ERROR:   Error initializing runtime service opteed_fast                                                                            
    INFO:    BL31: Preparing for EL3 exit to normal world                                                                              
    INFO:    Entry point address = 0x200000                                                                                            
    INFO:    SPSR = 0x3c9                                                                                                              
                                                                                                                                       
                                                                                                                                       
    U-Boot 2020.10-armbian (Feb 03 2021 - 22:38:38 +0100)                                                                              
                                                                                                                                       
    SoC: Rockchip rk3399                                                                                                               
    Reset cause: POR                                                                                                                   
    Model: Firefly-RK3399 Board                                                                                                        
    DRAM:  3.9 GiB                                                                                                                     
    PMIC:  RK808                                                                                                                       
    Cannot find regulator pwm init_voltage                                                                                             
    MMC:   mmc@fe310000: 2, mmc@fe320000: 1, sdhci@fe330000: 0                                                                         
    Loading Environment from MMC... *** Warning - bad CRC, using default environment                                                   
                                                                                                                                       
    In:    serial@ff1a0000                                                                                                             
    Out:   serial@ff1a0000                                                                                                             
    Err:   serial@ff1a0000                                                                                                             
    Model: Firefly-RK3399 Board                                                                                                        
    Net:   eth0: ethernet@fe300000                                                                                                     
    Hit any key to stop autoboot:  0                                                                                                   
    switch to partitions #0, OK                                                                                                        
    mmc1 is current device                                                                                                             
    Scanning mmc 1:1...                                                                                                                
    Found U-Boot script /boot/boot.scr                                                                                                 
    3185 bytes read in 5 ms (622.1 KiB/s)                                                                                              
    ## Executing script at 00500000                                                                                                    
    Boot script loaded from mmc 1                                                                                                      
    153 bytes read in 4 ms (37.1 KiB/s)                                                                                                
    15339744 bytes read in 652 ms (22.4 MiB/s)                                                                                         
    28582400 bytes read in 1210 ms (22.5 MiB/s)                                                                                        
    76162 bytes read in 11 ms (6.6 MiB/s)                                                                                              
    2698 bytes read in 8 ms (329.1 KiB/s)                                                                                              
    Applying kernel provided DT fixup script (rockchip-fixup.scr)                                                                      
    ## Executing script at 09000000                                                                                                    
    Moving Image from 0x2080000 to 0x2200000, end=3de0000                                                                              
    ## Loading init Ramdisk from Legacy Image at 06000000 ...                                                                          
       Image Name:   uInitrd                                                                                                           
       Image Type:   AArch64 Linux RAMDisk Image (gzip compressed)                                                                     
       Data Size:    15339680 Bytes = 14.6 MiB                                                                                         
       Load Address: 00000000                                                                                                          
       Entry Point:  00000000                                                                                                          
       Verifying Checksum ... OK                                                                                                       
    ## Flattened Device Tree blob at 01f00000                                                                                          
       Booting using the fdt blob at 0x1f00000                                                                                         
       Loading Ramdisk to f507d000, end f5f1e0a0 ... OK                                                                                
       Loading Device Tree to 00000000f5002000, end 00000000f507cfff ... OK                                                            
                                                                                                                                       
    Starting kernel ...                                                                                                                
                                                                                                                                       

     

     

  15. Spoiler

    >D"`¥���{ڎV>�H�������(@���
                                �{�����۷}�"a��DDR Version 1.24 20191016
    In
    Channel 0: DDR3, 800MHz
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB
    Channel 1: DDR3, 800MHz
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB
    256B stride
    ch 0 ddrconfig = 0x101, ddrsize = 0x2020
    ch 1 ddrconfig = 0x101, ddrsize = 0x2020
    pmugrf_os_reg[2] = 0x3AA17AA1, stride = 0xD
    OUT
    Boot1: 2019-03-14, version: 1.19
    CPUId = 0x0
    ChipType = 0x10, 243
    SdmmcInit=2 0
    BootCapSize=100000
    UserCapSize=119276MB
    FwPartOffset=2000 , 100000
    mmc0:cmd5,20
    SdmmcInit=0 0
    BootCapSize=0
    UserCapSize=61056MB
    FwPartOffset=2000 , 0                                                                                                                                                                 
    StorageInit ok = 176393                                                                                                                                                               
    SecureMode = 0                                                                                                                                                                        
    SecureInit read PBA: 0x4                                                                                                                                                              
    SecureInit read PBA: 0x404                                                                                                                                                            
    SecureInit read PBA: 0x804                                                                                                                                                            
    SecureInit read PBA: 0xc04                                                                                                                                                            
    SecureInit read PBA: 0x1004                                                                                                                                                           
    SecureInit read PBA: 0x1404                                                                                                                                                           
    SecureInit read PBA: 0x1804                                                                                                                                                           
    SecureInit read PBA: 0x1c04                                                                                                                                                           
    SecureInit ret = 0, SecureMode = 0                                                                                                                                                    
    atags_set_bootdev: ret:(0)                                                                                                                                                            
    GPT 0x3380ec0 signature is wrong                                                                                                                                                      
    recovery gpt...                                                                                                                                                                       
    GPT 0x3380ec0 signature is wrong                                                                                                                                                      
    recovery gpt fail!                                                                                                                                                                    
    LoadTrust Addr:0x4000                                                                                                                                                                 
    No find bl30.bin                                                                                                                                                                      
    No find bl32.bin                                                                                                                                                                      
    Load uboot, ReadLba = 2000                                                                                                                                                            
    Load OK, addr=0x200000, size=0xbaa44                                                                                                                                                  
    RunBL31 0x40000                                                                                                                                                                       
    NOTICE:  BL31: v1.3(debug):42583b6                                                                                                                                                    
    NOTICE:  BL31: Built : 07:55:13, Oct 15 2019                                                                                                                                          
    NOTICE:  BL31: Rockchip release version: v1.1                                                                                                                                         
    INFO:    GICv3 with legacy support detected. ARM GICV3 driver initialized in EL3                                                                                                      
    INFO:    Using opteed sec cpu_context!                                                                                                                                                
    INFO:    boot cpu mask: 0                                                                                                                                                             
    INFO:    plat_rockchip_pmu_init(1190): pd status 3e                                                                                                                                   
    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 = 0x200000                                                                                                                                               
    INFO:    SPSR = 0x3c9                                                                                                                                                                 
                                                                                                                                                                                          
                                                                                                                                                                                          
    U-Boot 2020.10-armbian (Jan 05 2021 - 00:01:40 +0100)                                                                                                                                 
                                                                                                                                                                                          
    SoC: Rockchip rk3399                                                                                                                                                                  
    Reset cause: POR                                                                                                                                                                      
    Model: Firefly-RK3399 Board                                                                                                                                                           
    DRAM:  3.9 GiB                                                                                                                                                                        
    PMIC:  RK808                                                                                                                                                                          
    Cannot find regulator pwm init_voltage                                                                                                                                                
    MMC:   mmc@fe310000: 2, mmc@fe320000: 1, sdhci@fe330000: 0                                                                                                                            
    Loading Environment from MMC... *** Warning - bad CRC, using default environment                                                                                                      
                                                                                                                                                                                          
    In:    serial@ff1a0000                                                                                                                                                                
    Out:   serial@ff1a0000                                                                                                                                                                
    Err:   serial@ff1a0000                                                                                                                                                                
    Model: Firefly-RK3399 Board                                                                                                                                                           
    Net:   eth0: ethernet@fe300000                                                                                                                                                        
    Hit any key to stop autoboot:  0                                                                                                                                                      
    switch to partitions #0, OK                                                                                                                                                           
    mmc1 is current device                                                                                                                                                                
    Scanning mmc 1:1...                                                                                                                                                                   
    Found U-Boot script /boot/boot.scr                                                                                                                                                    
    3185 bytes read in 5 ms (622.1 KiB/s)                                                                                                                                                 
    ## Executing script at 00500000                                                                                                                                                       
    Boot script loaded from mmc 1                                                                                                                                                         
    117 bytes read in 4 ms (28.3 KiB/s)                                                                                                                                                   
    8817201 bytes read in 378 ms (22.2 MiB/s)                                                                                                                                             
    20768776 bytes read in 883 ms (22.4 MiB/s)                                                                                                                                            
    101691 bytes read in 11 ms (8.8 MiB/s)                                                                                                                                                
    2698 bytes read in 7 ms (376 KiB/s)                                                                                                                                                   
    Applying kernel provided DT fixup script (rockchip-fixup.scr)                                                                                                                         
    ## Executing script at 09000000                                                                                                                                                       
    ## Loading init Ramdisk from Legacy Image at 06000000 ...                                                                                                                             
       Image Name:   uInitrd                                                                                                                                                              
       Image Type:   AArch64 Linux RAMDisk Image (gzip compressed)                                                                                                                        
       Data Size:    8817137 Bytes = 8.4 MiB                                                                                                                                              
       Load Address: 00000000                                                                                                                                                             
       Entry Point:  00000000                                                                                                                                                             
       Verifying Checksum ... OK                                                                                                                                                          
    ## Flattened Device Tree blob at 01f00000                                                                                                                                             
       Booting using the fdt blob at 0x1f00000                                                                                                                                            
       Loading Ramdisk to f56b6000, end f5f1e9f1 ... OK                                                                                                                                   
    ERROR: reserving fdt memory region failed (addr=0 size=0)                                                                                                                             
       Loading Device Tree to 00000000f5634000, end 00000000f56b5fff ... OK                                                                                                               
                                                                                                                                                                                          
    Starting kernel ...                                                                                                                                                                   
                                                                                                                                                                                          
    [    0.000000] 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@desktop) (gcc version 8.3.0 (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36)) ) #1 SMP Tue Dec 15 09:09:52 0
    [    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] 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 @ffffffc0f7ed5000 s42216 r8192 d31512 u81920                                                                                             
    [    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: 999432                                                                                            
    [    0.000000] Kernel command line: root=UUID=bac3e4b8-d724-4859-a0f1-59069ae5db6f rootwait rootfstype=ext4 console=ttyS2,1500000 console=tty1 consoleblank=0 loglevel=7 ubootpart=c71
    [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)                                                                                                                   
    [    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)                                                                                                     
    [    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)                                                                                                       
    [    0.000000] software IO TLB: mapped [mem 0xeec00000-0xf2c00000] (64MB)                                                                                                             
    [    0.000000] Memory: 3891344K/4061184K available (11582K kernel code, 1402K rwdata, 6136K rodata, 1088K init, 1954K bss, 169840K reserved, 0K cma-reserved)                         
    [    0.000000] Virtual kernel memory layout:                                                                                                                                          
    [    0.000000]     modules : 0xffffff8000000000 - 0xffffff8008000000   (   128 MB)                                                                                                    
    [    0.000000]     vmalloc : 0xffffff8008000000 - 0xffffffbdbfff0000   (   246 GB)                                                                                                    
    [    0.000000]       .init : 0xffffff80091e0000 - 0xffffff80092f0000   (  1088 KB)                                                                                                    
    [    0.000000]       .text : 0xffffff8008080000 - 0xffffff8008bd0000   ( 11584 KB)                                                                                                    
    [    0.000000]     .rodata : 0xffffff8008bd0000 - 0xffffff80091e0000   (  6208 KB)                                                                                                    
    [    0.000000]       .data : 0xffffff80092f0000 - 0xffffff800944e808   (  1403 KB)                                                                                                    
    [    0.000000]     vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000   (     8 GB maximum)                                                                                            
    [    0.000000]               0xffffffbdc0008000 - 0xffffffbdc3e00000   (    61 MB actual)                                                                                             
    [    0.000000]     fixed   : 0xffffffbffe7fb000 - 0xffffffbffec00000   (  4116 KB)                                                                                                    
    [    0.000000]     PCI I/O : 0xffffffbffee00000 - 0xffffffbfffe00000   (    16 MB)                                                                                                    
    [    0.000000]     memory  : 0xffffffc000200000 - 0xffffffc0f8000000   (  3966 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 @ee900000 (psz 64K, shr 0)                                                                                                                
    [    0.000000] ITS: using cache flushing for cmd queue                                                                                                                                
    [    0.000000] GIC: using LPI property table @0x00000000ee890000                                                                                                                      
    [    0.000000] ITS: Allocated 1792 chunks for LPIs                                                                                                                                    
    [    0.000000] CPU0: found redistributor 0 region 0:0x00000000fef00000                                                                                                                
    [    0.000000] CPU0: using LPI pending table @0x00000000ee8a0000                                                                                                                      
    [    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_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.000006] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns                                                                                            
    [    0.001447] Console: colour dummy device 80x25                                                                                                                                     
    [    0.003326] console [tty1] enabled                                                                                                                                                 
    [    0.003371] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)                                                                  
    [    0.003436] pid_max: default: 32768 minimum: 301                                                                                                                                   
    [    0.003616] Security Framework initialized                                                                                                                                         
    [    0.003653] Yama: becoming mindful.                                                                                                                                                
    [    0.003698] AppArmor: AppArmor disabled by boot time parameter                                                                                                                     
    [    0.003778] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)                                                                                                           
    [    0.003818] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)                                                                                                      
    [    0.004589] Initializing cgroup subsys io                                                                                                                                          
    [    0.004634] Initializing cgroup subsys memory                                                                                                                                      
    [    0.004693] Initializing cgroup subsys devices                                                                                                                                     
    [    0.004733] Initializing cgroup subsys freezer                                                                                                                                     
    [    0.004771] Initializing cgroup subsys net_cls                                                                                                                                     
    [    0.004810] Initializing cgroup subsys perf_event                                                                                                                                  
    [    0.004849] Initializing cgroup subsys net_prio                                                                                                                                    
    [    0.004892] Initializing cgroup subsys hugetlb                                                                                                                                     
    [    0.004928] Initializing cgroup subsys pids                                                                                                                                        
    [    0.004995] ftrace: allocating 41777 entries in 164 pages                                                                                                                          
    [    0.118121] sched-energy: Sched-energy-costs installed from DT                                                                                                                     
    [    0.118169] CPU0: update cpu_capacity 401                                                                                                                                          
    [    0.118248] ASID allocator initialised with 32768 entries                                                                                                                          
    [    0.121165] PCI/MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created                                                                                   
    [    0.121760] Platform MSI: /interrupt-controller@fee00000/interrupt-controller@fee20000 domain created                                                                              
    [    0.123133] Detected VIPT I-cache on CPU1                                                                                                                                          
    [    0.123164] CPU1: found redistributor 1 region 0:0x00000000fef20000                                                                                                                
    [    0.123194] CPU1: using LPI pending table @0x00000000eeb30000                                                                                                                      
    [    0.123241] CPU1: update cpu_capacity 401                                                                                                                                          
    [    0.123245] CPU1: Booted secondary processor [410fd034]                                                                                                                            
    [    0.123784] Detected VIPT I-cache on CPU2                                                                                                                                          
    [    0.123804] CPU2: found redistributor 2 region 0:0x00000000fef40000                                                                                                                
    [    0.123831] CPU2: using LPI pending table @0x00000000eeb60000                                                                                                                      
    [    0.123859] CPU2: update cpu_capacity 401                                                                                                                                          
    [    0.123862] CPU2: Booted secondary processor [410fd034]                                                                                                                            
    [    0.124376] Detected VIPT I-cache on CPU3                                                                                                                                          
    [    0.124396] CPU3: found redistributor 3 region 0:0x00000000fef60000                                                                                                                
    [    0.124423] CPU3: using LPI pending table @0x00000000eebb0000                                                                                                                      
    [    0.124449] CPU3: update cpu_capacity 401                                                                                                                                          
    [    0.124453] CPU3: Booted secondary processor [410fd034]                                                                                                                            
    [    0.124976] Detected PIPT I-cache on CPU4                                                                                                                                          
    [    0.125002] CPU4: found redistributor 100 region 0:0x00000000fef80000                                                                                                              
    [    0.125040] CPU4: using LPI pending table @0x00000000eebf0000                                                                                                                      
    [    0.125077] CPU4: update cpu_capacity 1024                                                                                                                                         
    [    0.125080] CPU4: Booted secondary processor [410fd082]                                                                                                                            
    [    0.125636] Detected PIPT I-cache on CPU5                                                                                                                                          
    [    0.125654] CPU5: found redistributor 101 region 0:0x00000000fefa0000                                                                                                              
    [    0.125689] CPU5: using LPI pending table @0x00000000ee020000                                                                                                                      
    [    0.125715] CPU5: update cpu_capacity 1024                                                                                                                                         
    [    0.125718] CPU5: Booted secondary processor [410fd082]                                                                                                                            
    [    0.125805] Brought up 6 CPUs                                                                                                                                                      
    [    0.126520] SMP: Total of 6 processors activated.                                                                                                                                  
    [    0.126554] CPU features: detected feature: GIC system register CPU interface                                                                                                      
    [    0.126591] CPU features: detected feature: 32-bit EL0 Support                                                                                                                     
    [    0.126627] CPU: All CPU(s) started at EL2                                                                                                                                         
    [    0.126697] alternatives: patching kernel code                                                                                                                                     
    [    0.128103] devtmpfs: initialized                                                                                                                                                  
    [    0.145204] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns                                                                        
    [    0.145262] futex hash table entries: 2048 (order: 5, 131072 bytes)                                                                                                                
    [    0.145729] xor: measuring software checksum speed                                                                                                                                 
    [    0.185159]    8regs     :  2855.000 MB/sec                                                                                                                                        
    [    0.225220]    8regs_prefetch:  2558.000 MB/sec                                                                                                                                    
    [    0.265282]    32regs    :  3211.000 MB/sec                                                                                                                                        
    [    0.305342]    32regs_prefetch:  2840.000 MB/sec                                                                                                                                   
    [    0.305362] xor: using function: 32regs (3211.000 MB/sec)                                                                                                                          
    [    0.305398] pinctrl core: initialized pinctrl subsystem                                                                                                                            
    [    0.306192] NET: Registered protocol family 16                                                                                                                                     
    [    0.317982] cpuidle: using governor ladder                                                                                                                                         
    [    0.330005] cpuidle: using governor menu                                                                                                                                           
    [    0.330043] Registered FIQ tty driver                                                                                                                                              
    [    0.330332] vdso: 2 pages (1 code @ ffffff8008bd6000, 1 data @ ffffff80092f5000)                                                                                                   
    [    0.330386] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.                                                                                                          
    [    0.330565] DMA: preallocated 256 KiB pool for atomic allocations                                                                                                                  
    [    0.353604] console [pstore-1] enabled                                                                                                                                             
    [    0.353631] pstore: Registered ramoops as persistent store backend                                                                                                                 
    [    0.353656] ramoops: attached 0xf0000@0x110000, ecc: 0/0                                                                                                                           
    [    0.425650] console [ttyFIQ0] enabled                                                                                                                                              
    [    0.426202] Registered fiq debugger ttyFIQ0                                                                                                                                        
    [    0.501728] raid6: int64x1  gen()   450 MB/s                                                                                                                                       
    [    0.569763] raid6: int64x1  xor()   414 MB/s                                                                                                                                       
    [    0.637935] raid6: int64x2  gen()   755 MB/s                                                                                                                                       
    [    0.706006] raid6: int64x2  xor()   609 MB/s                                                                                                                                       
    [    0.774101] raid6: int64x4  gen()   938 MB/s                                                                                                                                       
    [    0.842182] raid6: int64x4  xor()   673 MB/s                                                                                                                                       
    [    0.910295] raid6: int64x8  gen()   863 MB/s                                                                                                                                       
    [    0.978388] raid6: int64x8  xor()   608 MB/s                                                                                                                                       
    [    1.046494] raid6: neonx1   gen()   909 MB/s                                                                                                                                       
    [    1.114626] raid6: neonx1   xor()   676 MB/s                                                                                                                                       
    [    1.182699] raid6: neonx2   gen()  1518 MB/s                                                                                                                                       
    [    1.250818] raid6: neonx2   xor()   986 MB/s                                                                                                                                       
    [    1.318908] raid6: neonx4   gen()  1794 MB/s                                                                                                                                       
    [    1.387026] raid6: neonx4   xor()  1143 MB/s                                                                                                                                       
    [    1.455113] raid6: neonx8   gen()  1700 MB/s                                                                                                                                       
    [    1.523217] raid6: neonx8   xor()  1245 MB/s                                                                                                                                       
    [    1.523608] raid6: using algorithm neonx4 gen() 1794 MB/s                                                                                                                          
    [    1.524102] raid6: .... xor() 1143 MB/s, rmw enabled                                                                                                                               
    [    1.524560] raid6: using intx1 recovery algorithm                                                                                                                                  
    [    1.529031] iommu: Adding device ff650000.vpu_service to group 0                                                                                                                   
    [    1.529664] iommu: Adding device ff660000.rkvdec to group 1                                                                                                                        
    [    1.530279] iommu: Adding device ff8f0000.vop to group 2                                                                                                                           
    [    1.530867] iommu: Adding device ff900000.vop to group 3                                                                                                                           
    [    1.531475] iommu: Adding device ff910000.cif_isp to group 4                                                                                                                       
    [    1.532434] rk_iommu ff650800.iommu: can't get sclk                                                                                                                                
    [    1.533139] rk_iommu ff660480.iommu: can't get sclk                                                                                                                                
    [    1.533796] rk_iommu ff8f3f00.iommu: can't get sclk                                                                                                                                
    [    1.534408] rk_iommu ff903f00.iommu: can't get sclk                                                                                                                                
    [    1.535032] rk_iommu ff914000.iommu: can't get sclk                                                                                                                                
    [    1.535851] SCSI subsystem initialized                                                                                                                                             
    [    1.536538] usbcore: registered new interface driver usbfs                                                                                                                         
    [    1.537084] usbcore: registered new interface driver hub                                                                                                                           
    [    1.537653] usbcore: registered new device driver usb                                                                                                                              
    [    1.538205] media: Linux media interface: v0.10                                                                                                                                    
    [    1.538654] Linux video capture interface: v2.00                                                                                                                                   
    [    1.539150] pps_core: LinuxPPS API ver. 1 registered                                                                                                                               
    [    1.539611] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>                                                                               
    [    1.540456] PTP clock support registered                                                                                                                                           
    [    1.541970] Advanced Linux Sound Architecture Driver Initialized.                                                                                                                  
    [    1.543369] NetLabel: Initializing                                                                                                                                                 
    [    1.543692] NetLabel:  domain hash size = 128                                                                                                                                      
    [    1.544093] NetLabel:  protocols = UNLABELED CIPSOv4                                                                                                                               
    [    1.544582] NetLabel:  unlabeled traffic allowed by default                                                                                                                        
    [    1.545344] rockchip-cpuinfo cpuinfo: Serial         : 19d9d710df333dee                                                                                                            
    [    1.546482] clocksource: Switched to clocksource arch_sys_counter                                                                                                                  
    [    1.592935] thermal thermal_zone1: power_allocator: sustainable_power will be estimated                                                                                            
    [    1.593780] NET: Registered protocol family 2                                                                                                                                      
    [    1.594641] TCP established hash table entries: 32768 (order: 6, 262144 bytes)                                                                                                     
    [    1.595566] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes)                                                                                                           
    [    1.597011] TCP: Hash tables configured (established 32768 bind 32768)                                                                                                             
    [    1.597699] UDP hash table entries: 2048 (order: 5, 196608 bytes)                                                                                                                  
    [    1.598396] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes)                                                                                                             
    [    1.599353] NET: Registered protocol family 1                                                                                                                                      
    [    1.600449] Trying to unpack rootfs image as initramfs...                                                                                                                          
    [    2.031118] Freeing initrd memory: 8608K                                                                                                                                           
    [    2.031976] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available                                                                                          
    [    2.032812] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available                                                                                          
    [    2.035121] kvm [1]: 8-bit VMID                                                                                                                                                    
    [    2.035423] kvm [1]: Hyp mode initialized successfully                                                                                                                             
    [    2.036018] kvm [1]: interrupt-controller@fff20000 IRQ10                                                                                                                           
    [    2.036709] kvm [1]: timer IRQ12                                                                                                                                                   
    [    2.040237] audit: initializing netlink subsys (disabled)                                                                                                                          
    [    2.040789] audit: type=2000 audit(1.964:1): initialized                                                                                                                           
    [    2.041667] Initialise system trusted keyring                                                                                                                                      
    [    2.042442] HugeTLB registered 2 MB page size, pre-allocated 0 pages                                                                                                               
    [    2.050386] VFS: Disk quotas dquot_6.6.0                                                                                                                                           
    [    2.050950] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)                                                                                                         
    [    2.053026] squashfs: version 4.0 (2009/01/31) Phillip Lougher                                                                                                                     
    [    2.054204] fuse init (API version 7.23)                                                                                                                                           
    [    2.055166] JFS: nTxBlock = 8192, nTxLock = 65536                                                                                                                                  
    [    2.060502] SGI XFS with ACLs, security attributes, realtime, no debug enabled                                                                                                     
    [    2.062931] Key type big_key registered                                                                                                                                            
    [    2.063304]                                                                                                                                                                        
    [    2.063304] TEE Core Framework initialization (ver 1:0.1)                                                                                                                          
    [    2.063960] TEE armv7 Driver initialization                                                                                                                                        
    [    2.064786] tz_tee_probe: name="armv7sec", id=0, pdev_name="armv7sec.0"                                                                                                            
    [    2.065390] TEE core: Alloc the misc device "opteearmtz00" (id=0)                                                                                                                  
    [    2.066121] TEE Core: Register the misc device "opteearmtz00" (id=0,minor=62)                                                                                                      
    [    2.072270] Key type asymmetric registered                                                                                                                                         
    [    2.072660] Asymmetric key parser 'x509' registered                                                                                                                                
    [    2.073289] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)                                                                                                   
    [    2.074112] io scheduler noop registered                                                                                                                                           
    [    2.074513] io scheduler deadline registered (default)                                                                                                                             
    [    2.075019] io scheduler cfq registered                                                                                                                                            
    [    2.076873] phy phy-ff770000.syscon:usb2-phy@e460.1: Failed to get VBUS supply regulator                                                                                           
    [    2.082690] rockchip-pcie f8000000.pcie: no vpcie3v3 regulator found                                                                                                               
    [    2.083301] rockchip-pcie f8000000.pcie: no vpcie1v8 regulator found                                                                                                               
    [    2.083904] rockchip-pcie f8000000.pcie: no vpcie0v9 regulator found                                                                                                               
    [    2.084483] rockchip-pcie f8000000.pcie: no bus-scan-delay-ms in device tree, default 0 ms                                                                                         
    [    2.085237] rockchip-pcie f8000000.pcie: missing "memory-region" property                                                                                                          
    [    2.085856] PCI host bridge /pcie@f8000000 ranges:                                                                                                                                 
    [    2.086308]   MEM 0xfa000000..0xfbdfffff -> 0xfa000000                                                                                                                             
    [    2.086797]    IO 0xfbe00000..0xfbefffff -> 0xfbe00000                                                                                                                             
    [    2.738538] rockchip-pcie f8000000.pcie: PCIe link training gen1 timeout!                                                                                                          
    [    2.739191] rockchip-pcie f8000000.pcie: deferred probe failed                                                                                                                     
    [    2.739954] rockchip-pcie: probe of f8000000.pcie failed with error -110                                                                                                           
    [    2.741778] rk-vcodec ff650000.vpu_service: no regulator for vcodec                                                                                                                
    [    2.742726] rk-vcodec ff650000.vpu_service: probe device                                                                                                                           
    [    2.743462] rk-vcodec ff650000.vpu_service: drm allocator with mmu enabled                                                                                                         
    [    2.744629] rk-vcodec ff650000.vpu_service: could not find power_model node                                                                                                        
    [    2.745268] rk-vcodec ff650000.vpu_service: init success                                                                                                                           
    [    2.745993] rk-vcodec ff660000.rkvdec: no regulator for vcodec                                                                                                                     
    [    2.746968] rk-vcodec ff660000.rkvdec: probe device                                                                                                                                
    [    2.747626] rk-vcodec ff660000.rkvdec: drm allocator with mmu enabled                                                                                                              
    [    2.748643] rk-vcodec ff660000.rkvdec: could not find power_model node                                                                                                             
    [    2.749237] rk-vcodec ff660000.rkvdec: init success                                                                                                                                
    [    2.751194] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-241330                                                                                                 
    [    2.751894] dma-pl330 ff6d0000.dma-controller:       DBUFF-32x8bytes Num_Chans-6 Num_Peri-12 Num_Events-12                                                                         
    [    2.754145] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-241330                                                                                                 
    [    2.754859] dma-pl330 ff6e0000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16                                                                        
    [    2.756704] rockchip-system-monitor rockchip-system-monitor: system monitor probe                                                                                                  

     

     

    Trying to boot legacy Armbian_20.11.10_Firefly-rk3399_bionic_legacy_4.4.213_desktop

  16.  

    Vondering if this has something to do with AppArmor or the hardware partitions

     

    grep APPARMOR /boot/config-*                           
    CONFIG_SECURITY_APPARMOR=y                                                      
    CONFIG_SECURITY_APPARMOR_HASH=y                                                 
    CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y                                         
    # CONFIG_SECURITY_APPARMOR_DEBUG is not set                                     
    CONFIG_DEFAULT_SECURITY_APPARMOR=y

     

    This is from successful Armbian 21.02.1 Focal with Linux 5.10.12-rockchip64 emmc boot

     

    Screenshot_2021-02-12_17-50-32.png

  17. 2 hours ago, balbes150 said:

    I'm not asking you about eMMC, but about launching from external media.

     

    ArmbianEnv.txt

    Quote

    verbosity=7
    bootlogo=false
    overlay_prefix=rockchip
    rootdev=UUID=76c21c43-8ec8-4c56-a741-6fd8602eed2e
    rootfstype=ext4

     

    mainline focal 5.10.y from https://www.armbian.com/firefly-rk3399/

    sd card boot up does not get any further than - starting kernel.......

     

    UART:

    Spoiler

    d@A~PÐ
          '@Î8DDR Version 1.24 20191016
    In
    Channel 0: DDR3, 800MHz
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB
    Channel 1: DDR3, 800MHz
    Bus Width=32 Col=10 Bank=8 Row=15/15 CS=2 Die Bus-Width=16 Size=2048MB
    256B stride
    ch 0 ddrconfig = 0x101, ddrsize = 0x2020
    ch 1 ddrconfig = 0x101, ddrsize = 0x2020
    pmugrf_os_reg[2] = 0x3AA17AA1, stride = 0xD
    OUT
    Boot1: 2019-03-14, version: 1.19
    CPUId = 0x0
    ChipType = 0x10, 243
    SdmmcInit=2 0
    BootCapSize=100000
    UserCapSize=119276MB
    FwPartOffset=2000 , 100000
    mmc0:cmd5,20
    SdmmcInit=0 0
    BootCapSize=0
    UserCapSize=61056MB
    FwPartOffset=2000 , 0
    StorageInit ok = 345547                                                         
    SecureMode = 0                                                                  
    SecureInit read PBA: 0x4                                                        
    SecureInit read PBA: 0x404                                                      
    SecureInit read PBA: 0x804                                                      
    SecureInit read PBA: 0xc04                                                      
    SecureInit read PBA: 0x1004                                                     
    SecureInit read PBA: 0x1404                                                     
    SecureInit read PBA: 0x1804                                                     
    SecureInit read PBA: 0x1c04                                                     
    SecureInit ret = 0, SecureMode = 0                                              
    atags_set_bootdev: ret:(0)                                                      
    GPT 0x3380ec0 signature is wrong                                                
    recovery gpt...                                                                 
    GPT 0x3380ec0 signature is wrong                                                
    recovery gpt fail!                                                              
    LoadTrust Addr:0x4000                                                           
    No find bl30.bin                                                                
    No find bl32.bin                                                                
    Load uboot, ReadLba = 2000                                                      
    Load OK, addr=0x200000, size=0xbaecc                                            
    RunBL31 0x40000                                                                 
    NOTICE:  BL31: v1.3(debug):42583b6                                              
    NOTICE:  BL31: Built : 07:55:13, Oct 15 2019                                    
    NOTICE:  BL31: Rockchip release version: v1.1                                   
    INFO:    GICv3 with legacy support detected. ARM GICV3 driver initialized in EL3
    INFO:    Using opteed sec cpu_context!                                          
    INFO:    boot cpu mask: 0                                                       
    INFO:    plat_rockchip_pmu_init(1190): pd status 3e                             
    INFO:    BL31: Initializing runtime services                                    
    WARNING: No OPTEE provided by BL2 boot loader, Booting device without OPTEE iniK
    ERROR:   Error initializing runtime service opteed_fast                         
    INFO:    BL31: Preparing for EL3 exit to normal world                           
    INFO:    Entry point address = 0x200000                                         
    INFO:    SPSR = 0x3c9                                                           
                                                                                    
                                                                                    
    U-Boot 2020.10-armbian (Feb 03 2021 - 22:38:38 +0100)                           
                                                                                    
    SoC: Rockchip rk3399                                                            
    Reset cause: POR                                                                
    Model: Firefly-RK3399 Board                                                     
    DRAM:  3.9 GiB                                                                  
    PMIC:  RK808                                                                    
    Cannot find regulator pwm init_voltage                                          
    MMC:   mmc@fe310000: 2, mmc@fe320000: 1, sdhci@fe330000: 0                      
    Loading Environment from MMC... *** Warning - bad CRC, using default environment
                                                                                    
    In:    serial@ff1a0000                                                          
    Out:   serial@ff1a0000                                                          
    Err:   serial@ff1a0000                                                          
    Model: Firefly-RK3399 Board                                                     
    Net:   eth0: ethernet@fe300000                                                  
    Hit any key to stop autoboot:  0                                                
    switch to partitions #0, OK                                                     
    mmc1 is current device                                                          
    Scanning mmc 1:1...                                                             
    Found U-Boot script /boot/boot.scr                                              
    3185 bytes read in 5 ms (622.1 KiB/s)                                           
    ## Executing script at 00500000                                                 
    Boot script loaded from mmc 1                                                   
    117 bytes read in 4 ms (28.3 KiB/s)                                             
    15339358 bytes read in 659 ms (22.2 MiB/s)                                      
    28582400 bytes read in 1213 ms (22.5 MiB/s)                                     
    76162 bytes read in 11 ms (6.6 MiB/s)                                           
    2698 bytes read in 7 ms (376 KiB/s)                                             
    Applying kernel provided DT fixup script (rockchip-fixup.scr)                   
    ## Executing script at 09000000                                                 
    Moving Image from 0x2080000 to 0x2200000, end=3de0000                           
    ## Loading init Ramdisk from Legacy Image at 06000000 ...                       
       Image Name:   uInitrd                                                        
       Image Type:   AArch64 Linux RAMDisk Image (gzip compressed)                  
       Data Size:    15339294 Bytes = 14.6 MiB                                      
       Load Address: 00000000                                                       
       Entry Point:  00000000                                                       
       Verifying Checksum ... OK                                                    
    ## Flattened Device Tree blob at 01f00000                                       
       Booting using the fdt blob at 0x1f00000                                      
       Loading Ramdisk to f507d000, end f5f1df1e ... OK                             
       Loading Device Tree to 00000000f5002000, end 00000000f507cfff ... OK         
                                                                                    
    Starting kernel ...                                                             
                                                                                    

     

     

    Screenshot_2021-02-12_17-09-09.png

×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines