Closed MidG971 closed 1 month ago
Hmm, it is defined in the device tree: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/boot/dts/rockchip/rk3399-rock-4se.dts
Do you know which WiFi chip is used? Obviously not the same as on ROCK 4B. I don't own the device, so cannot test. Let's check back with some other users: https://dietpi.com/forum/t/radxa-rock-4-se-supported-not-booting/19263
According to Radxahttps://dl.radxa.com/rockpi4/docs/hw/rockpi4/ROCK-4-SE-V1.53-SCH.pdf AP6255 I found this datasheet : https://datasheet.lcsc.com/lcsc/2202221430_AMPAK-Tech-AP6255_C2687149.pdf
BUT Prior to the release of the new image for the board, I tried to manually, setup a hotspot with Radxa's latest github image, here are the relevant parts of what I did, or what info I had a the time:
eth0: connected to Wired connection 1
"eth0"
ethernet (rk_gmac-dwmac), 5E:00:CF:5C:B8:65, hw, mtu 1500
ip4 default, ip6 default
inet4 192.168.1.116/24
route4 0.0.0.0/0
route4 192.168.1.0/24
inet6 2a01:e0a:58f:dd60:481b:4685:fad8:bdfd/64
inet6 fe80::3fe2:d92:5890:e917/64
route6 2a01:e0a:58f:dd60::/64
route6 ::/0
route6 fe80::/64
wlan0: connected to Passione
"Broadcom Wi-Fi"
wifi (brcmfmac), E8:FB:1C:FE:D7:25, hw, mtu 1500
inet4 192.168.1.85/24
route4 0.0.0.0/0
route4 192.168.1.0/24
inet6 2a01:e0a:58f:dd60:3c3a:8d49:5512:c370/64
inet6 fe80::1f64:9113:ba2a:ccef/64
route6 2a01:e0a:58f:dd60::/64
route6 ::/0
route6 fe80::/64
iw list sudo
So here we are: dmesg:
lsmod
root@rock-4se:~# uname -a
Linux rock-4se 5.10.110-18-rockchip #f22751370 SMP Wed Sep 13 12:33:32 UTC 2023 aarch64 GNU/Linux
root@rock-4se:~# systemd
systemd systemd-machine-id-setup
systemd-analyze systemd-mount
systemd-ask-password systemd-notify
systemd-cat systemd-path
systemd-cgls systemd-resolve
systemd-cgtop systemd-run
systemd-delta systemd-socket-activate
systemd-detect-virt systemd-stdio-bridge
systemd-escape systemd-sysusers
systemd-hwdb systemd-tmpfiles
systemd-id128 systemd-tty-ask-password-agent
systemd-inhibit systemd-umount
root@rock-4se:~# systemd
systemd systemd-machine-id-setup
systemd-analyze systemd-mount
systemd-ask-password systemd-notify
systemd-cat systemd-path
systemd-cgls systemd-resolve
systemd-cgtop systemd-run
systemd-delta systemd-socket-activate
systemd-detect-virt systemd-stdio-bridge
systemd-escape systemd-sysusers
systemd-hwdb systemd-tmpfiles
systemd-id128 systemd-tty-ask-password-agent
systemd-inhibit systemd-umount
root@rock-4se:~#
I dont know why when I copy MobaXterm's output it get this ugly on github, sorry for the inconvenience
I dont know why when I copy MobaXterm's output it get this ugly on github, sorry for the inconvenience
This has less to do with MobaXterm. Rather, it is the way you perform the formatting in GitHub. The following should be used for multiple code or log lines
code block line 1 code block line 2 code block line 3
Will result in
code block line 1
code block line 2
code block line 3
I have proof that i have AzuerWave wifi on board. BUT looking at the datasheet it seems pin compatible with AP6255. So I guess Radxa just changed/shuffles wifi module and did not bother to update docs.
@jannoke See also my answer on the forum, to test with the correct device tree.
I tried to check whether AW-CM256SM and AP6255 are rebrands of the same chip, as I remember there was something like that. But Actually AW-CM256SM seems to be based on CYW43455 instead.
Checking further, AP6255 instead is based on BCM43455, which is suspiciously close. ... and indeed, CYW43455 is a rebrand of BCM43455. So this means AW-CM256SM and AP6255 use the same chip and hence should work with the same driver. They might still expect different firmware file names, but I remember that those two were just symlink to each other in the firmware-brcm80211
package.
Ah, actually on several other boards with SDIO onboard WiFi, it was required to load this kernel module manually. Does this help?
modprobe sprdwl_ng
Although, this seems to be for UWE5622 only. The numbers seem so similar, but are not the same 😄. Here this one seems to be the right one:
modprobe brcmfmac-cyw
# or
modprobe brcmfmac
Here we go :
root@DietPi:~# modprobe sprdwl_ng
Segmentation fault
root@DietPi:~# modprobe brcmfmac-cyw
root@DietPi:~# dietpi-config
root@DietPi:~# modprobe brcmfmac
root@DietPi:~# lsmod
Module Size Used by
brcmfmac_cyw 12288 0
sprdwl_ng 356352 1
btsdio 16384 0
bluetooth 811008 1 btsdio
snd_soc_simple_card 20480 0
snd_soc_audio_graph_card 16384 0
snd_soc_es8316 40960 1
snd_soc_rockchip_i2s 24576 2
snd_soc_simple_card_utils 32768 2 snd_soc_audio_graph_card,snd_soc_simple_card
snd_soc_spdif_tx 12288 0
snd_soc_core 294912 6 snd_soc_spdif_tx,snd_soc_audio_graph_card,snd_soc_simple_card_utils,snd_soc_rockchip_i2s,snd_soc_simple_card,snd_soc_es8316
snd_compress 28672 1 snd_soc_core
panfrost 77824 0
snd_pcm_dmaengine 16384 1 snd_soc_core
gpu_sched 49152 1 panfrost
brcmfmac 405504 1 brcmfmac_cyw
snd_pcm 143360 5 snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_soc_es8316,snd_pcm_dmaengine
drm_shmem_helper 24576 1 panfrost
rk_crypto 28672 0
brcmutil 24576 1 brcmfmac
hantro_vpu 262144 0
rng_core 20480 1 rk_crypto
rockchip_vdec 77824 0
v4l2_vp9 24576 2 rockchip_vdec,hantro_vpu
cfg80211 991232 2 brcmfmac,sprdwl_ng
snd_timer 40960 1 snd_pcm
snd 106496 4 snd_timer,snd_compress,snd_soc_core,snd_pcm
videobuf2_dma_contig 24576 2 rockchip_vdec,hantro_vpu
rockchip_rga 24576 0
soundcore 12288 1 snd
v4l2_h264 16384 2 rockchip_vdec,hantro_vpu
rfkill 28672 3 bluetooth,cfg80211
v4l2_mem2mem 40960 3 rockchip_vdec,hantro_vpu,rockchip_rga
videobuf2_dma_sg 16384 1 rockchip_rga
videobuf2_memops 16384 2 videobuf2_dma_contig,videobuf2_dma_sg
videobuf2_v4l2 32768 4 rockchip_vdec,hantro_vpu,rockchip_rga,v4l2_mem2mem
videodev 294912 5 rockchip_vdec,videobuf2_v4l2,hantro_vpu,rockchip_rga,v4l2_mem2mem
videobuf2_common 65536 8 rockchip_vdec,videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,videobuf2_dma_sg,v4l2_mem2mem,videobuf2_memops
mc 77824 6 rockchip_vdec,videodev,videobuf2_v4l2,hantro_vpu,videobuf2_common,v4l2_mem2mem
cpufreq_dt 16384 0
dm_mod 151552 0
ip_tables 32768 0
x_tables 57344 1 ip_tables
autofs4 45056 2
realtek 32768 1
dwmac_rk 28672 0
stmmac_platform 24576 1 dwmac_rk
stmmac 245760 3 stmmac_platform,dwmac_rk
pcs_xpcs 24576 1 stmmac
root@DietPi:~#
root@DietPi:~# cd /tmp
root@DietPi:/tmp# ls
root@DietPi:/tmp# wget https://dietpi.com/downloads/binaries/linux-{image,dtb}-current-rockchip64
--2024-03-05 20:31:16-- https://dietpi.com/downloads/binaries/linux-image-current-rockchip64
Resolving dietpi.com (dietpi.com)... 2606:4700:20::681a:4f3, 2606:4700:20::ac43:4565, 2606:4700:20::681a:5f3, ...
Connecting to dietpi.com (dietpi.com)|2606:4700:20::681a:4f3|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2024-03-05 20:31:16 ERROR 404: Not Found.
--2024-03-05 20:31:16-- https://dietpi.com/downloads/binaries/linux-dtb-current-rockchip64
Reusing existing connection to [dietpi.com]:443.
HTTP request sent, awaiting response... 404 Not Found
2024-03-05 20:31:16 ERROR 404: Not Found.
root@DietPi:/tmp# ping google.fr
PING google.fr(par21s19-in-x03.1e100.net (2a00:1450:4007:813::2003)) 56 data bytes
64 bytes from par21s06-in-x03.1e100.net (2a00:1450:4007:813::2003): icmp_seq=1 ttl=112 time=3.09 ms
64 bytes from par21s06-in-x03.1e100.net (2a00:1450:4007:813::2003): icmp_seq=2 ttl=112 time=3.62 ms
64 bytes from par21s06-in-x03.1e100.net (2a00:1450:4007:813::2003): icmp_seq=3 ttl=112 time=4.00 ms
^C
--- google.fr ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2004ms
rtt min/avg/max/mdev = 3.087/3.568/3.997/0.373 ms
root@DietPi:/tmp# wget https://dietpi.com/downloads/binaries/linux-{image,dtb}-current-rockchip64
There was the .deb
file ending missing, my fault. Here again the commands:
cd /tmp
wget https://dietpi.com/downloads/binaries/linux-{image,dtb}-current-rockchip64.deb
dpkg -i linux-{image,dtb}-current-rockchip64.deb
rm linux-{image,dtb}-current-rockchip64.deb
G_CONFIG_INJECT 'fdtfile=' 'fdtfile=rockchip/rk3399-rock-4se.dtb' /boot/dietpiEnv.txt
reboot
Yes, figured this ;) Still the same nonetheless :
root@DietPi:~# G_CONFIG_INJECT 'fdtfile=' 'fdtfile=rockchip/rk3399-rock-4se.dtb' /boot/dietpiEnv.txt
[ OK ] G_CONFIG_INJECT | Desired setting in /boot/dietpiEnv.txt was already set: fdtfile=rockchip/rk3399-rock-4se.dtb
root@DietPi:~# lsmod
Module Size Used by
btsdio 16384 0
bluetooth 811008 1 btsdio
snd_soc_hdmi_codec 24576 1
panfrost 77824 0
snd_soc_audio_graph_card 16384 0
gpu_sched 49152 1 panfrost
drm_shmem_helper 24576 1 panfrost
snd_soc_simple_card 20480 0
snd_soc_spdif_tx 12288 0
dw_hdmi_i2s_audio 12288 0
snd_soc_simple_card_utils 32768 2 snd_soc_audio_graph_card,snd_soc_simple_card
brcmfmac 405504 0
snd_soc_es8316 40960 1
snd_soc_rockchip_i2s 24576 3
dw_hdmi_cec 12288 0
brcmutil 24576 1 brcmfmac
rockchip_vdec 77824 0
hantro_vpu 262144 0
rk_crypto 28672 0
snd_soc_core 294912 7 snd_soc_spdif_tx,snd_soc_hdmi_codec,snd_soc_audio_graph_card,snd_soc_simple_card_utils,snd_soc_rockchip_i2s,snd_soc_simple_card,snd_soc_es8316
cfg80211 991232 1 brcmfmac
rockchip_rga 24576 0
rng_core 20480 1 rk_crypto
snd_compress 28672 1 snd_soc_core
v4l2_vp9 24576 2 rockchip_vdec,hantro_vpu
snd_pcm_dmaengine 16384 1 snd_soc_core
snd_pcm 143360 6 snd_soc_hdmi_codec,snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_soc_es8316,snd_pcm_dmaengine
videobuf2_dma_contig 24576 2 rockchip_vdec,hantro_vpu
videobuf2_dma_sg 16384 1 rockchip_rga
v4l2_h264 16384 2 rockchip_vdec,hantro_vpu
v4l2_mem2mem 40960 3 rockchip_vdec,hantro_vpu,rockchip_rga
snd_timer 40960 1 snd_pcm
rfkill 28672 3 bluetooth,cfg80211
videobuf2_memops 16384 2 videobuf2_dma_contig,videobuf2_dma_sg
videobuf2_v4l2 32768 4 rockchip_vdec,hantro_vpu,rockchip_rga,v4l2_mem2mem
snd 106496 5 snd_soc_hdmi_codec,snd_timer,snd_compress,snd_soc_core,snd_pcm
soundcore 12288 1 snd
videodev 294912 5 rockchip_vdec,videobuf2_v4l2,hantro_vpu,rockchip_rga,v4l2_mem2mem
videobuf2_common 65536 8 rockchip_vdec,videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,videobuf2_dma_sg,v4l2_mem2mem,videobuf2_memops
mc 77824 6 rockchip_vdec,videodev,videobuf2_v4l2,hantro_vpu,videobuf2_common,v4l2_mem2mem
cpufreq_dt 16384 0
dm_mod 151552 0
ip_tables 32768 0
x_tables 57344 1 ip_tables
autofs4 45056 2
realtek 32768 1
dwmac_rk 28672 0
stmmac_platform 24576 1 dwmac_rk
stmmac 245760 3 stmmac_platform,dwmac_rk
pcs_xpcs 24576 1 stmmac
root@DietPi:~# cat /boot/dietpiEnv.txt rootdev=UUID=88a725de-ac8d-428f-ae0e-2964c016dc23
rootfstype=ext4
# The init system logs to the console defined last.
consoleargs=console=ttyS2,1500000 console=tty1
usbstoragequirks=
extraargs=net.ifnames=0
docker_optimizations=off
overlay_path=rockchip
overlay_prefix=rockchip
overlays=
user_overlays=
fdtfile=rockchip/rk3399-rock-4se.dtb
root@DietPi:~# dmesg
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 6.6.15-current-rockchip64 (armbian@next) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #2 SMP PREEMPT Thu Feb 1 00:19:14 UTC 2024
[ 0.000000] Machine model: Radxa ROCK 4SE
[ 0.000000] efi: UEFI not found.
[ 0.000000] NUMA: No NUMA configuration found
[ 0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] NUMA: NODE_DATA [mem 0xf77cb980-0xf77cdfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] On node 0, zone DMA: 512 pages in unavailable ranges
[ 0.000000] cma: Reserved 128 MiB at 0x00000000e8200000 on node -1
[ 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 31 pages/cpu s88296 r8192 d30488 u126976
[ 0.000000] pcpu-alloc: s88296 r8192 d30488 u126976 alloc=31*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] CPU features: detected: GIC system register CPU interface
[ 0.000000] CPU features: detected: ARM erratum 845719
[ 0.000000] alternatives: applying boot alternatives
[ 0.000000] Kernel command line: root=UUID=88a725de-ac8d-428f-ae0e-2964c016dc23 rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] Fallback order for Node 0: 0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 999432
[ 0.000000] Policy zone: DMA
[ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.000000] software IO TLB: area num 8.
[ 0.000000] software IO TLB: mapped [mem 0x00000000e4200000-0x00000000e8200000] (64MB)
[ 0.000000] Memory: 3741232K/4061184K available (16960K kernel code, 2308K rwdata, 6364K rodata, 4672K init, 604K bss, 188880K reserved, 131072K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[ 0.000000] trace event string verifier disabled
[ 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] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=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] Root IRQ handler: gic_handle_irq
[ 0.000000] GICv3: GICv3 features: 16 PPIs
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fef00000
[ 0.000000] ITS [mem 0xfee20000-0xfee3ffff]
[ 0.000000] ITS@0x00000000fee20000: allocated 65536 Devices @500000 (flat, esz 8, psz 64K, shr 0)
[ 0.000000] ITS: using cache flushing for cmd queue
[ 0.000000] GICv3: using LPI property table @0x00000000004f0000
[ 0.000000] GIC: using cache flushing for LPI property table
[ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000000580000
[ 0.000000] GICv3: 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] GICv3: GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@100[4] /cpus/cpu@101[5] }
[ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[ 0.001478] Console: colour dummy device 80x25
[ 0.001497] printk: console [tty1] enabled
[ 0.002757] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[ 0.002809] pid_max: default: 32768 minimum: 301
[ 0.002971] LSM: initializing lsm=capability,yama,apparmor,integrity
[ 0.003048] Yama: becoming mindful.
[ 0.003196] AppArmor: AppArmor initialized
[ 0.003270] stackdepot: allocating hash table of 262144 entries via kvcalloc
[ 0.004022] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.004082] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.006515] cacheinfo: Unable to detect cache hierarchy for CPU 0
[ 0.008528] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1.
[ 0.008745] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1.
[ 0.009256] rcu: Hierarchical SRCU implementation.
[ 0.009283] rcu: Max phase no-delay instances is 1000.
[ 0.011169] Platform MSI: msi-controller@fee20000 domain created
[ 0.011818] PCI/MSI: /interrupt-controller@fee00000/msi-controller@fee20000 domain created
[ 0.013856] EFI services will not be available.
[ 0.014743] smp: Bringing up secondary CPUs ...
[ 0.016263] Detected VIPT I-cache on CPU1
[ 0.016380] GICv3: CPU1: found redistributor 1 region 0:0x00000000fef20000
[ 0.016405] GICv3: CPU1: using allocated LPI pending table @0x0000000000590000
[ 0.016482] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.018197] Detected VIPT I-cache on CPU2
[ 0.018322] GICv3: CPU2: found redistributor 2 region 0:0x00000000fef40000
[ 0.018347] GICv3: CPU2: using allocated LPI pending table @0x00000000005a0000
[ 0.018423] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 0.020155] Detected VIPT I-cache on CPU3
[ 0.020283] GICv3: CPU3: found redistributor 3 region 0:0x00000000fef60000
[ 0.020309] GICv3: CPU3: using allocated LPI pending table @0x00000000005b0000
[ 0.020380] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 0.022084] CPU features: detected: Spectre-v2
[ 0.022098] CPU features: detected: Spectre-v4
[ 0.022104] CPU features: detected: Spectre-BHB
[ 0.022113] CPU features: detected: ARM erratum 1742098
[ 0.022122] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 0.022129] Detected PIPT I-cache on CPU4
[ 0.022208] GICv3: CPU4: found redistributor 100 region 0:0x00000000fef80000
[ 0.022227] GICv3: CPU4: using allocated LPI pending table @0x00000000005c0000
[ 0.022273] CPU4: Booted secondary processor 0x0000000100 [0x410fd082]
[ 0.023764] Detected PIPT I-cache on CPU5
[ 0.023858] GICv3: CPU5: found redistributor 101 region 0:0x00000000fefa0000
[ 0.023878] GICv3: CPU5: using allocated LPI pending table @0x00000000005d0000
[ 0.023928] CPU5: Booted secondary processor 0x0000000101 [0x410fd082]
[ 0.024145] smp: Brought up 1 node, 6 CPUs
[ 0.024611] SMP: Total of 6 processors activated.
[ 0.024637] CPU features: detected: 32-bit EL0 Support
[ 0.024660] CPU features: detected: 32-bit EL1 Support
[ 0.024686] CPU features: detected: CRC32 instructions
[ 0.024869] CPU: All CPU(s) started at EL2
[ 0.024905] alternatives: applying system-wide alternatives
[ 0.029319] devtmpfs: initialized
[ 0.046976] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.047063] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.050368] pinctrl core: initialized pinctrl subsystem
[ 0.051055] DMI not present or invalid.
[ 0.051890] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.054676] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.056118] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.057364] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.057451] audit: initializing netlink subsys (disabled)
[ 0.057719] audit: type=2000 audit(0.056:1): state=initialized audit_enabled=0 res=1
[ 0.059187] thermal_sys: Registered thermal governor 'fair_share'
[ 0.059197] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.059219] thermal_sys: Registered thermal governor 'step_wise'
[ 0.059236] thermal_sys: Registered thermal governor 'user_space'
[ 0.059311] cpuidle: using governor menu
[ 0.059585] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.059867] ASID allocator initialised with 65536 entries
[ 0.061133] Serial: AMBA PL011 UART driver
[ 0.089160] platform fe330000.mmc: Fixed dependency cycle(s) with /syscon@ff770000/phy@f780
[ 0.095116] platform ff940000.hdmi: Fixed dependency cycle(s) with /vop@ff8f0000/port/endpoint@2
[ 0.095176] platform ff940000.hdmi: Fixed dependency cycle(s) with /vop@ff900000/port/endpoint@2
[ 0.104729] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.105263] rockchip-gpio ff720000.gpio: probed /pinctrl/gpio@ff720000
[ 0.105842] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.106205] rockchip-gpio ff730000.gpio: probed /pinctrl/gpio@ff730000
[ 0.106795] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.107144] rockchip-gpio ff780000.gpio: probed /pinctrl/gpio@ff780000
[ 0.107685] gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.108046] rockchip-gpio ff788000.gpio: probed /pinctrl/gpio@ff788000
[ 0.108594] gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.108940] rockchip-gpio ff790000.gpio: probed /pinctrl/gpio@ff790000
[ 0.116421] Modules: 24992 pages in range for non-PLT usage
[ 0.116432] Modules: 516512 pages in range for PLT usage
[ 0.117709] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.117743] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.117762] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.117779] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[ 0.117797] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.117813] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.117830] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[ 0.117846] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[ 0.119185] cryptd: max_cpu_qlen set to 1000
[ 0.188308] raid6: neonx8 gen() 1658 MB/s
[ 0.256479] raid6: neonx4 gen() 1676 MB/s
[ 0.324649] raid6: neonx2 gen() 1501 MB/s
[ 0.392836] raid6: neonx1 gen() 1168 MB/s
[ 0.460996] raid6: int64x8 gen() 903 MB/s
[ 0.529185] raid6: int64x4 gen() 999 MB/s
[ 0.597340] raid6: int64x2 gen() 950 MB/s
[ 0.665523] raid6: int64x1 gen() 732 MB/s
[ 0.665541] raid6: using algorithm neonx4 gen() 1676 MB/s
[ 0.733682] raid6: .... xor() 1271 MB/s, rmw enabled
[ 0.733701] raid6: using neon recovery algorithm
[ 0.735024] iommu: Default domain type: Translated
[ 0.735049] iommu: DMA domain TLB invalidation policy: strict mode
[ 0.735588] SCSI subsystem initialized
[ 0.735861] libata version 3.00 loaded.
[ 0.736188] usbcore: registered new interface driver usbfs
[ 0.736245] usbcore: registered new interface driver hub
[ 0.736309] usbcore: registered new device driver usb
[ 0.737004] pps_core: LinuxPPS API ver. 1 registered
[ 0.737023] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.737059] PTP clock support registered
[ 0.737449] EDAC MC: Ver: 3.0.0
[ 0.738238] scmi_core: SCMI protocol bus registered
[ 0.739564] NetLabel: Initializing
[ 0.739584] NetLabel: domain hash size = 128
[ 0.739599] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.739715] NetLabel: unlabeled traffic allowed by default
[ 0.739965] vgaarb: loaded
[ 0.740525] clocksource: Switched to clocksource arch_sys_counter
[ 0.741125] VFS: Disk quotas dquot_6.6.0
[ 0.741201] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.742162] AppArmor: AppArmor Filesystem Enabled
[ 0.755844] NET: Registered PF_INET protocol family
[ 0.756166] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.761082] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.761313] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.761416] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.762021] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 0.763307] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.763513] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.763695] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.764116] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.764194] NET: Registered PF_XDP protocol family
[ 0.764227] PCI: CLS 0 bytes, default 64
[ 0.764727] Trying to unpack rootfs image as initramfs...
[ 0.768908] kvm [1]: IPA Size Limit: 40 bits
[ 0.770572] kvm [1]: vgic-v2@fff20000
[ 0.770623] kvm [1]: GIC system register CPU interface enabled
[ 0.770670] kvm [1]: vgic interrupt IRQ18
[ 0.770726] kvm [1]: Hyp mode initialized successfully
[ 0.773453] Initialise system trusted keyrings
[ 0.773556] Key type blacklist registered
[ 0.773990] workingset: timestamp_bits=44 max_order=20 bucket_order=0
[ 0.774088] zbud: loaded
[ 0.774790] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.775425] fuse: init (API version 7.39)
[ 0.777802] integrity: Platform Keyring initialized
[ 0.822743] xor: measuring software checksum speed
[ 0.826188] 8regs : 2919 MB/sec
[ 0.829353] 32regs : 3153 MB/sec
[ 0.833730] arm64_neon : 2268 MB/sec
[ 0.833754] xor: using function: 32regs (3153 MB/sec)
[ 0.833781] Key type asymmetric registered
[ 0.833798] Asymmetric key parser 'x509' registered
[ 0.833933] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.834225] io scheduler mq-deadline registered
[ 0.834252] io scheduler kyber registered
[ 0.834333] io scheduler bfq registered
[ 0.853820] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 0.853867] dma-pl330 ff6d0000.dma-controller: DBUFF-32x8bytes Num_Chans-6 Num_Peri-12 Num_Events-12
[ 0.855852] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 0.855894] dma-pl330 ff6e0000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16
[ 0.859915] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[ 0.865967] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 35, base_baud = 1500000) is a 16550A
[ 0.866545] serial serial0: tty port ttyS0 registered
[ 0.868582] ff1a0000.serial: ttyS2 at MMIO 0xff1a0000 (irq = 36, base_baud = 1500000) is a 16550A
[ 0.868822] printk: console [ttyS2] enabled
[ 0.992446] Serial: AMBA driver
[ 1.000336] rockchip-vop ff8f0000.vop: Adding to iommu group 2
[ 1.002200] rockchip-vop ff900000.vop: Adding to iommu group 3
[ 1.024146] loop: module loaded
[ 1.031435] tun: Universal TUN/TAP device driver, 1.6
[ 1.033205] thunder_xcv, ver 1.0
[ 1.033567] thunder_bgx, ver 1.0
[ 1.033902] nicpf, ver 1.0
[ 1.035236] e1000e: Intel(R) PRO/1000 Network Driver
[ 1.035693] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.036275] igb: Intel(R) Gigabit Ethernet Network Driver
[ 1.036786] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 1.037333] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[ 1.037898] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[ 1.038758] sky2: driver version 1.30
[ 1.044780] usbcore: registered new interface driver usb-storage
[ 1.048303] mousedev: PS/2 mouse device common for all mice
[ 1.050127] i2c_dev: i2c /dev entries driver
[ 1.051672] i2c 1-0011: Fixed dependency cycle(s) with /i2s@ff880000/port/endpoint
[ 1.055116] i2c 0-001b: Fixed dependency cycle(s) with /i2c@ff3c0000/pmic@1b/regulators/DCDC_REG4
[ 1.063017] dw_wdt ff848000.watchdog: No valid TOPs array specified
[ 1.067560] sdhci: Secure Digital Host Controller Interface driver
[ 1.068137] sdhci: Copyright(c) Pierre Ossman
[ 1.068607] Synopsys Designware Multimedia Card Interface Driver
[ 1.070583] sdhci-pltfm: SDHCI platform and OF driver helper
[ 1.071934] dwmmc_rockchip fe320000.mmc: IDMAC supports 32-bit address mode.
[ 1.072133] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
[ 1.072689] dwmmc_rockchip fe320000.mmc: Using internal DMA controller.
[ 1.073330] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[ 1.073908] dwmmc_rockchip fe320000.mmc: Version ID is 270a
[ 1.073928] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[ 1.074034] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 50,32 bit host data width,256 deep fifo
[ 1.074408] mmc0: CQHCI version 5.10
[ 1.074859] dwmmc_rockchip fe320000.mmc: DW MMC controller at irq 49,32 bit host data width,256 deep fifo
[ 1.077980] dwmmc_rockchip fe320000.mmc: Got CD GPIO
[ 1.079006] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.081760] hid: raw HID events driver (C) Jiri Kosina
[ 1.082365] usbcore: registered new interface driver usbhid
[ 1.082875] usbhid: USB HID core driver
[ 1.088420] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[ 1.091166] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[ 1.091337] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[ 1.095373] drop_monitor: Initializing network drop monitor service
[ 1.096327] NET: Registered PF_INET6 protocol family
[ 1.100718] mmc0: SDHCI controller on fe330000.mmc [fe330000.mmc] using ADMA
[ 1.176168] mmc0: Command Queue Engine enabled
[ 1.176670] mmc0: new HS200 MMC card at address 0001
[ 1.178671] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB
[ 1.182961] mmcblk0: p1
[ 1.184327] mmcblk0boot0: mmc0:0001 BJTD4R 4.00 MiB
[ 1.187723] mmcblk0boot1: mmc0:0001 BJTD4R 4.00 MiB
[ 1.191055] mmcblk0rpmb: mmc0:0001 BJTD4R 4.00 MiB, chardev (243:0)
[ 1.501523] Freeing initrd memory: 12600K
[ 1.574390] Segment Routing with IPv6
[ 1.574828] In-situ OAM (IOAM) with IPv6
[ 1.575310] NET: Registered PF_PACKET protocol family
[ 1.576154] 8021q: 802.1Q VLAN Support v1.8
[ 1.576643] Key type dns_resolver registered
[ 1.589965] registered taskstats version 1
[ 1.590596] Loading compiled-in X.509 certificates
[ 1.613949] zswap: loaded using pool zstd/z3fold
[ 1.630234] Key type .fscrypt registered
[ 1.630617] Key type fscrypt-provisioning registered
[ 1.634499] Btrfs loaded, zoned=yes, fsverity=yes
[ 1.635149] Key type encrypted registered
[ 1.635530] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.704233] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected!
[ 1.704744] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
[ 1.704742] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected!
[ 1.706150] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[ 1.706759] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[ 1.707298] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 50,32 bit host data width,256 deep fifo
[ 1.723529] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 1.724098] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 1.725043] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000000002000010
[ 1.725992] xhci-hcd xhci-hcd.0.auto: irq 57, io mem 0xfe800000
[ 1.726896] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 1.727420] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 1.728136] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 1.729741] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.730511] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.731180] usb usb1: Product: xHCI Host Controller
[ 1.731637] usb usb1: Manufacturer: Linux 6.6.15-current-rockchip64 xhci-hcd
[ 1.732284] usb usb1: SerialNumber: xhci-hcd.0.auto
[ 1.734128] hub 1-0:1.0: USB hub found
[ 1.734640] hub 1-0:1.0: 1 port detected
[ 1.736159] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.737660] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[ 1.738429] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.739097] usb usb2: Product: xHCI Host Controller
[ 1.739553] usb usb2: Manufacturer: Linux 6.6.15-current-rockchip64 xhci-hcd
[ 1.740200] usb usb2: SerialNumber: xhci-hcd.0.auto
[ 1.742035] hub 2-0:1.0: USB hub found
[ 1.742473] hub 2-0:1.0: 1 port detected
[ 1.751153] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 1.751719] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
[ 1.752656] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000000002000010
[ 1.753606] xhci-hcd xhci-hcd.1.auto: irq 58, io mem 0xfe900000
[ 1.754548] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 1.755073] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
[ 1.755791] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[ 1.757199] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.757964] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.758618] usb usb3: Product: xHCI Host Controller
[ 1.759063] usb usb3: Manufacturer: Linux 6.6.15-current-rockchip64 xhci-hcd
[ 1.759697] usb usb3: SerialNumber: xhci-hcd.1.auto
[ 1.761382] hub 3-0:1.0: USB hub found
[ 1.761785] hub 3-0:1.0: 1 port detected
[ 1.762654] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.763545] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[ 1.764295] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.764979] usb usb4: Product: xHCI Host Controller
[ 1.765427] usb usb4: Manufacturer: Linux 6.6.15-current-rockchip64 xhci-hcd
[ 1.766061] usb usb4: SerialNumber: xhci-hcd.1.auto
[ 1.767229] hub 4-0:1.0: USB hub found
[ 1.767624] hub 4-0:1.0: 1 port detected
[ 1.772238] ehci-platform fe380000.usb: EHCI Host Controller
[ 1.772267] ohci-platform fe3a0000.usb: Generic Platform OHCI controller
[ 1.772829] ehci-platform fe380000.usb: new USB bus registered, assigned bus number 5
[ 1.773320] ehci-platform fe3c0000.usb: EHCI Host Controller
[ 1.773385] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus number 6
[ 1.773438] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus number 7
[ 1.773662] ehci-platform fe3c0000.usb: irq 61, io mem 0xfe3c0000
[ 1.774269] ehci-platform fe380000.usb: irq 59, io mem 0xfe380000
[ 1.774831] ohci-platform fe3a0000.usb: irq 62, io mem 0xfe3a0000
[ 1.775670] rk808-regulator rk808-regulator.3.auto: there is no dvs0 gpio
[ 1.778341] rk808-regulator rk808-regulator.3.auto: there is no dvs1 gpio
[ 1.778957] rk808-regulator rk808-regulator.3.auto: max buck steps per change: 8
[ 1.792576] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00
[ 1.794399] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.795169] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.795838] usb usb6: Product: EHCI Host Controller
[ 1.796294] usb usb6: Manufacturer: Linux 6.6.15-current-rockchip64 ehci_hcd
[ 1.796980] usb usb6: SerialNumber: fe3c0000.usb
[ 1.798735] rk808-rtc rk808-rtc.4.auto: registered as rtc0
[ 1.798842] hub 6-0:1.0: USB hub found
[ 1.799745] hub 6-0:1.0: 1 port detected
[ 1.800092] rk808-rtc rk808-rtc.4.auto: setting system clock to 2024-03-05T21:12:19 UTC (1709673139)
[ 1.803353] ohci-platform fe3e0000.usb: Generic Platform OHCI controller
[ 1.804020] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus number 8
[ 1.804995] ohci-platform fe3e0000.usb: irq 72, io mem 0xfe3e0000
[ 1.805539] rockchip-pcie f8000000.pcie: host bridge /pcie@f8000000 ranges:
[ 1.806230] rockchip-pcie f8000000.pcie: MEM 0x00fa000000..0x00fbdfffff -> 0x00fa000000
[ 1.806840] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
[ 1.807006] rockchip-pcie f8000000.pcie: IO 0x00fbe00000..0x00fbefffff -> 0x00fbe00000
[ 1.807053] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[ 1.808750] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00
[ 1.809047] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[ 1.809833] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.810113] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 50,32 bit host data width,256 deep fifo
[ 1.810811] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.811237] dwmmc_rockchip fe310000.mmc: allocated mmc-pwrseq
[ 1.811692] usb usb5: Product: EHCI Host Controller
[ 1.811725] mmc_host mmc2: card is non-removable.
[ 1.812360] usb usb5: Manufacturer: Linux 6.6.15-current-rockchip64 ehci_hcd
[ 1.814390] usb usb5: SerialNumber: fe380000.usb
[ 1.815732] hub 5-0:1.0: USB hub found
[ 1.816124] hub 5-0:1.0: 1 port detected
[ 1.825490] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[ 1.837785] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 1.838556] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.839210] usb usb7: Product: Generic Platform OHCI controller
[ 1.839747] usb usb7: Manufacturer: Linux 6.6.15-current-rockchip64 ohci_hcd
[ 1.840380] usb usb7: SerialNumber: fe3a0000.usb
[ 1.842057] hub 7-0:1.0: USB hub found
[ 1.842463] hub 7-0:1.0: 1 port detected
[ 1.873781] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 1.874578] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.875247] usb usb8: Product: Generic Platform OHCI controller
[ 1.875794] usb usb8: Manufacturer: Linux 6.6.15-current-rockchip64 ohci_hcd
[ 1.876441] usb usb8: SerialNumber: fe3e0000.usb
[ 1.878306] hub 8-0:1.0: USB hub found
[ 1.878834] hub 8-0:1.0: 1 port detected
[ 1.947302] mmc_host mmc2: Bus speed (slot 0) = 148500000Hz (slot req 150000000Hz, actual 148500000HZ div = 0)
[ 2.084759] dwmmc_rockchip fe310000.mmc: Successfully tuned phase to 228
[ 2.088275] mmc2: new ultra high speed SDR104 SDIO card at address 0001
[ 2.312640] usb 8-1: new low-speed USB device number 2 using ohci-platform
[ 2.336629] usb 7-1: new low-speed USB device number 2 using ohci-platform
[ 2.364773] rockchip-pcie f8000000.pcie: PCIe link training gen1 timeout!
[ 2.365469] rockchip-pcie: probe of f8000000.pcie failed with error -110
[ 2.373462] rockchip-drm display-subsystem: bound ff8f0000.vop (ops vop_component_ops)
[ 2.375638] rockchip-drm display-subsystem: bound ff900000.vop (ops vop_component_ops)
[ 2.377549] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[ 2.380176] rockchip-drm display-subsystem: bound ff940000.hdmi (ops dw_hdmi_rockchip_ops)
[ 2.383478] [drm] Initialized rockchip 1.0.0 20140818 for display-subsystem on minor 0
[ 2.521716] Console: switching to colour frame buffer device 180x56
[ 2.542840] usb 8-1: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 1.10
[ 2.542870] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.542884] usb 8-1: Product: Wired Keyboard 400
[ 2.542895] usb 8-1: Manufacturer: Microsoft
[ 2.552808] input: Microsoft Wired Keyboard 400 as /devices/platform/fe3e0000.usb/usb8/8-1/8-1:1.0/0003:045E:0752.0001/input/input0
[ 2.563595] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[ 2.564781] usb 7-1: New USB device found, idVendor=413c, idProduct=301a, bcdDevice= 1.00
[ 2.565769] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.566595] usb 7-1: Product: Dell MS116 USB Optical Mouse
[ 2.566741] WCN: marlin_init entry!
[ 2.567230] usb 7-1: Manufacturer: PixArt
[ 2.567935] of_cfs_init
[ 2.568358] of_cfs_init: OK
[ 2.569098] clk: Disabling unused clocks
[ 2.573801] Freeing unused kernel memory: 4672K
[ 2.576592] input: PixArt Dell MS116 USB Optical Mouse as /devices/platform/fe3a0000.usb/usb7/7-1/7-1:1.0/0003:413C:301A.0002/input/input1
[ 2.589015] Run /init as init process
[ 2.589413] with arguments:
[ 2.589423] /init
[ 2.589432] with environment:
[ 2.589440] HOME=/
[ 2.589447] TERM=linux
[ 2.614260] hid-generic 0003:045E:0752.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-fe3e0000.usb-1/input0
[ 2.616697] hid-generic 0003:413C:301A.0002: input,hidraw1: USB HID v1.11 Mouse [PixArt Dell MS116 USB Optical Mouse] on usb-fe3a0000.usb-1/input0
[ 3.376217] rk_gmac-dwmac fe300000.ethernet: IRQ eth_wake_irq not found
[ 3.377339] rk_gmac-dwmac fe300000.ethernet: IRQ eth_lpi not found
[ 3.378172] rk_gmac-dwmac fe300000.ethernet: PTP uses main clock
[ 3.379083] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input).
[ 3.379783] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28).
[ 3.391257] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11).
[ 3.399916] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no).
[ 3.408051] rk_gmac-dwmac fe300000.ethernet: clock input from PHY
[ 3.420446] rk_gmac-dwmac fe300000.ethernet: init for RGMII
[ 3.429692] rk_gmac-dwmac fe300000.ethernet: User ID: 0x10, Synopsys ID: 0x35
[ 3.437254] rk_gmac-dwmac fe300000.ethernet: DWMAC1000
[ 3.444623] rk_gmac-dwmac fe300000.ethernet: DMA HW capability register supported
[ 3.451987] rk_gmac-dwmac fe300000.ethernet: RX Checksum Offload Engine supported
[ 3.459472] rk_gmac-dwmac fe300000.ethernet: COE Type 2
[ 3.467854] rk_gmac-dwmac fe300000.ethernet: TX Checksum insertion supported
[ 3.475500] rk_gmac-dwmac fe300000.ethernet: Wake-Up On Lan supported
[ 3.483283] rk_gmac-dwmac fe300000.ethernet: Normal descriptors
[ 3.490615] rk_gmac-dwmac fe300000.ethernet: Ring mode enabled
[ 3.497685] rk_gmac-dwmac fe300000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[ 3.677402] RTL8211F-VD Gigabit Ethernet stmmac-0:00: attached PHY driver (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[ 3.683875] RTL8211F-VD Gigabit Ethernet stmmac-0:01: attached PHY driver (mii_bus:phy_addr=stmmac-0:01, irq=POLL)
[ 3.913151] EXT4-fs (mmcblk0p1): mounted filesystem 88a725de-ac8d-428f-ae0e-2964c016dc23 ro with ordered data mode. Quota mode: none.
[ 4.411502] systemd[1]: Inserted module 'autofs4'
[ 4.472690] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 4.486290] systemd[1]: Detected architecture arm64.
[ 4.504713] systemd[1]: Hostname set to <DietPi>.
[ 4.634499] dw-apb-uart ff1a0000.serial: forbid DMA for kernel console
[ 5.076288] systemd[1]: Queued start job for default target graphical.target.
[ 5.114295] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 5.133465] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 5.143346] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[ 5.150659] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ 5.158667] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 5.167063] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 5.175219] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
[ 5.182699] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[ 5.190319] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 5.198539] systemd[1]: Reached target paths.target - Path Units.
[ 5.206191] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 5.214435] systemd[1]: Reached target slices.target - Slice Units.
[ 5.222356] systemd[1]: Reached target swap.target - Swaps.
[ 5.230629] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 5.239631] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 5.248776] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 5.259927] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[ 5.269469] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 5.279012] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 5.288266] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 5.297857] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 5.306205] systemd[1]: Reached target sockets.target - Socket Units.
[ 5.337548] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 5.352280] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 5.367562] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 5.382920] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 5.399555] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
[ 5.415133] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 5.431683] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 5.448041] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 5.470147] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 5.488681] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 5.508044] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 5.519263] device-mapper: uevent: version 1.0.3
[ 5.523948] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 5.524085] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 5.535993] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 5.555789] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 5.573074] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 5.595742] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 5.626420] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 5.656973] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 5.673185] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 5.686212] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 5.701244] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 5.710903] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
[ 5.719610] EXT4-fs (mmcblk0p1): re-mounted 88a725de-ac8d-428f-ae0e-2964c016dc23 r/w. Quota mode: none.
[ 5.746850] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 5.766896] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 5.772218] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 5.784726] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 5.796797] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 5.806766] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 5.813961] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 5.834117] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 5.839404] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 5.858401] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 5.882099] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 5.887259] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 5.899898] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 5.910155] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 5.953615] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 5.988278] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 6.009194] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[ 6.020463] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 6.047769] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[ 6.056899] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 6.068569] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 6.084370] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[ 6.110500] systemd[1]: Started systemd-journald.service - Journal Service.
[ 6.591207] systemd-journald[319]: Received client request to flush runtime journal.
[ 7.390844] mc: Linux media interface: v0.10
[ 7.438903] videodev: Linux video capture interface: v2.00
[ 7.488639] rockchip-rga ff680000.rga: HW Version: 0x03.02
[ 7.499112] rockchip-rga ff680000.rga: Registered rockchip-rga as /dev/video0
[ 7.505650] rockchip_vdec: module is from the staging directory, the quality is unknown, you have been warned.
[ 7.507942] rk3288-crypto ff8b0000.crypto: will run requests pump with realtime priority
[ 7.508043] rk3288-crypto ff8b0000.crypto: Register ecb(aes) as ecb-aes-rk
[ 7.508148] rk3288-crypto ff8b0000.crypto: Register cbc(aes) as cbc-aes-rk
[ 7.508176] rk3288-crypto ff8b0000.crypto: Register ecb(des) as ecb-des-rk
[ 7.508203] rk3288-crypto ff8b0000.crypto: Register cbc(des) as cbc-des-rk
[ 7.508229] rk3288-crypto ff8b0000.crypto: Register ecb(des3_ede) as ecb-des3-ede-rk
[ 7.508255] rk3288-crypto ff8b0000.crypto: Register cbc(des3_ede) as cbc-des3-ede-rk
[ 7.508281] rk3288-crypto ff8b0000.crypto: Register sha1 as rk-sha1
[ 7.508309] rk3288-crypto ff8b0000.crypto: Register sha256 as rk-sha256
[ 7.508336] rk3288-crypto ff8b0000.crypto: Register md5 as rk-md5
[ 7.508363] rk3288-crypto ff8b0000.crypto: Register TRNG with sample=1200
[ 7.510103] rkvdec ff660000.video-codec: Adding to iommu group 1
[ 7.515274] random: crng init done
[ 7.524743] hantro-vpu ff650000.video-codec: Adding to iommu group 0
[ 7.530993] hantro-vpu ff650000.video-codec: registered rockchip,rk3399-vpu-enc as /dev/video2
[ 7.533093] hantro-vpu ff650000.video-codec: registered rockchip,rk3399-vpu-dec as /dev/video3
[ 7.545895] rk3288-crypto ff8b8000.crypto: will run requests pump with realtime priority
[ 7.545974] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 7.546854] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 7.547230] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 7.619785] panfrost ff9a0000.gpu: clock rate = 500000000
[ 7.654730] panfrost ff9a0000.gpu: mali-t860 id 0x860 major 0x2 minor 0x0 status 0x0
[ 7.654749] panfrost ff9a0000.gpu: features: 00000000,00000407, issues: 00000000,24040400
[ 7.654757] panfrost ff9a0000.gpu: Features: L2:0x07120206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7
[ 7.654764] panfrost ff9a0000.gpu: shader_present=0xf l2_present=0x1
[ 7.659388] brcmfmac: F1 signature read @0x18000000=0x15264345
[ 7.670063] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[ 7.684294] brcmfmac mmc2:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.radxa,rock-4se.bin failed with error -2
[ 7.703993] usbcore: registered new interface driver brcmfmac
[ 7.720121] [drm] Initialized panfrost 1.2.0 20180908 for ff9a0000.gpu on minor 1
[ 7.778399] Bluetooth: Core ver 2.22
[ 7.778542] NET: Registered PF_BLUETOOTH protocol family
[ 7.778548] Bluetooth: HCI device and connection manager initialized
[ 7.778578] Bluetooth: HCI socket layer initialized
[ 7.778589] Bluetooth: L2CAP socket layer initialized
[ 7.778616] Bluetooth: SCO socket layer initialized
[ 8.087650] rk_gmac-dwmac fe300000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 8.181038] rk_gmac-dwmac fe300000.ethernet eth0: PHY [stmmac-0:00] driver [RTL8211F-VD Gigabit Ethernet] (irq=POLL)
[ 8.191455] rk_gmac-dwmac fe300000.ethernet eth0: No Safety Features support found
[ 8.191517] rk_gmac-dwmac fe300000.ethernet eth0: PTP not supported by HW
[ 8.193057] rk_gmac-dwmac fe300000.ethernet eth0: configuring for phy/rgmii link mode
[ 8.743217] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 9.774283] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 12.322625] rk_gmac-dwmac fe300000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 18.914824] platform sound-dit: deferred probe pending
root@DietPi:~#
At least we see the correct driver being loaded automatically:
[ 7.659388] brcmfmac: F1 signature read @0x18000000=0x15264345
[ 7.670063] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[ 7.684294] brcmfmac mmc2:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.radxa,rock-4se.bin failed with error -2
...
[ 8.743217] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 9.774283] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
Strange that it does not try to load a fallback firmware without the device-specific appendix. Please try this:
ln -s brcmfmac43455-sdio.bin /lib/firmware/brcm/brcmfmac43455-sdio.radxa,rock-4se.bin
ln -s brcmfmac43455-sdio.txt /lib/firmware/brcm/brcmfmac43455-sdio.radxa,rock-4se.txt
modprobe -r brcmfmac
modprobe brcmfmac
ls -l
Or maybe I misinterpret it and the 2nd line says that it does use the generic firmware already.
root@DietPi:~# dmesg | grep brcmfmac
[ 7.659388] brcmfmac: F1 signature read @0x18000000=0x15264345
[ 7.670063] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[ 7.684294] brcmfmac mmc2:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.radxa,rock-4se.bin failed with error -2
[ 7.703993] usbcore: registered new interface driver brcmfmac
[ 8.743217] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 9.774283] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 2071.166243] usbcore: deregistering interface driver brcmfmac
[ 2071.356399] brcmfmac: F1 signature read @0x18000000=0x15264345
[ 2071.361975] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[ 2071.363413] usbcore: registered new interface driver brcmfmac
[ 2072.404884] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 2073.416585] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
root@DietPi:~# dietpi-config
The firmware load error has gone, but otherwise it does not look like something has changed. The WiFi adapter is still not visible? If not, can you try it with the ROCK 4B device tree:
G_CONFIG_INJECT 'fdtfile=' 'fdtfile=rockchip/rk3399-rock-pi-4b.dtb' /boot/dietpiEnv.txt
reboot
The same is done in the Armbian config: https://github.com/armbian/build/blob/main/config/boards/rock-4se.csc And on their website they state to use the 4B images: https://www.armbian.com/rockpi4/
This did work in the past for us as well, boot just broke very recently. Using the different U-Boot build worked, but maybe the kernel device tree for ROCK 4 SE has still issues.
The firmware load error has gone, but otherwise it does not look like something has changed. The WiFi adapter is still not visible? If not, can you try it with the ROCK 4B device tree:
G_CONFIG_INJECT 'fdtfile=' 'fdtfile=rockchip/rk3399-rock-pi-4b.dtb' /boot/dietpiEnv.txt reboot
The same is done in the Armbian config: https://github.com/armbian/build/blob/main/config/boards/rock-4se.csc And on their website they state to use the 4B images: https://www.armbian.com/rockpi4/
This did work in the past for us as well, boot just broke very recently. Using the different U-Boot build worked, but maybe the kernel device tree for ROCK 4 SE has still issues.
I did that, still the same : led blinking but wlan card not found
root@DietPi:~# dmesg | grep brcmfmac
[ 7.411031] brcmfmac: F1 signature read @0x18000000=0x15264345
[ 7.430174] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[ 7.442834] brcmfmac mmc2:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.radxa,rockpi4b.bin failed with error -2
[ 7.468786] usbcore: registered new interface driver brcmfmac
[ 8.509931] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 9.539272] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
Is this still an issue with latest kernel version? In case with ROCK 4 SE device tree?
G_CONFIG_INJECT 'fdtfile=' 'fdtfile=rockchip/rk3399-rock-4se.dtb' /boot/dietpiEnv.txt
reboot
Also try to reflash latest U-Boot
/boot/dietpi/func/dietpi-set_hardware flash-u-boot-mmc
My onboard wifi card is not detected on my ROCK 4SE, maybe the wrong dri
cat /boot/dietpi/.version
G_DIETPI_VERSION_CORE=9
G_DIETPI_VERSION_SUB=6
G_DIETPI_VERSION_RC=1
G_GITBRANCH='master'
G_GITOWNER='MichaIng'
G_LIVE_PATCH_STATUS[0]='not applicable'echo $G_DISTRO_NAME $G_RASPBIAN
uname -a
Linux DietPi 6.6.34-current-rockchip64 #2 SMP PREEMPT Sun Jun 16 11:47:49 UTC 2024 aarch64 GNU/Linux
echo $G_HW_MODEL_NAME
or (EG: RPi3)
ROCK 4 (aarch64) [Actually ROCK 4SE]SD card used | (EG: SanDisk ultra) USB PD adapter
card detected
I'm have the same problem, can you help me too please?
root@DietPi:/home/spanner# lsmod
Module Size Used by
brcmfmac 368640 0
brcmutil 16384 1 brcmfmac
cfg80211 802816 1 brcmfmac
xt_conntrack 12288 1
nft_chain_nat 12288 3
xt_MASQUERADE 16384 1
nf_nat 45056 2 nft_chain_nat,xt_MASQUERADE
nf_conntrack_netlink 45056 0
nf_conntrack 118784 4 xt_conntrack,nf_nat,nf_conntrack_netlink,xt_MASQUERADE
nf_defrag_ipv6 20480 1 nf_conntrack
nf_defrag_ipv4 12288 1 nf_conntrack
xfrm_user 40960 1
xfrm_algo 12288 1 xfrm_user
xt_addrtype 12288 2
nft_compat 16384 4
nf_tables 225280 75 nft_compat,nft_chain_nat
nfnetlink 16384 4 nft_compat,nf_conntrack_netlink,nf_tables
br_netfilter 28672 0
bridge 241664 1 br_netfilter
rc_tt_1500 12288 0
ts2020 20480 1
m88ds3103 32768 1
i2c_mux 12288 1 m88ds3103
tda18250 20480 1
mn88472 20480 1
dvb_usb_dib0700 147456 5
dib7000m 20480 1 dvb_usb_dib0700
dib0090 28672 1 dvb_usb_dib0700
dib0070 16384 1 dvb_usb_dib0700
dib3000mc 16384 1 dvb_usb_dib0700
dvb_usb_dw2102 77824 7
dibx000_common 16384 2 dib7000m,dib3000mc
snd_soc_hdmi_codec 20480 1
dvb_usb 20480 2 dvb_usb_dw2102,dvb_usb_dib0700
dvb_core 122880 2 dvb_usb,dvb_usb_dw2102
rc_core 45056 5 dvb_usb,dvb_usb_dw2102,rc_tt_1500,dvb_usb_dib0700
videobuf2_vmalloc 16384 1 dvb_core
snd_soc_spdif_tx 12288 0
snd_soc_simple_card 20480 0
btsdio 16384 0
snd_soc_audio_graph_card 16384 0
panfrost 69632 4
snd_soc_simple_card_utils 24576 2 snd_soc_audio_graph_card,snd_soc_simple_card
snd_soc_es8316 36864 1
bluetooth 663552 1 btsdio
dw_hdmi_cec 12288 0
snd_soc_rockchip_i2s 24576 4
gpu_sched 36864 1 panfrost
snd_soc_core 208896 7 snd_soc_spdif_tx,snd_soc_hdmi_codec,snd_soc_audio_graph_card,snd_soc_simple_card_utils,snd_soc_rockchip_i2s,snd_soc_simple_card,snd_soc_es8316
drm_shmem_helper 16384 1 panfrost
snd_compress 24576 1 snd_soc_core
dw_hdmi_i2s_audio 12288 0
snd_pcm_dmaengine 12288 1 snd_soc_core
snd_pcm 106496 6 snd_soc_hdmi_codec,snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_soc_es8316,snd_pcm_dmaengine
rk_crypto 28672 0
snd_timer 36864 1 snd_pcm
snd 77824 5 snd_soc_hdmi_codec,snd_timer,snd_compress,snd_soc_core,snd_pcm
rng_core 16384 1 rk_crypto
soundcore 12288 1 snd
rockchip_vdec 77824 0
hantro_vpu 249856 0
rfkill 24576 3 bluetooth,cfg80211
v4l2_vp9 20480 2 rockchip_vdec,hantro_vpu
videobuf2_dma_contig 20480 2 rockchip_vdec,hantro_vpu
rockchip_rga 20480 0
v4l2_h264 16384 2 rockchip_vdec,hantro_vpu
videobuf2_dma_sg 16384 1 rockchip_rga
v4l2_mem2mem 24576 3 rockchip_vdec,hantro_vpu,rockchip_rga
videobuf2_memops 16384 3 videobuf2_vmalloc,videobuf2_dma_contig,videobuf2_dma_sg
videobuf2_v4l2 20480 4 rockchip_vdec,hantro_vpu,rockchip_rga,v4l2_mem2mem
videodev 229376 5 rockchip_vdec,videobuf2_v4l2,hantro_vpu,rockchip_rga,v4l2_mem2mem
videobuf2_common 49152 10 rockchip_vdec,videobuf2_vmalloc,videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,dvb_core,videobuf2_dma_sg,v4l2_mem2mem,videobuf2_memops
mc 53248 8 rockchip_vdec,videodev,videobuf2_v4l2,hantro_vpu,dvb_usb,dvb_core,videobuf2_common,v4l2_mem2mem
cpufreq_dt 16384 0
joydev 24576 0
sg 28672 0
binfmt_misc 20480 1
dm_mod 126976 0
ip_tables 28672 0
x_tables 36864 5 xt_conntrack,nft_compat,xt_addrtype,ip_tables,xt_MASQUERADE
autofs4 40960 3
realtek 32768 1
dwmac_rk 28672 0
stmmac_platform 20480 1 dwmac_rk
stmmac 233472 3 stmmac_platform,dwmac_rk
uas 24576 0
pcs_xpcs 20480 1 stmmac
root@DietPi:/home/spanner# cat /boot/dietpiEnv.txt
rootdev=UUID=d0066127-3250-439b-8a43-74c307932a3d
rootfstype=ext4
# The init system logs to the console defined last.
consoleargs=console=ttyS2,1500000 console=tty1
usbstoragequirks=
extraargs=net.ifnames=0 drm_kms_helper.edid_firmware=edid/1440x900.bin
docker_optimizations=on
overlay_path=rockchip
overlay_prefix=rockchip
overlays=spi-spidev i2c0 i2c1 uart1 uart2 uart3 uart4 uart5 uart6 bluetooth
user_overlays=
fdtfile=rockchip/rk3399-rock-4se.dtb
dtoverlay=rockchip-sdio,sdio_overclock=25000000
param_uart1_rtscts=1
root@DietPi:/home/spanner# dmesg
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[ 0.000000] Linux version 6.6.34-current-rockchip64 (armbian@next) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #2 SMP PREEMPT Sun Jun 16 11:47:49 UTC 2024
[ 0.000000] Machine model: Radxa ROCK 4SE
[ 0.000000] efi: UEFI not found.
[ 0.000000] NUMA: No NUMA configuration found
[ 0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] NUMA: NODE_DATA [mem 0xf77c9980-0xf77cbfff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000000f7ffffff]
[ 0.000000] On node 0, zone DMA: 512 pages in unavailable ranges
[ 0.000000] cma: Reserved 128 MiB at 0x00000000e8000000 on node -1
[ 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 31 pages/cpu s88296 r8192 d30488 u126976
[ 0.000000] pcpu-alloc: s88296 r8192 d30488 u126976 alloc=31*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5
[ 0.000000] Detected VIPT I-cache on CPU0
[ 0.000000] CPU features: detected: GIC system register CPU interface
[ 0.000000] CPU features: detected: ARM erratum 845719
[ 0.000000] alternatives: applying boot alternatives
[ 0.000000] Kernel command line: root=UUID=d0066127-3250-439b-8a43-74c307932a3d rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0 drm_kms_helper.edid_firmware=edid/1440x900.bin rockchip/rk3399-rock-4se.dtb cgroup_enable=memory swapaccount=1
[ 0.000000] Unknown kernel command line parameters "cgroup_enable=memory", will be passed to user space.
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] Fallback order for Node 0: 0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 999432
[ 0.000000] Policy zone: DMA
[ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 3MB
[ 0.000000] software IO TLB: area num 8.
[ 0.000000] software IO TLB: mapped [mem 0x00000000f2e00000-0x00000000f3200000] (4MB)
[ 0.000000] Memory: 3804276K/4061184K available (16960K kernel code, 2316K rwdata, 5240K rodata, 4672K init, 604K bss, 125836K reserved, 131072K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[ 0.000000] trace event string verifier disabled
[ 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] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=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] Root IRQ handler: gic_handle_irq
[ 0.000000] GICv3: GICv3 features: 16 PPIs
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fef00000
[ 0.000000] ITS [mem 0xfee20000-0xfee3ffff]
[ 0.000000] ITS@0x00000000fee20000: allocated 65536 Devices @500000 (flat, esz 8, psz 64K, shr 0)
[ 0.000000] ITS: using cache flushing for cmd queue
[ 0.000000] GICv3: using LPI property table @0x00000000004f0000
[ 0.000000] GIC: using cache flushing for LPI property table
[ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000000580000
[ 0.000000] GICv3: 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] GICv3: GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@100[4] /cpus/cpu@101[5] }
[ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[ 0.001515] Console: colour dummy device 80x25
[ 0.001536] printk: console [tty1] enabled
[ 0.002792] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[ 0.002842] pid_max: default: 32768 minimum: 301
[ 0.002999] LSM: initializing lsm=capability,yama,apparmor,integrity
[ 0.003070] Yama: becoming mindful.
[ 0.003215] AppArmor: AppArmor initialized
[ 0.003401] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.003520] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.005582] cacheinfo: Unable to detect cache hierarchy for CPU 0
[ 0.007114] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1.
[ 0.007300] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1.
[ 0.007748] rcu: Hierarchical SRCU implementation.
[ 0.007776] rcu: Max phase no-delay instances is 1000.
[ 0.009516] Platform MSI: msi-controller@fee20000 domain created
[ 0.010085] PCI/MSI: /interrupt-controller@fee00000/msi-controller@fee20000 domain created
[ 0.012271] EFI services will not be available.
[ 0.013001] smp: Bringing up secondary CPUs ...
[ 0.014087] Detected VIPT I-cache on CPU1
[ 0.014202] GICv3: CPU1: found redistributor 1 region 0:0x00000000fef20000
[ 0.014226] GICv3: CPU1: using allocated LPI pending table @0x0000000000590000
[ 0.014301] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[ 0.015715] Detected VIPT I-cache on CPU2
[ 0.015834] GICv3: CPU2: found redistributor 2 region 0:0x00000000fef40000
[ 0.015858] GICv3: CPU2: using allocated LPI pending table @0x00000000005a0000
[ 0.015930] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[ 0.017303] Detected VIPT I-cache on CPU3
[ 0.017423] GICv3: CPU3: found redistributor 3 region 0:0x00000000fef60000
[ 0.017447] GICv3: CPU3: using allocated LPI pending table @0x00000000005b0000
[ 0.017517] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[ 0.018923] CPU features: detected: Spectre-v2
[ 0.018936] CPU features: detected: Spectre-v4
[ 0.018942] CPU features: detected: Spectre-BHB
[ 0.018951] CPU features: detected: ARM erratum 1742098
[ 0.018959] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 0.018965] Detected PIPT I-cache on CPU4
[ 0.019038] GICv3: CPU4: found redistributor 100 region 0:0x00000000fef80000
[ 0.019057] GICv3: CPU4: using allocated LPI pending table @0x00000000005c0000
[ 0.019101] CPU4: Booted secondary processor 0x0000000100 [0x410fd082]
[ 0.020303] Detected PIPT I-cache on CPU5
[ 0.020388] GICv3: CPU5: found redistributor 101 region 0:0x00000000fefa0000
[ 0.020408] GICv3: CPU5: using allocated LPI pending table @0x00000000005d0000
[ 0.020454] CPU5: Booted secondary processor 0x0000000101 [0x410fd082]
[ 0.020620] smp: Brought up 1 node, 6 CPUs
[ 0.021068] SMP: Total of 6 processors activated.
[ 0.021091] CPU features: detected: 32-bit EL0 Support
[ 0.021112] CPU features: detected: 32-bit EL1 Support
[ 0.021137] CPU features: detected: CRC32 instructions
[ 0.021309] CPU: All CPU(s) started at EL2
[ 0.021344] alternatives: applying system-wide alternatives
[ 0.025609] devtmpfs: initialized
[ 0.040945] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.041029] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.044163] pinctrl core: initialized pinctrl subsystem
[ 0.044741] DMI not present or invalid.
[ 0.045534] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.048348] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.049789] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.051152] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.051238] audit: initializing netlink subsys (disabled)
[ 0.051454] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1
[ 0.052769] thermal_sys: Registered thermal governor 'fair_share'
[ 0.052778] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.052799] thermal_sys: Registered thermal governor 'step_wise'
[ 0.052814] thermal_sys: Registered thermal governor 'user_space'
[ 0.052886] cpuidle: using governor menu
[ 0.053208] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.053446] ASID allocator initialised with 65536 entries
[ 0.054996] Serial: AMBA PL011 UART driver
[ 0.076865] platform fe330000.mmc: Fixed dependency cycle(s) with /syscon@ff770000/phy@f780
[ 0.076973] platform ff770000.syscon:phy@f780: Fixed dependency cycle(s) with /mmc@fe330000
[ 0.078564] platform ff880000.i2s: Fixed dependency cycle(s) with /i2c@ff110000/codec@11
[ 0.081586] platform ff900000.vop: Fixed dependency cycle(s) with /hdmi@ff940000
[ 0.081689] platform ff8f0000.vop: Fixed dependency cycle(s) with /hdmi@ff940000
[ 0.081778] platform ff940000.hdmi: Fixed dependency cycle(s) with /vop@ff8f0000
[ 0.081859] platform ff940000.hdmi: Fixed dependency cycle(s) with /vop@ff900000
[ 0.088669] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.089132] rockchip-gpio ff720000.gpio: probed /pinctrl/gpio@ff720000
[ 0.089576] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.089875] rockchip-gpio ff730000.gpio: probed /pinctrl/gpio@ff730000
[ 0.090312] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.090592] rockchip-gpio ff780000.gpio: probed /pinctrl/gpio@ff780000
[ 0.091045] gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.091325] rockchip-gpio ff788000.gpio: probed /pinctrl/gpio@ff788000
[ 0.091762] gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
[ 0.092051] rockchip-gpio ff790000.gpio: probed /pinctrl/gpio@ff790000
[ 0.098160] Modules: 25280 pages in range for non-PLT usage
[ 0.098171] Modules: 516800 pages in range for PLT usage
[ 0.099164] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.099197] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.099215] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.099231] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[ 0.099247] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.099263] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.099279] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[ 0.099294] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[ 0.100480] cryptd: max_cpu_qlen set to 1000
[ 0.168444] raid6: neonx8 gen() 1695 MB/s
[ 0.236564] raid6: neonx4 gen() 1744 MB/s
[ 0.304672] raid6: neonx2 gen() 1529 MB/s
[ 0.372792] raid6: neonx1 gen() 1187 MB/s
[ 0.440917] raid6: int64x8 gen() 908 MB/s
[ 0.509025] raid6: int64x4 gen() 1016 MB/s
[ 0.577127] raid6: int64x2 gen() 956 MB/s
[ 0.645265] raid6: int64x1 gen() 731 MB/s
[ 0.645280] raid6: using algorithm neonx4 gen() 1744 MB/s
[ 0.713358] raid6: .... xor() 1309 MB/s, rmw enabled
[ 0.713375] raid6: using neon recovery algorithm
[ 0.714419] iommu: Default domain type: Translated
[ 0.714443] iommu: DMA domain TLB invalidation policy: strict mode
[ 0.714951] SCSI subsystem initialized
[ 0.715186] libata version 3.00 loaded.
[ 0.715456] usbcore: registered new interface driver usbfs
[ 0.715507] usbcore: registered new interface driver hub
[ 0.715562] usbcore: registered new device driver usb
[ 0.716121] pps_core: LinuxPPS API ver. 1 registered
[ 0.716139] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.716171] PTP clock support registered
[ 0.716452] EDAC MC: Ver: 3.0.0
[ 0.717084] scmi_core: SCMI protocol bus registered
[ 0.718275] NetLabel: Initializing
[ 0.718295] NetLabel: domain hash size = 128
[ 0.718308] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.718394] NetLabel: unlabeled traffic allowed by default
[ 0.718606] vgaarb: loaded
[ 0.719131] clocksource: Switched to clocksource arch_sys_counter
[ 0.721532] VFS: Disk quotas dquot_6.6.0
[ 0.721612] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.722367] AppArmor: AppArmor Filesystem Enabled
[ 0.733201] NET: Registered PF_INET protocol family
[ 0.733505] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.738355] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.738503] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.738597] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.739223] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 0.740529] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.740727] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.740909] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.741287] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.741354] NET: Registered PF_XDP protocol family
[ 0.741383] PCI: CLS 0 bytes, default 64
[ 0.741669] Trying to unpack rootfs image as initramfs...
[ 0.742462] kvm [1]: IPA Size Limit: 40 bits
[ 0.744334] kvm [1]: vgic-v2@fff20000
[ 0.744395] kvm [1]: GIC system register CPU interface enabled
[ 0.744439] kvm [1]: vgic interrupt IRQ18
[ 0.744501] kvm [1]: Hyp mode initialized successfully
[ 0.746942] Initialise system trusted keyrings
[ 0.747042] Key type blacklist registered
[ 0.747323] workingset: timestamp_bits=44 max_order=20 bucket_order=0
[ 0.747406] zbud: loaded
[ 0.748076] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.748570] fuse: init (API version 7.39)
[ 0.750870] integrity: Platform Keyring initialized
[ 0.786683] jitterentropy: Initialization failed with host not compliant with requirements: 9
[ 0.786729] xor: measuring software checksum speed
[ 0.790136] 8regs : 2923 MB/sec
[ 0.793307] 32regs : 3148 MB/sec
[ 0.797194] arm64_neon : 2555 MB/sec
[ 0.797214] xor: using function: 32regs (3148 MB/sec)
[ 0.797240] Key type asymmetric registered
[ 0.797254] Asymmetric key parser 'x509' registered
[ 0.797399] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.797642] io scheduler mq-deadline registered
[ 0.797664] io scheduler kyber registered
[ 0.797735] io scheduler bfq registered
[ 0.821094] dma-pl330 ff6d0000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 0.821139] dma-pl330 ff6d0000.dma-controller: DBUFF-32x8bytes Num_Chans-6 Num_Peri-12 Num_Events-12
[ 0.822764] dma-pl330 ff6e0000.dma-controller: Loaded driver for PL330 DMAC-241330
[ 0.822802] dma-pl330 ff6e0000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-20 Num_Events-16
[ 0.825850] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[ 0.830778] ff180000.serial: ttyS0 at MMIO 0xff180000 (irq = 35, base_baud = 1500000) is a 16550A
[ 0.831316] serial serial0: tty port ttyS0 registered
[ 0.833007] ff1a0000.serial: ttyS2 at MMIO 0xff1a0000 (irq = 36, base_baud = 1500000) is a 16550A
[ 0.833223] printk: console [ttyS2] enabled
[ 0.961467] Serial: AMBA driver
[ 0.966699] rockchip-vop ff8f0000.vop: Adding to iommu group 2
[ 0.968436] rockchip-vop ff900000.vop: Adding to iommu group 3
[ 0.984841] loop: module loaded
[ 0.990638] tun: Universal TUN/TAP device driver, 1.6
[ 0.992266] thunder_xcv, ver 1.0
[ 0.992623] thunder_bgx, ver 1.0
[ 0.992948] nicpf, ver 1.0
[ 0.994016] e1000e: Intel(R) PRO/1000 Network Driver
[ 0.994471] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 0.995043] igb: Intel(R) Gigabit Ethernet Network Driver
[ 0.995568] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 0.996115] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[ 0.996679] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[ 0.997509] sky2: driver version 1.30
[ 1.002718] usbcore: registered new interface driver usb-storage
[ 1.005441] mousedev: PS/2 mouse device common for all mice
[ 1.006956] i2c_dev: i2c /dev entries driver
[ 1.008395] platform ff880000.i2s: Fixed dependency cycle(s) with /i2c@ff110000/codec@11
[ 1.009225] i2c 1-0011: Fixed dependency cycle(s) with /i2s@ff880000
[ 1.012416] i2c 0-001b: Fixed dependency cycle(s) with /i2c@ff3c0000/pmic@1b/regulators/DCDC_REG4
[ 1.019215] dw_wdt ff848000.watchdog: No valid TOPs array specified
[ 1.023002] sdhci: Secure Digital Host Controller Interface driver
[ 1.023625] sdhci: Copyright(c) Pierre Ossman
[ 1.024066] Synopsys Designware Multimedia Card Interface Driver
[ 1.025845] sdhci-pltfm: SDHCI platform and OF driver helper
[ 1.027004] dwmmc_rockchip fe320000.mmc: IDMAC supports 32-bit address mode.
[ 1.027258] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
[ 1.027742] dwmmc_rockchip fe320000.mmc: Using internal DMA controller.
[ 1.028346] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[ 1.028928] dwmmc_rockchip fe320000.mmc: Version ID is 270a
[ 1.028949] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[ 1.029037] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 50,32 bit host data width,256 deep fifo
[ 1.029591] dwmmc_rockchip fe320000.mmc: DW MMC controller at irq 49,32 bit host data width,256 deep fifo
[ 1.029730] mmc0: CQHCI version 5.10
[ 1.032943] dwmmc_rockchip fe320000.mmc: Got CD GPIO
[ 1.034079] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.036156] hid: raw HID events driver (C) Jiri Kosina
[ 1.036760] usbcore: registered new interface driver usbhid
[ 1.037276] usbhid: USB HID core driver
[ 1.041932] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[ 1.044721] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[ 1.046369] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[ 1.049228] drop_monitor: Initializing network drop monitor service
[ 1.050283] NET: Registered PF_INET6 protocol family
[ 1.055204] mmc0: SDHCI controller on fe330000.mmc [fe330000.mmc] using ADMA
[ 1.136664] mmc0: Command Queue Engine enabled
[ 1.137134] mmc0: new HS200 MMC card at address 0001
[ 1.139011] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB
[ 1.142443] mmcblk0: p1
[ 1.143716] mmcblk0boot0: mmc0:0001 BJTD4R 4.00 MiB
[ 1.146386] mmcblk0boot1: mmc0:0001 BJTD4R 4.00 MiB
[ 1.148987] mmcblk0rpmb: mmc0:0001 BJTD4R 4.00 MiB, chardev (243:0)
[ 1.453062] Freeing initrd memory: 12856K
[ 1.518871] Segment Routing with IPv6
[ 1.519374] In-situ OAM (IOAM) with IPv6
[ 1.519845] NET: Registered PF_PACKET protocol family
[ 1.520914] 8021q: 802.1Q VLAN Support v1.8
[ 1.521371] Key type dns_resolver registered
[ 1.533323] registered taskstats version 1
[ 1.533923] Loading compiled-in X.509 certificates
[ 1.553939] zswap: loaded using pool zstd/z3fold
[ 1.574036] Key type .fscrypt registered
[ 1.574442] Key type fscrypt-provisioning registered
[ 1.578414] Btrfs loaded, zoned=yes, fsverity=yes
[ 1.579022] Key type encrypted registered
[ 1.579428] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.630684] fan53555-regulator 0-0040: FAN53555 Option[8] Rev[1] Detected!
[ 1.631256] fan53555-regulator 0-0041: FAN53555 Option[8] Rev[1] Detected!
[ 1.631985] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
[ 1.632690] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[ 1.633312] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[ 1.633889] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 50,32 bit host data width,256 deep fifo
[ 1.648693] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 1.649259] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 1.650137] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000008002000010
[ 1.651074] xhci-hcd xhci-hcd.0.auto: irq 57, io mem 0xfe800000
[ 1.651922] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 1.652444] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 1.653156] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 1.654009] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.654773] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.655462] usb usb1: Product: xHCI Host Controller
[ 1.655918] usb usb1: Manufacturer: Linux 6.6.34-current-rockchip64 xhci-hcd
[ 1.656562] usb usb1: SerialNumber: xhci-hcd.0.auto
[ 1.657936] hub 1-0:1.0: USB hub found
[ 1.658337] hub 1-0:1.0: 1 port detected
[ 1.659332] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.660253] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[ 1.661017] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.661682] usb usb2: Product: xHCI Host Controller
[ 1.662134] usb usb2: Manufacturer: Linux 6.6.34-current-rockchip64 xhci-hcd
[ 1.662779] usb usb2: SerialNumber: xhci-hcd.0.auto
[ 1.664114] hub 2-0:1.0: USB hub found
[ 1.664513] hub 2-0:1.0: 1 port detected
[ 1.671931] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 1.672490] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
[ 1.673380] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000008002000010
[ 1.674310] xhci-hcd xhci-hcd.1.auto: irq 58, io mem 0xfe900000
[ 1.675109] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 1.675669] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
[ 1.676397] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[ 1.677251] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.678014] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.678678] usb usb3: Product: xHCI Host Controller
[ 1.679182] usb usb3: Manufacturer: Linux 6.6.34-current-rockchip64 xhci-hcd
[ 1.679831] usb usb3: SerialNumber: xhci-hcd.1.auto
[ 1.681183] hub 3-0:1.0: USB hub found
[ 1.681677] hub 3-0:1.0: 1 port detected
[ 1.682868] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 1.684392] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.06
[ 1.685160] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.685825] usb usb4: Product: xHCI Host Controller
[ 1.686278] usb usb4: Manufacturer: Linux 6.6.34-current-rockchip64 xhci-hcd
[ 1.686922] usb usb4: SerialNumber: xhci-hcd.1.auto
[ 1.688514] hub 4-0:1.0: USB hub found
[ 1.689002] hub 4-0:1.0: 1 port detected
[ 1.694322] ehci-platform fe380000.usb: EHCI Host Controller
[ 1.694422] ohci-platform fe3a0000.usb: Generic Platform OHCI controller
[ 1.694912] ehci-platform fe380000.usb: new USB bus registered, assigned bus number 5
[ 1.694968] ehci-platform fe3c0000.usb: EHCI Host Controller
[ 1.694998] ehci-platform fe3c0000.usb: new USB bus registered, assigned bus number 6
[ 1.695163] ehci-platform fe3c0000.usb: irq 60, io mem 0xfe3c0000
[ 1.695547] ohci-platform fe3a0000.usb: new USB bus registered, assigned bus number 7
[ 1.695817] ehci-platform fe380000.usb: irq 59, io mem 0xfe380000
[ 1.696415] ohci-platform fe3a0000.usb: irq 61, io mem 0xfe3a0000
[ 1.700747] rk808-regulator rk808-regulator.3.auto: there is no dvs0 gpio
[ 1.701410] rk808-regulator rk808-regulator.3.auto: there is no dvs1 gpio
[ 1.702036] rk808-regulator rk808-regulator.3.auto: max buck steps per change: 8
[ 1.711394] ehci-platform fe3c0000.usb: USB 2.0 started, EHCI 1.00
[ 1.712247] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.712998] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.713651] usb usb6: Product: EHCI Host Controller
[ 1.714094] usb usb6: Manufacturer: Linux 6.6.34-current-rockchip64 ehci_hcd
[ 1.714726] usb usb6: SerialNumber: fe3c0000.usb
[ 1.716286] hub 6-0:1.0: USB hub found
[ 1.716684] hub 6-0:1.0: 1 port detected
[ 1.719944] rk808-rtc rk808-rtc.4.auto: registered as rtc0
[ 1.721037] rk808-rtc rk808-rtc.4.auto: setting system clock to 2024-07-15T21:11:23 UTC (1721077883)
[ 1.724095] ohci-platform fe3e0000.usb: Generic Platform OHCI controller
[ 1.724731] ohci-platform fe3e0000.usb: new USB bus registered, assigned bus number 8
[ 1.725566] ohci-platform fe3e0000.usb: irq 72, io mem 0xfe3e0000
[ 1.727459] rockchip-pcie f8000000.pcie: host bridge /pcie@f8000000 ranges:
[ 1.727885] dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
[ 1.728163] rockchip-pcie f8000000.pcie: MEM 0x00fa000000..0x00fbdfffff -> 0x00fa000000
[ 1.728786] dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
[ 1.728809] rockchip-pcie f8000000.pcie: IO 0x00fbe00000..0x00fbefffff -> 0x00fbe00000
[ 1.729554] dwmmc_rockchip fe310000.mmc: Version ID is 270a
[ 1.731312] ehci-platform fe380000.usb: USB 2.0 started, EHCI 1.00
[ 1.731432] dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 50,32 bit host data width,256 deep fifo
[ 1.732898] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.06
[ 1.733008] dwmmc_rockchip fe310000.mmc: allocated mmc-pwrseq
[ 1.733669] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.734185] mmc_host mmc2: card is non-removable.
[ 1.734208] usb usb5: Product: EHCI Host Controller
[ 1.734220] usb usb5: Manufacturer: Linux 6.6.34-current-rockchip64 ehci_hcd
[ 1.736411] usb usb5: SerialNumber: fe380000.usb
[ 1.737863] hub 5-0:1.0: USB hub found
[ 1.738357] hub 5-0:1.0: 1 port detected
[ 1.747468] mmc_host mmc2: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[ 1.768516] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 1.769310] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.769975] usb usb7: Product: Generic Platform OHCI controller
[ 1.770521] usb usb7: Manufacturer: Linux 6.6.34-current-rockchip64 ohci_hcd
[ 1.771218] usb usb7: SerialNumber: fe3a0000.usb
[ 1.772766] hub 7-0:1.0: USB hub found
[ 1.773277] hub 7-0:1.0: 1 port detected
[ 1.787598] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.06
[ 1.788364] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.789017] usb usb8: Product: Generic Platform OHCI controller
[ 1.789553] usb usb8: Manufacturer: Linux 6.6.34-current-rockchip64 ohci_hcd
[ 1.790184] usb usb8: SerialNumber: fe3e0000.usb
[ 1.791451] hub 8-0:1.0: USB hub found
[ 1.791854] hub 8-0:1.0: 1 port detected
[ 1.878515] mmc_host mmc2: Bus speed (slot 0) = 148500000Hz (slot req 150000000Hz, actual 148500000HZ div = 0)
[ 1.915158] usb 1-1: new high-speed USB device number 2 using xhci-hcd
[ 2.019880] dwmmc_rockchip fe310000.mmc: Successfully tuned phase to 224
[ 2.023304] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd
[ 2.028220] mmc2: new ultra high speed SDR104 SDIO card at address 0001
[ 2.044004] usb 4-1: LPM exit latency is zeroed, disabling LPM.
[ 2.045970] usb 4-1: New USB device found, idVendor=1058, idProduct=1130, bcdDevice=10.16
[ 2.046731] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.047407] usb 4-1: Product: My Book 1130
[ 2.047793] usb 4-1: Manufacturer: Western Digital
[ 2.048239] usb 4-1: SerialNumber: 574341575A31333630313535
[ 2.051281] usb-storage 4-1:1.0: USB Mass Storage device detected
[ 2.054471] scsi host0: usb-storage 4-1:1.0
[ 2.087354] usb 1-1: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.43
[ 2.088135] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.088792] usb 1-1: Product: 4-Port USB 2.0 Hub
[ 2.089221] usb 1-1: Manufacturer: Generic
[ 2.134887] hub 1-1:1.0: USB hub found
[ 2.136471] hub 1-1:1.0: 4 ports detected
[ 2.203844] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd
[ 2.239187] usb 8-1: new low-speed USB device number 2 using ohci-platform
[ 2.242541] usb 2-1: New USB device found, idVendor=0bda, idProduct=0411, bcdDevice= 1.43
[ 2.243321] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.243978] usb 2-1: Product: 4-Port USB 3.0 Hub
[ 2.244409] usb 2-1: Manufacturer: Generic
[ 2.255247] usb 7-1: new low-speed USB device number 2 using ohci-platform
[ 2.282411] hub 2-1:1.0: USB hub found
[ 2.284436] hub 2-1:1.0: 4 ports detected
[ 2.287335] rockchip-pcie f8000000.pcie: PCIe link training gen1 timeout!
[ 2.288023] rockchip-pcie: probe of f8000000.pcie failed with error -110
[ 2.294470] rockchip-drm display-subsystem: bound ff8f0000.vop (ops 0xffff8000811d62f0)
[ 2.296572] rockchip-drm display-subsystem: bound ff900000.vop (ops 0xffff8000811d62f0)
[ 2.298144] dwhdmi-rockchip ff940000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[ 2.300556] rockchip-drm display-subsystem: bound ff940000.hdmi (ops 0xffff8000811da4f8)
[ 2.302660] [drm] Initialized rockchip 1.0.0 20140818 for display-subsystem on minor 0
[ 2.434742] Console: switching to colour frame buffer device 240x67
[ 2.471308] usb 8-1: New USB device found, idVendor=1c4f, idProduct=0034, bcdDevice= 1.10
[ 2.471337] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.471349] usb 8-1: Product: Usb Mouse
[ 2.471359] usb 8-1: Manufacturer: SIGMACHIP
[ 2.479799] input: SIGMACHIP Usb Mouse as /devices/platform/fe3e0000.usb/usb8/8-1/8-1:1.0/0003:1C4F:0034.0001/input/input0
[ 2.480999] hid-generic 0003:1C4F:0034.0001: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-fe3e0000.usb-1/input0
[ 2.489586] usb 7-1: New USB device found, idVendor=1a2c, idProduct=2c27, bcdDevice= 1.10
[ 2.489616] usb 7-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.489629] usb 7-1: Product: USB Keyboard
[ 2.489639] usb 7-1: Manufacturer: USB
[ 2.491331] usb 1-1.2: new high-speed USB device number 3 using xhci-hcd
[ 2.499263] input: USB USB Keyboard as /devices/platform/fe3a0000.usb/usb7/7-1/7-1:1.0/0003:1A2C:2C27.0002/input/input1
[ 2.509167] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[ 2.511503] WCN: marlin_init entry!
[ 2.512379] of_cfs_init
[ 2.512660] of_cfs_init: OK
[ 2.513169] clk: Disabling unused clocks
[ 2.517682] Freeing unused kernel memory: 4672K
[ 2.518393] Run /init as init process
[ 2.518762] with arguments:
[ 2.518772] /init
[ 2.518780] with environment:
[ 2.518787] HOME=/
[ 2.518795] TERM=linux
[ 2.518802] cgroup_enable=memory
[ 2.561098] hid-generic 0003:1A2C:2C27.0002: input,hidraw1: USB HID v1.10 Keyboard [USB USB Keyboard] on usb-fe3a0000.usb-1/input0
[ 2.569144] input: USB USB Keyboard Consumer Control as /devices/platform/fe3a0000.usb/usb7/7-1/7-1:1.1/0003:1A2C:2C27.0003/input/input2
[ 2.593474] usb 1-1.2: New USB device found, idVendor=045e, idProduct=02d5, bcdDevice= 1.10
[ 2.594501] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.595384] usb 1-1.2: Product: Xbox USB Tuner
[ 2.595923] usb 1-1.2: Manufacturer: Microsoft Corp.
[ 2.596507] usb 1-1.2: SerialNumber: 001818140415
[ 2.632329] input: USB USB Keyboard System Control as /devices/platform/fe3a0000.usb/usb7/7-1/7-1:1.1/0003:1A2C:2C27.0003/input/input3
[ 2.634483] hid-generic 0003:1A2C:2C27.0003: input,hidraw2: USB HID v1.10 Device [USB USB Keyboard] on usb-fe3a0000.usb-1/input1
[ 2.727392] usb 1-1.4: new high-speed USB device number 4 using xhci-hcd
[ 2.832015] usb 1-1.4: New USB device found, idVendor=9022, idProduct=d662, bcdDevice= 0.00
[ 2.833039] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.833892] usb 1-1.4: Product: DVB-S/S2 Box
[ 2.834406] usb 1-1.4: Manufacturer: Jactek
[ 2.834910] usb 1-1.4: SerialNumber: 000000031
[ 3.074615] scsi 0:0:0:0: Direct-Access WD My Book 1130 1016 PQ: 0 ANSI: 6
[ 3.383743] usbcore: registered new interface driver uas
[ 4.461978] usb 8-1: USB disconnect, device number 2
[ 4.843451] usb 8-1: new low-speed USB device number 3 using ohci-platform
[ 5.088512] usb 8-1: New USB device found, idVendor=1c4f, idProduct=0034, bcdDevice= 1.10
[ 5.098148] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 5.107566] usb 8-1: Product: Usb Mouse
[ 5.116630] usb 8-1: Manufacturer: SIGMACHIP
[ 5.138569] input: SIGMACHIP Usb Mouse as /devices/platform/fe3e0000.usb/usb8/8-1/8-1:1.0/0003:1C4F:0034.0004/input/input4
[ 5.149736] hid-generic 0003:1C4F:0034.0004: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-fe3e0000.usb-1/input0
[ 7.120981] usb 8-1: USB disconnect, device number 3
[ 7.515441] usb 8-1: new low-speed USB device number 4 using ohci-platform
[ 7.759522] usb 8-1: New USB device found, idVendor=1c4f, idProduct=0034, bcdDevice= 1.10
[ 7.769483] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 7.779257] usb 8-1: Product: Usb Mouse
[ 7.788686] usb 8-1: Manufacturer: SIGMACHIP
[ 7.810587] input: SIGMACHIP Usb Mouse as /devices/platform/fe3e0000.usb/usb8/8-1/8-1:1.0/0003:1C4F:0034.0005/input/input5
[ 7.822071] hid-generic 0003:1C4F:0034.0005: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-fe3e0000.usb-1/input0
[ 9.792929] usb 8-1: USB disconnect, device number 4
[ 10.160024] sd 0:0:0:0: [sda] 732558336 4096-byte logical blocks: (3.00 TB/2.73 TiB)
[ 10.161365] scsi 0:0:0:1: Enclosure WD SES Device 1016 PQ: 0 ANSI: 6
[ 10.175522] usb 8-1: new low-speed USB device number 5 using ohci-platform
[ 10.189307] sd 0:0:0:0: [sda] Write Protect is off
[ 10.200347] sd 0:0:0:0: [sda] Mode Sense: 47 00 10 08
[ 10.205803] sd 0:0:0:0: [sda] No Caching mode page found
[ 10.215735] sd 0:0:0:0: [sda] Assuming drive cache: write through
[ 10.230710] sda: sda1
[ 10.240804] sd 0:0:0:0: [sda] Attached SCSI disk
[ 10.264929] rk_gmac-dwmac fe300000.ethernet: IRQ eth_wake_irq not found
[ 10.274773] rk_gmac-dwmac fe300000.ethernet: IRQ eth_lpi not found
[ 10.284564] rk_gmac-dwmac fe300000.ethernet: PTP uses main clock
[ 10.294701] rk_gmac-dwmac fe300000.ethernet: clock input or output? (input).
[ 10.304216] rk_gmac-dwmac fe300000.ethernet: TX delay(0x28).
[ 10.313374] rk_gmac-dwmac fe300000.ethernet: RX delay(0x11).
[ 10.317217] rk_gmac-dwmac fe300000.ethernet: integrated PHY? (no).
[ 10.321189] rk_gmac-dwmac fe300000.ethernet: clock input from PHY
[ 10.330142] rk_gmac-dwmac fe300000.ethernet: init for RGMII
[ 10.334422] rk_gmac-dwmac fe300000.ethernet: User ID: 0x10, Synopsys ID: 0x35
[ 10.338324] rk_gmac-dwmac fe300000.ethernet: DWMAC1000
[ 10.342005] rk_gmac-dwmac fe300000.ethernet: DMA HW capability register supported
[ 10.345804] rk_gmac-dwmac fe300000.ethernet: RX Checksum Offload Engine supported
[ 10.349585] rk_gmac-dwmac fe300000.ethernet: COE Type 2
[ 10.353223] rk_gmac-dwmac fe300000.ethernet: TX Checksum insertion supported
[ 10.357049] rk_gmac-dwmac fe300000.ethernet: Wake-Up On Lan supported
[ 10.361053] rk_gmac-dwmac fe300000.ethernet: Normal descriptors
[ 10.364866] rk_gmac-dwmac fe300000.ethernet: Ring mode enabled
[ 10.368512] rk_gmac-dwmac fe300000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[ 10.427572] usb 8-1: New USB device found, idVendor=1c4f, idProduct=0034, bcdDevice= 1.10
[ 10.436260] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 10.444739] usb 8-1: Product: Usb Mouse
[ 10.452769] usb 8-1: Manufacturer: SIGMACHIP
[ 10.474672] input: SIGMACHIP Usb Mouse as /devices/platform/fe3e0000.usb/usb8/8-1/8-1:1.0/0003:1C4F:0034.0006/input/input6
[ 10.489502] hid-generic 0003:1C4F:0034.0006: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-fe3e0000.usb-1/input0
[ 10.500199] RTL8211F-VD Gigabit Ethernet stmmac-0:00: attached PHY driver (mii_bus:phy_addr=stmmac-0:00, irq=POLL)
[ 10.504439] RTL8211F-VD Gigabit Ethernet stmmac-0:01: attached PHY driver (mii_bus:phy_addr=stmmac-0:01, irq=POLL)
[ 10.739965] EXT4-fs (mmcblk0p1): mounted filesystem d0066127-3250-439b-8a43-74c307932a3d ro with ordered data mode. Quota mode: none.
[ 11.207078] systemd[1]: Inserted module 'autofs4'
[ 11.263232] systemd[1]: systemd 252.26-1~deb12u2 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 11.277681] systemd[1]: Detected architecture arm64.
[ 11.300877] systemd[1]: Hostname set to <DietPi>.
[ 11.442822] dw-apb-uart ff1a0000.serial: forbid DMA for kernel console
[ 11.968322] systemd[1]: Queued start job for default target graphical.target.
[ 12.002807] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[ 12.017634] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 12.029713] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[ 12.040070] systemd[1]: Created slice user.slice - User and Session Slice.
[ 12.048398] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[ 12.057839] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 12.067720] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 12.076781] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
[ 12.085426] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[ 12.095074] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 12.104375] systemd[1]: Reached target paths.target - Path Units.
[ 12.113353] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 12.122530] systemd[1]: Reached target slices.target - Slice Units.
[ 12.132339] systemd[1]: Reached target swap.target - Swaps.
[ 12.141558] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 12.152043] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 12.162803] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 12.174424] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[ 12.185213] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 12.196602] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 12.208159] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 12.218731] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 12.260367] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 12.276251] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 12.293818] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 12.309817] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 12.328614] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
[ 12.345433] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 12.364228] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 12.380951] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 12.398861] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 12.416121] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 12.435888] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 12.435909] device-mapper: uevent: version 1.0.3
[ 12.453821] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 12.459384] usb 8-1: USB disconnect, device number 5
[ 12.508215] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 12.524084] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 12.534089] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 12.549854] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 12.569018] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 12.584885] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 12.609295] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 12.635038] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 12.653597] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 12.670113] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 12.680468] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 12.681757] EXT4-fs (mmcblk0p1): re-mounted d0066127-3250-439b-8a43-74c307932a3d r/w. Quota mode: none.
[ 12.717184] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
[ 12.733140] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 12.745017] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 12.756847] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 12.763691] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 12.776207] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 12.782154] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 12.794784] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 12.801825] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 12.813586] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 12.820069] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 12.832829] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 12.838660] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 12.850202] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 12.856042] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 12.868271] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 12.879841] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 12.891299] usb 8-1: new low-speed USB device number 6 using ohci-platform
[ 12.936074] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 12.969226] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 12.991931] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[ 13.005138] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 13.017942] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[ 13.034010] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 13.073171] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 13.108749] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[ 13.139351] usb 8-1: New USB device found, idVendor=1c4f, idProduct=0034, bcdDevice= 1.10
[ 13.141982] systemd[1]: Started systemd-journald.service - Journal Service.
[ 13.151151] usb 8-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 13.168990] usb 8-1: Product: Usb Mouse
[ 13.169018] usb 8-1: Manufacturer: SIGMACHIP
[ 13.181753] input: SIGMACHIP Usb Mouse as /devices/platform/fe3e0000.usb/usb8/8-1/8-1:1.0/0003:1C4F:0034.0007/input/input7
[ 13.182773] hid-generic 0003:1C4F:0034.0007: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-fe3e0000.usb-1/input0
[ 13.616605] systemd-journald[349]: Received client request to flush runtime journal.
[ 14.080823] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 14.081624] scsi 0:0:0:1: Attached scsi generic sg1 type 13
[ 14.419726] mc: Linux media interface: v0.10
[ 14.445244] videodev: Linux video capture interface: v2.00
[ 14.486780] rockchip-rga ff680000.rga: HW Version: 0x03.02
[ 14.503211] rockchip-rga ff680000.rga: Registered rockchip-rga as /dev/video0
[ 14.536145] rockchip_vdec: module is from the staging directory, the quality is unknown, you have been warned.
[ 14.537212] rkvdec ff660000.video-codec: Adding to iommu group 1
[ 14.553052] hantro-vpu ff650000.video-codec: Adding to iommu group 0
[ 14.558494] hantro-vpu ff650000.video-codec: registered rockchip,rk3399-vpu-enc as /dev/video2
[ 14.559407] hantro-vpu ff650000.video-codec: registered rockchip,rk3399-vpu-dec as /dev/video3
[ 14.587639] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 14.591737] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 14.592775] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 14.593896] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 14.593924] cfg80211: failed to load regulatory.db
[ 14.642020] rk3288-crypto ff8b0000.crypto: will run requests pump with realtime priority
[ 14.642059] rk3288-crypto ff8b0000.crypto: Register ecb(aes) as ecb-aes-rk
[ 14.642106] rk3288-crypto ff8b0000.crypto: Register cbc(aes) as cbc-aes-rk
[ 14.642119] rk3288-crypto ff8b0000.crypto: Register ecb(des) as ecb-des-rk
[ 14.642131] rk3288-crypto ff8b0000.crypto: Register cbc(des) as cbc-des-rk
[ 14.642142] rk3288-crypto ff8b0000.crypto: Register ecb(des3_ede) as ecb-des3-ede-rk
[ 14.642153] rk3288-crypto ff8b0000.crypto: Register cbc(des3_ede) as cbc-des3-ede-rk
[ 14.642165] rk3288-crypto ff8b0000.crypto: Register sha1 as rk-sha1
[ 14.642178] rk3288-crypto ff8b0000.crypto: Register sha256 as rk-sha256
[ 14.642191] rk3288-crypto ff8b0000.crypto: Register md5 as rk-md5
[ 14.642203] rk3288-crypto ff8b0000.crypto: Register TRNG with sample=1200
[ 14.646992] random: crng init done
[ 14.651461] brcmfmac: F1 signature read @0x18000000=0x15264345
[ 14.651770] rk3288-crypto ff8b8000.crypto: will run requests pump with realtime priority
[ 14.668979] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[ 14.677105] usbcore: registered new interface driver brcmfmac
[ 14.778506] panfrost ff9a0000.gpu: clock rate = 500000000
[ 14.781640] Bluetooth: Core ver 2.22
[ 14.786257] NET: Registered PF_BLUETOOTH protocol family
[ 14.786282] Bluetooth: HCI device and connection manager initialized
[ 14.786311] Bluetooth: HCI socket layer initialized
[ 14.786322] Bluetooth: L2CAP socket layer initialized
[ 14.786364] Bluetooth: SCO socket layer initialized
[ 14.846685] panfrost ff9a0000.gpu: mali-t860 id 0x860 major 0x2 minor 0x0 status 0x0
[ 14.846720] panfrost ff9a0000.gpu: features: 00000000,00000407, issues: 00000000,24040400
[ 14.846731] panfrost ff9a0000.gpu: Features: L2:0x07120206 Shader:0x00000000 Tiler:0x00000809 Mem:0x1 MMU:0x00002830 AS:0xff JS:0x7
[ 14.846745] panfrost ff9a0000.gpu: shader_present=0xf l2_present=0x1
[ 14.882261] [drm] Initialized panfrost 1.2.0 20180908 for ff9a0000.gpu on minor 1
[ 15.039588] dw2102: su3000_identify_state
[ 15.039600] dvb-usb: found a 'TeVii S662' in warm state.
[ 15.039605] dw2102: su3000_power_ctrl: 1, initialized 0
[ 15.042526] dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
[ 15.043250] dvbdev: DVB: registering new adapter (TeVii S662)
[ 15.043289] usb 1-1.4: media controller created
[ 15.050657] dvb-usb: MAC address: 00:18:bd:5a:5b:93
[ 15.052461] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
[ 15.057510] dvb-usb: found a 'Microsoft Xbox One Digital TV Tuner' in warm state.
[ 15.057896] dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
[ 15.062718] dvbdev: DVB: registering new adapter (Microsoft Xbox One Digital TV Tuner)
[ 15.062755] usb 1-1.2: media controller created
[ 15.064361] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
[ 15.291252] mn88472 10-0018: Panasonic MN88472 successfully identified
[ 15.313512] tda18250 10-0060: NXP TDA18250BHN/M successfully identified
[ 15.316985] usb 1-1.2: DVB: registering adapter 1 frontend 0 (Panasonic MN88472)...
[ 15.317046] dvbdev: dvb_create_media_entity: media entity 'Panasonic MN88472' registered.
[ 15.319497] dvb-usb: Microsoft Xbox One Digital TV Tuner successfully initialized and connected.
[ 15.326250] usbcore: registered new interface driver dvb_usb_dib0700
[ 15.386161] i2c i2c-9: Added multiplexed i2c bus 11
[ 15.508276] ts2020 11-0060: Montage Technology TS2022 successfully identified
[ 15.508529] usb 1-1.4: DVB: registering adapter 0 frontend 0 (Montage Technology M88DS3103)...
[ 15.508593] dvbdev: dvb_create_media_entity: media entity 'Montage Technology M88DS3103' registered.
[ 15.559298] Registered IR keymap rc-tt-1500
[ 15.559474] rc rc0: TeVii S662 as /devices/platform/usb@fe800000/fe800000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.4/rc/rc0
[ 15.560028] rc rc0: lirc_dev: driver dw2102 registered at minor = 0, scancode receiver, no transmitter
[ 15.560217] input: TeVii S662 as /devices/platform/usb@fe800000/fe800000.usb/xhci-hcd.0.auto/usb1/1-1/1-1.4/rc/rc0/input8
[ 15.560631] dvb-usb: schedule remote query interval to 250 msecs.
[ 15.560646] dw2102: su3000_power_ctrl: 0, initialized 1
[ 15.560653] dvb-usb: TeVii S662 successfully initialized and connected.
[ 15.560862] usbcore: registered new interface driver dw2102
[ 15.753843] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 15.907188] rk_gmac-dwmac fe300000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 15.935308] rk_gmac-dwmac fe300000.ethernet eth0: PHY [stmmac-0:00] driver [RTL8211F-VD Gigabit Ethernet] (irq=POLL)
[ 15.943406] rk_gmac-dwmac fe300000.ethernet eth0: No Safety Features support found
[ 15.943453] rk_gmac-dwmac fe300000.ethernet eth0: PTP not supported by HW
[ 15.944049] rk_gmac-dwmac fe300000.ethernet eth0: configuring for phy/rgmii link mode
[ 16.783267] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 16.980810] jellyfin[719]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
[ 18.021192] rk_gmac-dwmac fe300000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 18.338289] dw2102: su3000_power_ctrl: 1, initialized 1
[ 18.342736] m88ds3103 9-0068: found a 'Montage Technology M88DS3103' in cold state
[ 18.345691] m88ds3103 9-0068: downloading firmware from file 'dvb-demod-m88ds3103.fw'
[ 19.422485] m88ds3103 9-0068: found a 'Montage Technology M88DS3103' in warm state
[ 19.422520] m88ds3103 9-0068: firmware version: 3.B
[ 19.440651] usb 1-1.4: DVB: adapter 0 frontend 0 frequency 0 out of range (950000..2150000)
[ 19.447826] dw2102: su3000_power_ctrl: 0, initialized 1
[ 19.451280] dw2102: su3000_power_ctrl: 1, initialized 1
[ 19.455090] mn88472 10-0018: downloading firmware from file 'dvb-demod-mn88472-02.fw'
[ 19.621403] usb 1-1.2: DVB: adapter 1 frontend 0 frequency 0 out of range (42000000..870000000)
[ 19.767633] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 19.770841] Bridge firewalling registered
[ 20.431726] Initializing XFRM netlink socket
[ 25.824248] platform sound-dit: deferred probe pending
[ 44.636476] systemd-journald[349]: Time jumped backwards, rotating.
[ 340.305811] usbcore: deregistering interface driver brcmfmac
[ 350.832007] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 350.832777] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 350.833448] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 350.833563] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 350.833578] cfg80211: failed to load regulatory.db
[ 350.845571] brcmfmac: F1 signature read @0x18000000=0x15264345
[ 350.851614] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6
[ 350.852715] usbcore: registered new interface driver brcmfmac
[ 351.917237] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 352.919825] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
Hi everyone,
I'm experiencing exactly the same behavior, but I'm running a Rock Pi 4C (not SE or PLUS). I tried both the stable img from the website as well as building my own image using the latest revision from the dev branch. The dmesg output is essentially the same:
[ 7.068786] brcmfmac: F1 signature read @0x18000000=0x15294345
[ 7.074980] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43456-sdio for chip BCM4345/9
[ 7.076386] usbcore: registered new interface driver brcmfmac
[ 8.207483] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 9.220768] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
Btw, Armbian works just fine, but since I'm not that experienced in Linux for SBC, I don't know where to dig.
Not sure if this is the case, but the board is detected as Model: Radxa ROCK Pi 4B
in the U-Boot output.
Thanks!
Tried a few things for tracking down the issue:
@c00ldchan You used the minimal/IoT image from here? https://www.armbian.com/rockpi4/
@MichaIng Yes! Also tried building both DietPi and Armbian (Ubuntu Noble Minimal, not provided on the Armbian website), the result is exactly the same.
Weird, so the image from the download page has functional WiFi, but building a fresh one with Armbian build system has not?
I also checked the image and could not find anything that would be related, like explicitly loaded module, module config, udev rule, dedicated package or service, boot config and script, device tree overlay etc.
On the functional Armbian image could you check dmesg
as well, and compare to the non-functional one?
Weird, so the image from the download page has functional WiFi, but building a fresh one with Armbian build system has not?
No, I mean both self-compiled and official builds produce same results - on Armbian the driver initializes fine, but not with Diet, so essentially this:
Armbian Bookworm Minimal - OK
Armbian Noble Minimal - OK
DietPi (self-built & ISO) - keep getting clkctl 0x50
when enabling brcmf
I also checked the image and could not find anything that would be related, like explicitly loaded module, module config, udev rule, dedicated package or service, boot config and script, device tree overlay etc.
True, I haven't found anything that can cause this. Do you know if brcmf depends on some other driver/library which is not included in armbian-firmware? I can also try stealing it from Armbian repositories. Also is there a way to roll back to an older DietPI build and build an image locally? I recall it was working just fine some time ago, so I can try to bisect this.
On the functional Armbian image could you check dmesg as well, and compare to the non-functional one?
Yes, I tried that, even with brcmf verbose debug logging, but unfortunately it was useless - there are no significant differences: DietPI loads just fine, and then boom.
OK, attached two dmesg dumps, from Armbian and DietPi. I diffed them and found nothing suspicious.
Can you compare lsmod
outputs as well, please? And just to assure, the WiFi interface does not exist at all, right?
ip link
I have one idea: can you try to enable (remove blacklist for) Bluetooth modules?
rm /etc/modprobe.d/dietpi-disable_bluetooth.conf
reboot
Oh wow, you're correct - it's the Bluetooth blacklist causing this. Nice catch, thank you!
I think I managed to track it down to the hci_uart
module. The driver loads fine with only the first line commented out in dietpi-disable_bluetooth.conf
:
# blacklist hci_uart
blacklist hidp
blacklist rfcomm
blacklist btbcm
blacklist bnep
blacklist bluetooth
This should fix it: https://github.com/MichaIng/DietPi/commit/5af8a85
Creating a bug report/issue
Required Information
DietPi version |
cat /boot/dietpi/.version
G_DIETPI_VERSION_CORE=9 G_DIETPI_VERSION_SUB=1 G_DIETPI_VERSION_RC=1 G_GITBRANCH='master' G_GITOWNER='MichaIng' G_LIVE_PATCH_STATUS[0]='not applicable'Distro version |
echo $G_DISTRO_NAME $G_RASPBIAN
bookworm
Kernel version |
uname -a
Linux DietPi 6.6.15-current-rockchip64 #2 SMP PREEMPT Thu Feb 1 00:19:14 UTC 2024 aarch64 GNU/Linux
SBC model |
echo $G_HW_MODEL_NAME
or (EG: RPi3) ROCK 4 (aarch64) [Actually ROCK 4SE]Power supply used | (EG: 5V 1A RAVpower)
SD card used | (EG: SanDisk ultra) USB PD adapter
Additional Information (if applicable)
Software title | (EG: Nextcloud)
Was the software title installed freshly or updated/migrated?
Freshly installed
Can this issue be replicated on a fresh installation of DietPi?
Bug report ID |
echo $G_HW_UUID
fac68c52-ff4b-4cec-8920-f92e69b83da0
Steps to reproduce
Expected behaviour
Actual behaviour
Extra details
dmseg to follow :
Logfile attached. Click to expand!
``` root@DietPi:~# dmesg [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.6.15-current-rockchip64 (armbian@next) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #2 SMP PREEMPT Thu Feb 1 00:19:14 UTC 2024 [ 0.000000] Machine model: Radxa ROCK 4SE [ 0.000000] efi: UEFI not found. [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000000f7ffffff] [ 0.000000] NUMA: NODE_DATA [mem 0xf77cb980-0xf77cdfff] [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000000200000-0x00000000f7ffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000200000-0x00000000f7ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000000f7ffffff] [ 0.000000] On node 0, zone DMA: 512 pages in unavailable ranges [ 0.000000] cma: Reserved 128 MiB at 0x00000000e8200000 on node -1 [ 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 31 pages/cpu s88296 r8192 d30488 u126976 [ 0.000000] pcpu-alloc: s88296 r8192 d30488 u126976 alloc=31*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: root=UUID=88a725de-ac8d-428f-ae0e-2964c016dc23 rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0 [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] Fallback order for Node 0: 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 999432 [ 0.000000] Policy zone: DMA [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] software IO TLB: area num 8. [ 0.000000] software IO TLB: mapped [mem 0x00000000e4200000-0x00000000e8200000] (64MB) [ 0.000000] Memory: 3741232K/4061184K available (16960K kernel code, 2308K rwdata, 6364K rodata, 4672K init, 604K bss, 188880K reserved, 131072K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1 [ 0.000000] trace event string verifier disabled [ 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] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=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] Root IRQ handler: gic_handle_irq [ 0.000000] GICv3: GICv3 features: 16 PPIs [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fef00000 [ 0.000000] ITS [mem 0xfee20000-0xfee3ffff] [ 0.000000] ITS@0x00000000fee20000: allocated 65536 Devices @500000 (flat, esz 8, psz 64K, shr 0) [ 0.000000] ITS: using cache flushing for cmd queue [ 0.000000] GICv3: using LPI property table @0x00000000004f0000 [ 0.000000] GIC: using cache flushing for LPI property table [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000000580000 [ 0.000000] GICv3: 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] GICv3: GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@100[4] /cpus/cpu@101[5] } [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns [ 0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns [ 0.001484] Console: colour dummy device 80x25 [ 0.001503] printk: console [tty1] enabled [ 0.002761] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000) [ 0.002813] pid_max: default: 32768 minimum: 301 [ 0.002974] LSM: initializing lsm=capability,yama,apparmor,integrity [ 0.003052] Yama: becoming mindful. [ 0.003200] AppArmor: AppArmor initialized [ 0.003274] stackdepot: allocating hash table of 262144 entries via kvcalloc [ 0.004034] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.004094] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.006532] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.008552] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.008772] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1. [ 0.009281] rcu: Hierarchical SRCU implementation. [ 0.009309] rcu: Max phase no-delay instances is 1000. [ 0.011208] Platform MSI: msi-controller@fee20000 domain created [ 0.011844] PCI/MSI: /interrupt-controller@fee00000/msi-controller@fee20000 domain created [ 0.013897] EFI services will not be available. [ 0.014775] smp: Bringing up secondary CPUs ... [ 0.016305] Detected VIPT I-cache on CPU1 [ 0.016426] GICv3: CPU1: found redistributor 1 region 0:0x00000000fef20000 [ 0.016451] GICv3: CPU1: using allocated LPI pending table @0x0000000000590000 [ 0.016529] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.018247] Detected VIPT I-cache on CPU2 [ 0.018373] GICv3: CPU2: found redistributor 2 region 0:0x00000000fef40000 [ 0.018398] GICv3: CPU2: using allocated LPI pending table @0x00000000005a0000 [ 0.018472] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.020224] Detected VIPT I-cache on CPU3 [ 0.020346] GICv3: CPU3: found redistributor 3 region 0:0x00000000fef60000 [ 0.020372] GICv3: CPU3: using allocated LPI pending table @0x00000000005b0000 [ 0.020444] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.022154] CPU features: detected: Spectre-v2 [ 0.022168] CPU features: detected: Spectre-v4 [ 0.022174] CPU features: detected: Spectre-BHB [ 0.022183] CPU features: detected: ARM erratum 1742098 [ 0.022191] CPU features: detected: ARM errata 1165522, 1319367, or 1530923 [ 0.022198] Detected PIPT I-cache on CPU4 [ 0.022277] GICv3: CPU4: found redistributor 100 region 0:0x00000000fef80000 [ 0.022295] GICv3: CPU4: using allocated LPI pending table @0x00000000005c0000 [ 0.022342] CPU4: Booted secondary processor 0x0000000100 [0x410fd082] [ 0.023834] Detected PIPT I-cache on CPU5 [ 0.023925] GICv3: CPU5: found redistributor 101 region 0:0x00000000fefa0000 [ 0.023945] GICv3: CPU5: using allocated LPI pending table @0x00000000005d0000 [ 0.023994] CPU5: Booted secondary processor 0x0000000101 [0x410fd082] [ 0.024211] smp: Brought up 1 node, 6 CPUs [ 0.024678] SMP: Total of 6 processors activated. [ 0.024704] CPU features: detected: 32-bit EL0 Support [ 0.024727] CPU features: detected: 32-bit EL1 Support [ 0.024753] CPU features: detected: CRC32 instructions [ 0.024936] CPU: All CPU(s) started at EL2 [ 0.024972] alternatives: applying system-wide alternatives [ 0.029380] devtmpfs: initialized [ 0.047024] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.047111] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) [ 0.050424] pinctrl core: initialized pinctrl subsystem [ 0.051114] DMI not present or invalid. [ 0.051950] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.054725] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations [ 0.056167] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.057410] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.057496] audit: initializing netlink subsys (disabled) [ 0.057790] audit: type=2000 audit(0.056:1): state=initialized audit_enabled=0 res=1 [ 0.059244] thermal_sys: Registered thermal governor 'fair_share' [ 0.059254] thermal_sys: Registered thermal governor 'bang_bang' [ 0.059276] thermal_sys: Registered thermal governor 'step_wise' [ 0.059293] thermal_sys: Registered thermal governor 'user_space' [ 0.059367] cpuidle: using governor menu [ 0.059645] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.059926] ASID allocator initialised with 65536 entries [ 0.061473] Serial: AMBA PL011 UART driver [ 0.089487] platform fe330000.mmc: Fixed dependency cycle(s) with /syscon@ff770000/phy@f780 [ 0.095435] platform ff940000.hdmi: Fixed dependency cycle(s) with /vop@ff8f0000/port/endpoint@2 [ 0.095496] platform ff940000.hdmi: Fixed dependency cycle(s) with /vop@ff900000/port/endpoint@2 [ 0.105072] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.105603] rockchip-gpio ff720000.gpio: probed /pinctrl/gpio@ff720000 [ 0.106184] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.106545] rockchip-gpio ff730000.gpio: probed /pinctrl/gpio@ff730000 [ 0.107132] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.107481] rockchip-gpio ff780000.gpio: probed /pinctrl/gpio@ff780000 [ 0.108019] gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.108381] rockchip-gpio ff788000.gpio: probed /pinctrl/gpio@ff788000 [ 0.108929] gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.109275] rockchip-gpio ff790000.gpio: probed /pinctrl/gpio@ff790000 [ 0.116798] Modules: 24992 pages in range for non-PLT usage [ 0.116810] Modules: 516512 pages in range for PLT usage [ 0.118082] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.118116] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page [ 0.118135] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages [ 0.118152] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page [ 0.118170] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.118186] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page [ 0.118203] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages [ 0.118219] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page [ 0.119535] cryptd: max_cpu_qlen set to 1000 [ 0.188342] raid6: neonx8 gen() 1657 MB/s [ 0.256501] raid6: neonx4 gen() 1674 MB/s [ 0.324672] raid6: neonx2 gen() 1502 MB/s [ 0.392848] raid6: neonx1 gen() 1163 MB/s [ 0.461019] raid6: int64x8 gen() 903 MB/s [ 0.529196] raid6: int64x4 gen() 998 MB/s [ 0.597368] raid6: int64x2 gen() 950 MB/s [ 0.665553] raid6: int64x1 gen() 732 MB/s [ 0.665570] raid6: using algorithm neonx4 gen() 1674 MB/s [ 0.733710] raid6: .... xor() 1271 MB/s, rmw enabled [ 0.733728] raid6: using neon recovery algorithm [ 0.735031] iommu: Default domain type: Translated [ 0.735055] iommu: DMA domain TLB invalidation policy: strict mode [ 0.735601] SCSI subsystem initialized [ 0.735860] libata version 3.00 loaded. [ 0.736188] usbcore: registered new interface driver usbfs [ 0.736246] usbcore: registered new interface driver hub [ 0.736310] usbcore: registered new device driver usb [ 0.737003] pps_core: LinuxPPS API ver. 1 registered [ 0.737022] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giomettilsmod :
Logfile attached. Click to expand!
``` root@DietPi:~# lsmod Module Size Used by nls_utf8 12288 8 cifs 1150976 0 cifs_arc4 12288 1 cifs nls_ucs2_utils 12288 1 cifs cifs_md4 12288 1 cifs fscache 380928 1 cifs netfs 57344 2 cifs,fscache snd_soc_hdmi_codec 24576 1 btsdio 16384 0 bluetooth 811008 1 btsdio snd_soc_simple_card 20480 0 snd_soc_audio_graph_card 16384 2 snd_soc_spdif_tx 12288 0 snd_soc_simple_card_utils 32768 2 snd_soc_audio_graph_card,snd_soc_simple_card snd_soc_rockchip_i2s 24576 4 snd_soc_es8316 40960 1 panfrost 77824 2 snd_soc_core 294912 7 snd_soc_spdif_tx,snd_soc_hdmi_codec,snd_soc_audio_graph_card,snd_soc_simple_card_utils,snd_soc_rockchip_i2s,snd_soc_simple_card,snd_soc_es8316 gpu_sched 49152 1 panfrost drm_shmem_helper 24576 1 panfrost dw_hdmi_cec 12288 0 dw_hdmi_i2s_audio 12288 0 snd_compress 28672 1 snd_soc_core rockchip_vdec 77824 0 rk_crypto 28672 0 snd_pcm_dmaengine 16384 1 snd_soc_core brcmfmac 405504 0 rng_core 20480 1 rk_crypto snd_pcm 143360 6 snd_soc_hdmi_codec,snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_soc_es8316,snd_pcm_dmaengine hantro_vpu 262144 0 brcmutil 24576 1 brcmfmac v4l2_vp9 24576 2 rockchip_vdec,hantro_vpu videobuf2_dma_contig 24576 2 rockchip_vdec,hantro_vpu snd_timer 40960 1 snd_pcm v4l2_h264 16384 2 rockchip_vdec,hantro_vpu rockchip_rga 24576 0 videobuf2_dma_sg 16384 1 rockchip_rga v4l2_mem2mem 40960 3 rockchip_vdec,hantro_vpu,rockchip_rga cfg80211 991232 1 brcmfmac snd 106496 9 snd_soc_hdmi_codec,snd_timer,snd_compress,snd_soc_core,snd_pcm videobuf2_memops 16384 2 videobuf2_dma_contig,videobuf2_dma_sg soundcore 12288 1 snd videobuf2_v4l2 32768 4 rockchip_vdec,hantro_vpu,rockchip_rga,v4l2_mem2mem videodev 294912 5 rockchip_vdec,videobuf2_v4l2,hantro_vpu,rockchip_rga,v4l2_mem2mem rfkill 28672 3 bluetooth,cfg80211 videobuf2_common 65536 8 rockchip_vdec,videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,videobuf2_dma_sg,v4l2_mem2mem,videobuf2_memops mc 77824 6 rockchip_vdec,videodev,videobuf2_v4l2,hantro_vpu,videobuf2_common,v4l2_mem2mem cpufreq_dt 16384 0 binfmt_misc 24576 1 dm_mod 151552 0 ip_tables 32768 0 x_tables 57344 1 ip_tables autofs4 45056 2 realtek 32768 1 dwmac_rk 28672 0 stmmac_platform 24576 1 dwmac_rk stmmac 245760 3 stmmac_platform,dwmac_rk pcs_xpcs 24576 1 stmmac ```