Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image | Radxa ROCK 3B #7327

Open
MidG971 opened this issue Dec 26, 2024 · 65 comments
Open

Image | Radxa ROCK 3B #7327

MidG971 opened this issue Dec 26, 2024 · 65 comments
Labels
External bug 🐞 For bugs which are not caused by DietPi. Image request 💾 ROCK 3B
Milestone

Comments

@MidG971
Copy link

MidG971 commented Dec 26, 2024

Details:

  • Date | 2024-12-26 16:02:16
  • Program name | DietPi-Installer
  • Command | apt-get -y autopurge gawk original-awk
  • Exit code | 100
  • DietPi version | v9.9.0 (MichaIng/master)
  • Distro version | bullseye (ID=6,RASPBIAN=0)
  • Kernel version | Linux rock-3b 5.10.160-18-rk356x #425b07550 SMP Thu Oct 12 08:48:55 UTC 2023 aarch64 GNU/Linux
  • Architecture | arm64
  • Hardware model | (ID=22)
  • Power supply | (EG: RAVPower 5V 1A)
  • SD card | (EG: SanDisk Ultra 16 GB)

Steps to reproduce:

  1. Launch the script , choose generic device
  2. ...

Expected behaviour:

  • Install DietPi

Actual behaviour:

  • It fails , trying to delete something that doesn't exist apparently

Extra details:

  • cf attached log from

Additional logs:

Reading package lists...
Building dependency tree...
Reading state information...
Package 'gawk' is not installed, so not removed
Package 'original-awk' is not installed, so not removed
The following packages will be REMOVED:
  radxa-sddm-theme
0 upgraded, 0 newly installed, 1 to remove and 438 not upgraded.
1 not fully installed or removed.
After this operation, 17.4 kB disk space will be freed.
(Reading database ... 63364 files and directories currently installed.)
Removing radxa-sddm-theme (0.1.1) ...
rm: cannot remove '/usr/share/sddm/themes/breeze/Main.qml': No such file or directory
dpkg: error processing package radxa-sddm-theme (--remove):
 installed radxa-sddm-theme package post-removal script subprocess returned error exit status 1
dpkg: too many errors, stopping
Errors were encountered while processing:
 radxa-sddm-theme
Processing was halted because there were too many errors.
E: Sub-process /usr/bin/dpkg returned an error code (1)

log_failed_install_Rock3B.txt

@MichaIng
Copy link
Owner

That Radxa package postrm script tries to remove a file which does not exist. Create a dummy file at that location, then retry to purge it:

sudo mkdir -p /usr/share/sddm/themes/breeze
sudo touch /usr/share/sddm/themes/breeze/Main.qml
sudo apt purge radxa-sddm-theme
sudo rmdir -p /usr/share/sddm/themes/breeze

@MichaIng MichaIng added the External bug 🐞 For bugs which are not caused by DietPi. label Dec 27, 2024
@MidG971
Copy link
Author

MidG971 commented Dec 27, 2024

I did as requested, with slight changes:

root@rock-3b:/tmp/DietPi-Installer# sudo mkdir -p /usr/share/sddm/themes/breeze
root@rock-3b:/tmp/DietPi-Installer# sudo touch /usr/share/sddm/themes/breeze/Main.qml
root@rock-3b:/tmp/DietPi-Installer# sudo apt purge radxa-sddm-theme
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages will be REMOVED:
radxa-sddm-theme
0 upgraded, 0 newly installed, 1 to remove and 438 not upgraded.
1 not fully installed or removed.
After this operation, 17.4 kB disk space will be freed.
Do you want to continue? [Y/n]
(Reading database ... 63362 files and directories currently installed.)
Removing radxa-sddm-theme (0.1.1) ...
Removing 'diversion of /usr/share/sddm/themes/breeze/Main.qml to /usr/share/sddm/themes/breeze/Main.qml.bak by radxa-sddm-theme'
Processing triggers for desktop-file-utils (0.26-1) ...
Processing triggers for initramfs-tools (0.142+deb12u1) ...
update-initramfs: Generating /boot/initrd.img-5.10.160-38-rk356x
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for libglib2.0-0:arm64 (2.66.8-1+deb11u5) ...
Processing triggers for libc-bin (2.36-9+deb12u9) ...
Processing triggers for dbus (1.12.28-0+deb11u1) ...
Processing triggers for shared-mime-info (2.0-1) ...
Processing triggers for udev (247.3-7+deb11u6) ...
Processing triggers for libgdk-pixbuf-2.0-0:arm64 (2.42.2+dfsg-1+deb11u2) ...
Processing triggers for fontconfig (2.13.1-4.2) ...
root@rock-3b:/tmp/DietPi-Installer# sudo rmdir -p /usr/share/sddm/themes/breeze
rmdir: failed to remove directory '/usr/share': Directory not empty
root@rock-3b:/tmp/DietPi-Installer# sudo rm -d -f -r -v /usr/share/sddm/themes/breeze I did this manually, then exited the shell
root@rock-3b:/tmp/DietPi-Installer#

Afterwards the install is successful but I lose my two onboard NICs, the wlan is still ok, but I get some errors on the bluetooth side.. I've got the dmseg output linked. I tried to install the audio, but failed also.
dmesg_OK_install_NO_NICs_Rock3B.txt

@MidG971
Copy link
Author

MidG971 commented Dec 27, 2024

I know that, the board is in the kernel https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dts since v6.10...
Can I fellow this method you gave me previously for my other sbc (Rock4SE) :
image

If yes which binary should I use ?

@MichaIng
Copy link
Owner

Why did you use a vendor image, and not our ROCK 3A image? While it can work with any pre-image, there is not guarantee, as especially these vendor images are pretty messy and kinda malformed often. The Radxa package which tries to remove a non-existing file and even fails to uninstall completely, if that file does not exist, is a prefect example.

Please try our image first, before we start to debug an issue which might be entirely related to the vendor pre-image, like faulty firmware placed into the filesystem without APT package reference and such stuff.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

I used the vendor image because the Rock 3B is not supported nor proposed to be downloaded, only the Rock 3A. They do share the same CPU but the 3B has two NICs instead of one. Also there's the fact that for instance , there's a difference of implementation of the DRAM on the Rock 4 and Rock 4SE, I figured that I should choose the generic device road to be sure. I'll try the Rock 3A firmware on it and will give you the feedback.

@MichaIng
Copy link
Owner

MichaIng commented Dec 30, 2024

Ah right, I missed the little important difference 3A and 3B 😉.

Hmm, based on your logs, I guess the Debian Bookworm firmware packages cause the issue, as the Radxa image contains /etc/apt/apt.conf.d/no-bookworm-firmware.conf, which is removed by our installer. And then there is a package removed rockchip-iqfiles-rk356x, where I do not know what it contains.

However, I'd try something different, as you recognised, mainline Linux supports this SBC already. Do you have a WiFi adapter at hand, to establish Internet access with that one temporarily? If so:

  1. Flash the ROCK 3A image
  2. Set up Internet via WiFi adapter (or any other USB network adapter)
  3. Install a Linux 6.12 package I just built, once the build here has finished: https://github.com/MichaIng/DietPi/actions/runs/12545221217
    cd /tmp
    wget https://dietpi.com/downloads/binaries/testing/linux-{image,dtb}-current-rockchip64.deb
    dpkg -i linux-{image,dtb}-current-rockchip64.deb
  4. Apply the now available ROCK 3B device tree overlay
    G_CONFIG_INJECT 'fdtfile=' 'fdtfile=rockchip/rk3568-rock-3b.dtb' /boot/dietpiEnv.txt
    reboot

If this works, we can add some preliminary support to DietPi. If upstream U-Boot supports it as well, we can add support to our Armbian fork natively.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

It happens 😄
I have a Wifi adapter on the M.2 B slot, I'll do as you recommended.

@MichaIng
Copy link
Owner

Okay, kernel build has finished, hence this could be tried now.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

Using the Rock 3A image is fine as far as:

  • I added my wifi info in the config file before booting the board. It worked fine, no NICs, but Wifi OK.

  • When I pushed the new ROCK 3B device tree overlay , I lost the connection, I'm currently using serial console as I don't have access to a hdmi screen at the moment. After the first reboot, I tried to reboot numerous times, tried to access the serial console, with the default speeds 9600 / 115200 bps , I only get scrambled characters that one would get if the speed isn't correctly configured.

@MichaIng
Copy link
Owner

MichaIng commented Dec 30, 2024

Did you upgrade the kernel first, and does it contain the expected device tree?

ls -l /boot/dtb/rockchip/rk3568-rock-3b.dtb

Ah shit, my mistake, I built the edge kernel, while I wanted to build the current kernel ... I'll redo.

... build running: https://github.com/MichaIng/DietPi/actions/runs/12547993860
If you can access the ext4 filesystem on the SD card from elsewhere, editing /boot/dietpiEnv.txt to contain fdtfile=rockchip/rk3568-rock-3a.dtb will make the image bootable again. Once above build is done, now really current branch, repeat above steps.

@MidG971
Copy link
Author

MidG971 commented Dec 30, 2024

Its partially ok now :
i'll give you a detailed report when I get home, but to be short, leds dont turn on when cable are plugged and only one NICs up at the time. Its a mess to test right now as I'll have to figure out if the OS doesn't confuse the NICs. I do it later. Also the dietpi-config menu detects only one NIC

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f8 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.100/24 brd 192.168.0.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet 192.168.75.118/24 brd 192.168.75.255 scope global dynamic eth0
       valid_lft 28083sec preferred_lft 28083sec
    inet6 fe80::e0e1:76ff:fe03:12f8/64 scope link
       valid_lft forever preferred_lft forever
3: eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f9 brd ff:ff:ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether c8:21:58:b7:a7:b9 brd ff:ff:ff:ff:ff:ff
    inet 192.168.75.215/24 brd 192.168.75.255 scope global dynamic wlan0
       valid_lft 28089sec preferred_lft 28089sec
    inet6 fe80::ca21:58ff:feb7:a7b9/64 scope link
       valid_lft forever preferred_lft forever

  • in the dietpi-config menu I can only see one NIC and it keep showing me this parameters, despite the changes I made ( switch to dhcp ) 👍

┌──────────────────────────────┤ DietPi-Config ├───────────────────────────────┐
│ Ethernet Details:                                                            │
│ Usage   : Sent = 0 MiB | Received = 0 MiB                                    │
│ Address : IP = 192.168.0.100 | Mask = 255.255.255.0 | Gateway =  | DNS =     │
│ 192.168.254.30                                                               │
│                                                                              │
│                        ●─ DHCP/STATIC IP ──────────────────────●             │
│            Change Mode : [DHCP]                                              │
│                        ●─ Additional Options ──────────────────●             │
│            Link Speed  : [auto (default)]                                    │
│            Disable     : Disable Ethernet adapter                            │
│                        ●─ Apply ───────────────────────────────●             │
│            Apply       : Save all changes and restart networking             │
│                                                                              │
│                                                                              │
│                     <Select>                     <Back>                      │
│                                                                              │
└──────────────────────────────────────────────────────────────────────────────┘

Thi

here's the journactl :

root@DietPi:~# journalctl
Dec 30 17:21:38 DietPi kernel: Booting Linux on physical CPU 0x0000000000 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: Linux version 6.12.7-current-rockchip64 (build@armbian) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 SMP PREEMPT Fri Dec 27 13:02:20 UTC 2024
Dec 30 17:21:38 DietPi kernel: KASLR disabled due to lack of seed
Dec 30 17:21:38 DietPi kernel: Machine model: Radxa ROCK 3B
Dec 30 17:21:38 DietPi kernel: efi: UEFI not found.
Dec 30 17:21:38 DietPi kernel: NUMA: Faking a node at [mem 0x0000000000200000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: NODE_DATA(0) allocated [mem 0x1fefdb640-0x1fefdddbf]
Dec 30 17:21:38 DietPi kernel: Zone ranges:
Dec 30 17:21:38 DietPi kernel:   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
Dec 30 17:21:38 DietPi kernel:   DMA32    empty
Dec 30 17:21:38 DietPi kernel:   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: Movable zone start for each node
Dec 30 17:21:38 DietPi kernel: Early memory node ranges
Dec 30 17:21:38 DietPi kernel:   node   0: [mem 0x0000000000200000-0x00000000efffffff]
Dec 30 17:21:38 DietPi kernel:   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
Dec 30 17:21:38 DietPi kernel: On node 0, zone DMA: 512 pages in unavailable ranges
Dec 30 17:21:38 DietPi kernel: cma: Reserved 128 MiB at 0x00000000e8000000 on node -1
Dec 30 17:21:38 DietPi kernel: psci: probing for conduit method from DT.
Dec 30 17:21:38 DietPi kernel: psci: PSCIv1.1 detected in firmware.
Dec 30 17:21:38 DietPi kernel: psci: Using standard PSCI v0.2 function IDs
Dec 30 17:21:38 DietPi kernel: psci: MIGRATE_INFO_TYPE not supported.
Dec 30 17:21:38 DietPi kernel: psci: SMC Calling Convention v1.2
Dec 30 17:21:38 DietPi kernel: percpu: Embedded 34 pages/cpu s98968 r8192 d32104 u139264
Dec 30 17:21:38 DietPi kernel: pcpu-alloc: s98968 r8192 d32104 u139264 alloc=34*4096
Dec 30 17:21:38 DietPi kernel: pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU0
Dec 30 17:21:38 DietPi kernel: CPU features: detected: GIC system register CPU interface
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Virtualization Host Extensions
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009
Dec 30 17:21:38 DietPi kernel: CPU features: detected: ARM errata 1165522, 1319367, or 1530923
Dec 30 17:21:38 DietPi kernel: alternatives: applying boot alternatives
Dec 30 17:21:38 DietPi kernel: Kernel command line: root=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0 androidboot.fwver=ddr-v1.21-2d653b3476,bl31-v1.44,uboot-rmbian-201-10/09/2024
Dec 30 17:21:38 DietPi kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Fallback order for Node 0: 0
Dec 30 17:21:38 DietPi kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2031104
Dec 30 17:21:38 DietPi kernel: Policy zone: Normal
Dec 30 17:21:38 DietPi kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
Dec 30 17:21:38 DietPi kernel: software IO TLB: area num 4.
Dec 30 17:21:38 DietPi kernel: software IO TLB: mapped [mem 0x00000000e4000000-0x00000000e8000000] (64MB)
Dec 30 17:21:38 DietPi kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Dec 30 17:21:38 DietPi kernel: rcu: Preemptible hierarchical RCU implementation.
Dec 30 17:21:38 DietPi kernel: rcu:         RCU event tracing is enabled.
Dec 30 17:21:38 DietPi kernel: rcu:         RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
Dec 30 17:21:38 DietPi kernel:         Trampoline variant of Tasks RCU enabled.
Dec 30 17:21:38 DietPi kernel:         Tracing variant of Tasks RCU enabled.
Dec 30 17:21:38 DietPi kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Dec 30 17:21:38 DietPi kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Dec 30 17:21:38 DietPi kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
Dec 30 17:21:38 DietPi kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
Dec 30 17:21:38 DietPi kernel: NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
Dec 30 17:21:38 DietPi kernel: GICv3: GIC: Using split EOI/Deactivate mode
Dec 30 17:21:38 DietPi kernel: GICv3: 320 SPIs implemented
Dec 30 17:21:38 DietPi kernel: GICv3: 0 Extended SPIs implemented
Dec 30 17:21:38 DietPi kernel: GICv3: MBI range [296:319]
Dec 30 17:21:38 DietPi kernel: GICv3: Using MBI frame 0x00000000fd410000
Dec 30 17:21:38 DietPi kernel: Root IRQ handler: gic_handle_irq
Dec 30 17:21:38 DietPi kernel: GICv3: GICv3 features: 16 PPIs
Dec 30 17:21:38 DietPi kernel: GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
Dec 30 17:21:38 DietPi kernel: GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
Dec 30 17:21:38 DietPi kernel: ITS: No ITS available, not enabling LPIs
Dec 30 17:21:38 DietPi kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Dec 30 17:21:38 DietPi kernel: arch_timer: cp15 timer(s) running at 24.00MHz (phys).
Dec 30 17:21:38 DietPi kernel: clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
Dec 30 17:21:38 DietPi kernel: sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
Dec 30 17:21:38 DietPi kernel: Console: colour dummy device 80x25
Dec 30 17:21:38 DietPi kernel: printk: legacy console [tty1] enabled
Dec 30 17:21:38 DietPi kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
Dec 30 17:21:38 DietPi kernel: pid_max: default: 32768 minimum: 301
Dec 30 17:21:38 DietPi kernel: LSM: initializing lsm=capability,yama,apparmor
Dec 30 17:21:38 DietPi kernel: Yama: becoming mindful.
Dec 30 17:21:38 DietPi kernel: AppArmor: AppArmor initialized
Dec 30 17:21:38 DietPi kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: rcu: Hierarchical SRCU implementation.
Dec 30 17:21:38 DietPi kernel: rcu:         Max phase no-delay instances is 1000.
Dec 30 17:21:38 DietPi kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Dec 30 17:21:38 DietPi kernel: EFI services will not be available.
Dec 30 17:21:38 DietPi kernel: smp: Bringing up secondary CPUs ...
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU1
Dec 30 17:21:38 DietPi kernel: GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
Dec 30 17:21:38 DietPi kernel: CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU2
Dec 30 17:21:38 DietPi kernel: GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
Dec 30 17:21:38 DietPi kernel: CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: Detected VIPT I-cache on CPU3
Dec 30 17:21:38 DietPi kernel: GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
Dec 30 17:21:38 DietPi kernel: CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
Dec 30 17:21:38 DietPi kernel: smp: Brought up 1 node, 4 CPUs
Dec 30 17:21:38 DietPi kernel: SMP: Total of 4 processors activated.
Dec 30 17:21:38 DietPi kernel: CPU: All CPU(s) started at EL2
Dec 30 17:21:38 DietPi kernel: CPU features: detected: 32-bit EL0 Support
Dec 30 17:21:38 DietPi kernel: CPU features: detected: 32-bit EL1 Support
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Data cache clean to the PoU not required for I/D coherence
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Common not Private translations
Dec 30 17:21:38 DietPi kernel: CPU features: detected: CRC32 instructions
Dec 30 17:21:38 DietPi kernel: CPU features: detected: RCpc load-acquire (LDAPR)
Dec 30 17:21:38 DietPi kernel: CPU features: detected: LSE atomic instructions
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Privileged Access Never
Dec 30 17:21:38 DietPi kernel: CPU features: detected: RAS Extension Support
Dec 30 17:21:38 DietPi kernel: CPU features: detected: Speculative Store Bypassing Safe (SSBS)
Dec 30 17:21:38 DietPi kernel: alternatives: applying system-wide alternatives
Dec 30 17:21:38 DietPi kernel: Memory: 7721592K/8124416K available (16384K kernel code, 2760K rwdata, 5212K rodata, 4928K init, 787K bss, 266880K reserved, 131072K cma-reserved)
Dec 30 17:21:38 DietPi kernel: devtmpfs: initialized
Dec 30 17:21:38 DietPi kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Dec 30 17:21:38 DietPi kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Dec 30 17:21:38 DietPi kernel: 25184 pages in range for non-PLT usage
Dec 30 17:21:38 DietPi kernel: 516704 pages in range for PLT usage
Dec 30 17:21:38 DietPi kernel: pinctrl core: initialized pinctrl subsystem
Dec 30 17:21:38 DietPi kernel: DMI not present or invalid.
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Dec 30 17:21:38 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Dec 30 17:21:38 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Dec 30 17:21:38 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Dec 30 17:21:38 DietPi kernel: audit: initializing netlink subsys (disabled)
Dec 30 17:21:38 DietPi kernel: audit: type=2000 audit(0.108:1): state=initialized audit_enabled=0 res=1
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'fair_share'
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'bang_bang'
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'step_wise'
Dec 30 17:21:38 DietPi kernel: thermal_sys: Registered thermal governor 'user_space'
Dec 30 17:21:38 DietPi kernel: cpuidle: using governor menu
Dec 30 17:21:38 DietPi kernel: hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
Dec 30 17:21:38 DietPi kernel: ASID allocator initialised with 65536 entries
Dec 30 17:21:38 DietPi kernel: Serial: AMBA PL011 UART driver
Dec 30 17:21:38 DietPi kernel: /vop@fe040000: Fixed dependency cycle(s) with /hdmi@fe0a0000
Dec 30 17:21:38 DietPi kernel: /hdmi@fe0a0000: Fixed dependency cycle(s) with /vop@fe040000
Dec 30 17:21:38 DietPi kernel: /pcie@fe260000: Fixed dependency cycle(s) with /pcie@fe260000/legacy-interrupt-controller
Dec 30 17:21:38 DietPi kernel: gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
Dec 30 17:21:38 DietPi kernel: gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
Dec 30 17:21:38 DietPi kernel: rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
Dec 30 17:21:38 DietPi kernel: /pcie@fe280000: Fixed dependency cycle(s) with /pcie@fe280000/legacy-interrupt-controller
Dec 30 17:21:38 DietPi kernel: /hdmi@fe0a0000: Fixed dependency cycle(s) with /hdmi-con
Dec 30 17:21:38 DietPi kernel: /hdmi-con: Fixed dependency cycle(s) with /hdmi@fe0a0000
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
Dec 30 17:21:38 DietPi kernel: HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
Dec 30 17:21:38 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
Dec 30 17:21:38 DietPi kernel: cryptd: max_cpu_qlen set to 1000
Dec 30 17:21:38 DietPi kernel: raid6: neonx8   gen()  1408 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: neonx4   gen()  1430 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: neonx2   gen()  1317 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: neonx1   gen()  1072 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x8  gen()   912 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x4  gen()  1047 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x2  gen()   937 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: int64x1  gen()   668 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: using algorithm neonx4 gen() 1430 MB/s
Dec 30 17:21:38 DietPi kernel: raid6: .... xor() 1102 MB/s, rmw enabled
Dec 30 17:21:38 DietPi kernel: raid6: using neon recovery algorithm
Dec 30 17:21:38 DietPi kernel: iommu: Default domain type: Translated
Dec 30 17:21:38 DietPi kernel: iommu: DMA domain TLB invalidation policy: strict mode
Dec 30 17:21:38 DietPi kernel: SCSI subsystem initialized
Dec 30 17:21:38 DietPi kernel: libata version 3.00 loaded.
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver usbfs
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver hub
Dec 30 17:21:38 DietPi kernel: usbcore: registered new device driver usb
Dec 30 17:21:38 DietPi kernel: pps_core: LinuxPPS API ver. 1 registered
Dec 30 17:21:38 DietPi kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
Dec 30 17:21:38 DietPi kernel: PTP clock support registered
Dec 30 17:21:38 DietPi kernel: EDAC MC: Ver: 3.0.0
Dec 30 17:21:38 DietPi kernel: scmi_core: SCMI protocol bus registered
Dec 30 17:21:38 DietPi kernel: NetLabel: Initializing
Dec 30 17:21:38 DietPi kernel: NetLabel:  domain hash size = 128
Dec 30 17:21:38 DietPi kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Dec 30 17:21:38 DietPi kernel: NetLabel:  unlabeled traffic allowed by default
Dec 30 17:21:38 DietPi kernel: vgaarb: loaded
Dec 30 17:21:38 DietPi kernel: clocksource: Switched to clocksource arch_sys_counter
Dec 30 17:21:38 DietPi kernel: VFS: Disk quotas dquot_6.6.0
Dec 30 17:21:38 DietPi kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Dec 30 17:21:38 DietPi kernel: AppArmor: AppArmor Filesystem Enabled
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_INET protocol family
Dec 30 17:21:38 DietPi kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Dec 30 17:21:38 DietPi kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Dec 30 17:21:38 DietPi kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Dec 30 17:21:38 DietPi kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Dec 30 17:21:38 DietPi kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Dec 30 17:21:38 DietPi kernel: TCP: Hash tables configured (established 65536 bind 65536)
Dec 30 17:21:38 DietPi kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_XDP protocol family
Dec 30 17:21:38 DietPi kernel: PCI: CLS 0 bytes, default 64
Dec 30 17:21:38 DietPi kernel: Trying to unpack rootfs image as initramfs...
Dec 30 17:21:38 DietPi kernel: kvm [1]: nv: 554 coarse grained trap handlers
Dec 30 17:21:38 DietPi kernel: kvm [1]: IPA Size Limit: 40 bits
Dec 30 17:21:38 DietPi kernel: kvm [1]: GICv3: no GICV resource entry
Dec 30 17:21:38 DietPi kernel: kvm [1]: disabling GICv2 emulation
Dec 30 17:21:38 DietPi kernel: kvm [1]: GIC system register CPU interface enabled
Dec 30 17:21:38 DietPi kernel: kvm [1]: vgic interrupt IRQ9
Dec 30 17:21:38 DietPi kernel: kvm [1]: VHE mode initialized successfully
Dec 30 17:21:38 DietPi kernel: Initialise system trusted keyrings
Dec 30 17:21:38 DietPi kernel: Key type blacklist registered
Dec 30 17:21:38 DietPi kernel: workingset: timestamp_bits=44 max_order=21 bucket_order=0
Dec 30 17:21:38 DietPi kernel: zbud: loaded
Dec 30 17:21:38 DietPi kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Dec 30 17:21:38 DietPi kernel: fuse: init (API version 7.41)
Dec 30 17:21:38 DietPi kernel: integrity: Platform Keyring initialized
Dec 30 17:21:38 DietPi kernel: xor: measuring software checksum speed
Dec 30 17:21:38 DietPi kernel:    8regs           :  1710 MB/sec
Dec 30 17:21:38 DietPi kernel:    32regs          :  1537 MB/sec
Dec 30 17:21:38 DietPi kernel:    arm64_neon      :  1728 MB/sec
Dec 30 17:21:38 DietPi kernel: xor: using function: arm64_neon (1728 MB/sec)
Dec 30 17:21:38 DietPi kernel: Key type asymmetric registered
Dec 30 17:21:38 DietPi kernel: Asymmetric key parser 'x509' registered
Dec 30 17:21:38 DietPi kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Dec 30 17:21:38 DietPi kernel: io scheduler mq-deadline registered
Dec 30 17:21:38 DietPi kernel: io scheduler kyber registered
Dec 30 17:21:38 DietPi kernel: io scheduler bfq registered
Dec 30 17:21:38 DietPi kernel: Freeing initrd memory: 13744K
Dec 30 17:21:38 DietPi kernel: ledtrig-cpu: registered to indicate activity on CPUs
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe530000.dma-controller:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
Dec 30 17:21:38 DietPi kernel: dma-pl330 fe550000.dma-controller:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 30 17:21:38 DietPi kernel: Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
Dec 30 17:21:38 DietPi kernel: printk: legacy console [ttyS2] disabled
Dec 30 17:21:38 DietPi kernel: fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 25, base_baud = 1500000) is a 16550A
Dec 30 17:21:38 DietPi kernel: printk: legacy console [ttyS2] enabled
Dec 30 17:21:38 DietPi kernel: Serial: AMBA driver
Dec 30 17:21:38 DietPi kernel: loop: module loaded
Dec 30 17:21:38 DietPi kernel: Key type psk registered
Dec 30 17:21:38 DietPi kernel: thunder_xcv, ver 1.0
Dec 30 17:21:38 DietPi kernel: thunder_bgx, ver 1.0
Dec 30 17:21:38 DietPi kernel: nicpf, ver 1.0
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver usb-storage
Dec 30 17:21:38 DietPi kernel: mousedev: PS/2 mouse device common for all mice
Dec 30 17:21:38 DietPi kernel: i2c_dev: i2c /dev entries driver
Dec 30 17:21:38 DietPi kernel: fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
Dec 30 17:21:38 DietPi kernel: rtc-hym8563 5-0051: registered as rtc0
Dec 30 17:21:38 DietPi kernel: rtc-hym8563 5-0051: setting system clock to 2024-12-30T16:21:34 UTC (1735575694)
Dec 30 17:21:38 DietPi kernel: sdhci: Secure Digital Host Controller Interface driver
Dec 30 17:21:38 DietPi kernel: sdhci: Copyright(c) Pierre Ossman
Dec 30 17:21:38 DietPi kernel: Synopsys Designware Multimedia Card Interface Driver
Dec 30 17:21:38 DietPi kernel: sdhci-pltfm: SDHCI platform and OF driver helper
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: Using scmi_smc_transport
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI max-rx-timeout: 30ms
Dec 30 17:21:38 DietPi kernel: scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI Notifications - Core Enabled.
Dec 30 17:21:38 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
Dec 30 17:21:38 DietPi kernel: SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
Dec 30 17:21:38 DietPi kernel: hid: raw HID events driver (C) Jiri Kosina
Dec 30 17:21:38 DietPi kernel: usbcore: registered new interface driver usbhid
Dec 30 17:21:38 DietPi kernel: usbhid: USB HID core driver
Dec 30 17:21:38 DietPi kernel: rockchip-dfi fe230000.dfi: dfi initialized, dram type: 0x8, channels: 1
Dec 30 17:21:38 DietPi kernel: hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) counters available
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_INET6 protocol family
Dec 30 17:21:38 DietPi kernel: Segment Routing with IPv6
Dec 30 17:21:38 DietPi kernel: In-situ OAM (IOAM) with IPv6
Dec 30 17:21:38 DietPi kernel: NET: Registered PF_PACKET protocol family
Dec 30 17:21:38 DietPi kernel: 8021q: 802.1Q VLAN Support v1.8
Dec 30 17:21:38 DietPi kernel: Key type dns_resolver registered
Dec 30 17:21:38 DietPi kernel: registered taskstats version 1
Dec 30 17:21:38 DietPi kernel: Loading compiled-in X.509 certificates
Dec 30 17:21:38 DietPi kernel: zswap: loaded using pool zstd/z3fold
Dec 30 17:21:38 DietPi kernel: Demotion targets for Node 0: null
Dec 30 17:21:38 DietPi kernel: Key type .fscrypt registered
Dec 30 17:21:38 DietPi kernel: Key type fscrypt-provisioning registered
Dec 30 17:21:38 DietPi kernel: Btrfs loaded, zoned=yes, fsverity=yes
Dec 30 17:21:38 DietPi kernel: Key type encrypted registered
Dec 30 17:21:38 DietPi kernel: AppArmor: AppArmor sha256 policy hashing enabled
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0040000000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: PCIe Gen.1 x1 link up
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0000000.pcie: PCI host bridge to bus 0000:00
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [bus 00-0f]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf4100000-0xf41fffff])
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [mem 0xf4200000-0xf5ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: root bus resource [mem 0x300000000-0x33fffffff] (bus address [0x40000000-0x7fffffff])
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: supports D1 D2
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: PME# supported from D0 D1 D3hot
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: [8086:095a] type 00 class 0x028000 PCIe Endpoint
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: BAR 0 [mem 0x00000000-0x00001fff 64bit]
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: bridge window [mem 0xf4200000-0xf42fffff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: ROM [mem 0xf4300000-0xf430ffff pref]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0000:01:00.0: BAR 0 [mem 0xf4200000-0xf4201fff 64bit]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0000:00:00.0:   bridge window [mem 0xf4200000-0xf42fffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: resource 4 [io  0x0000-0xfffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: resource 5 [mem 0xf4200000-0xf5ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:00: resource 6 [mem 0x300000000-0x33fffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0000:01: resource 1 [mem 0xf4200000-0xf42fffff]
Dec 30 17:21:38 DietPi kernel: pcieport 0000:00:00.0: PME: Signaling with IRQ 39
Dec 30 17:21:38 DietPi kernel: pcieport 0000:00:00.0: AER: enabled with IRQ 39
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000808002000010
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: irq 41, io mem 0xfd000000
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
Dec 30 17:21:38 DietPi kernel: xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
Dec 30 17:21:38 DietPi kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb1: Product: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: usb usb1: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
Dec 30 17:21:38 DietPi kernel: usb usb1: SerialNumber: xhci-hcd.2.auto
Dec 30 17:21:38 DietPi kernel: hub 1-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 1-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Dec 30 17:21:38 DietPi kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb2: Product: xHCI Host Controller
Dec 30 17:21:38 DietPi kernel: usb usb2: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
Dec 30 17:21:38 DietPi kernel: usb usb2: SerialNumber: xhci-hcd.2.auto
Dec 30 17:21:38 DietPi kernel: hub 2-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 2-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: EHCI Host Controller
Dec 30 17:21:38 DietPi kernel: ohci-platform fd840000.usb: Generic Platform OHCI controller
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: new USB bus registered, assigned bus number 3
Dec 30 17:21:38 DietPi kernel: ohci-platform fd840000.usb: new USB bus registered, assigned bus number 4
Dec 30 17:21:38 DietPi kernel: ohci-platform fd840000.usb: irq 43, io mem 0xfd840000
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: irq 42, io mem 0xfd800000
Dec 30 17:21:38 DietPi kernel: ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
Dec 30 17:21:38 DietPi kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb3: Product: EHCI Host Controller
Dec 30 17:21:38 DietPi kernel: usb usb3: Manufacturer: Linux 6.12.7-current-rockchip64 ehci_hcd
Dec 30 17:21:38 DietPi kernel: usb usb3: SerialNumber: fd800000.usb
Dec 30 17:21:38 DietPi kernel: hub 3-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 3-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
Dec 30 17:21:38 DietPi kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dec 30 17:21:38 DietPi kernel: usb usb4: Product: Generic Platform OHCI controller
Dec 30 17:21:38 DietPi kernel: usb usb4: Manufacturer: Linux 6.12.7-current-rockchip64 ohci_hcd
Dec 30 17:21:38 DietPi kernel: usb usb4: SerialNumber: fd840000.usb
Dec 30 17:21:38 DietPi kernel: hub 4-0:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 4-0:1.0: 1 port detected
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: IDMAC supports 32-bit address mode.
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: Using internal DMA controller.
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: Version ID is 270a
Dec 30 17:21:38 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: DW MMC controller at irq 69,32 bit host data width,256 deep fifo
Dec 30 17:21:38 DietPi kernel: WCN: marlin_init entry!
Dec 30 17:21:38 DietPi kernel: of_cfs_init
Dec 30 17:21:38 DietPi kernel: of_cfs_init: OK
Dec 30 17:21:38 DietPi kernel: clk: Disabling unused clocks
Dec 30 17:21:38 DietPi kernel: PM: genpd: Disabling unused power domains
Dec 30 17:21:38 DietPi kernel: mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
Dec 30 17:21:38 DietPi kernel: mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
Dec 30 17:21:38 DietPi kernel: Freeing unused kernel memory: 4928K
Dec 30 17:21:38 DietPi kernel: Run /init as init process
Dec 30 17:21:38 DietPi kernel:   with arguments:
Dec 30 17:21:38 DietPi kernel:     /init
Dec 30 17:21:38 DietPi kernel:   with environment:
Dec 30 17:21:38 DietPi kernel:     HOME=/
Dec 30 17:21:38 DietPi kernel:     TERM=linux
Dec 30 17:21:38 DietPi kernel: mmc0: new HS200 MMC card at address 0001
Dec 30 17:21:38 DietPi kernel: mmcblk0: mmc0:0001 A3A561 57.6 GiB
Dec 30 17:21:38 DietPi kernel: usb 3-1: new high-speed USB device number 2 using ehci-platform
Dec 30 17:21:38 DietPi kernel:  mmcblk0: p1
Dec 30 17:21:38 DietPi kernel: mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB
Dec 30 17:21:38 DietPi kernel: mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB
Dec 30 17:21:38 DietPi kernel: mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (243:0)
Dec 30 17:21:38 DietPi kernel: usb 3-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
Dec 30 17:21:38 DietPi kernel: usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Dec 30 17:21:38 DietPi kernel: usb 3-1: Product: USB 2.0 Hub
Dec 30 17:21:38 DietPi kernel: hub 3-1:1.0: USB hub found
Dec 30 17:21:38 DietPi kernel: hub 3-1:1.0: 4 ports detected
Dec 30 17:21:38 DietPi kernel: rk808-rtc rk808-rtc.6.auto: registered as rtc1
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: clock input from PHY
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
Dec 30 17:21:38 DietPi kernel: rockchip-vop2 fe040000.vop: Adding to iommu group 0
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TSO supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops [rockchipdrm])
Dec 30 17:21:38 DietPi kernel: dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
Dec 30 17:21:38 DietPi kernel: dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops [rockchipdrm])
Dec 30 17:21:38 DietPi kernel: [drm] Initialized rockchip 1.0.0 for display-subsystem on minor 0
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
Dec 30 17:21:38 DietPi kernel: rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
Dec 30 17:21:38 DietPi kernel: phy phy-fe8c0000.phy.6: lane number 0, val 1
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0040000000
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ sfty not found
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (input).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input from PHY
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: init for RGMII_ID
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO supported
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Enabled RFS Flow TC (entries=10)
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
Dec 30 17:21:38 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Using 32/32 bits DMA host/device width
Dec 30 17:21:38 DietPi kernel: mdio_bus stmmac-0: MDIO device at address 1 is missing.
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: PCIe Gen.3 x2 link up
Dec 30 17:21:38 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: PCI host bridge to bus 0002:00
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [bus 00-0f]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [io  0x100000-0x1fffff] (bus address [0xf0100000-0xf01fffff])
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [mem 0xf0200000-0xf1ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: root bus resource [mem 0x380000000-0x3bfffffff] (bus address [0x40000000-0x7fffffff])
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 0 [mem 0x00000000-0x3fffffff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem 0x00000000-0x3fffffff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [io  0x0000-0x0fff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: supports D1 D2
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: PME# supported from D0 D1 D3hot
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: [10ec:5765] type 00 class 0x010802 PCIe Endpoint
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 0 [mem 0x00000000-0x00003fff 64bit]
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 5 [mem 0x00000000-0x00001fff]
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 0 [mem 0x380000000-0x3bfffffff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: can't assign; no space
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: failed to assign
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: bridge window [mem 0xf0200000-0xf02fffff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: ROM [mem 0xf0300000-0xf030ffff pref]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 0 [mem 0xf0200000-0xf0203fff 64bit]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:01:00.0: BAR 5 [mem 0xf0204000-0xf0205fff]: assigned
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0: PCI bridge to [bus 01-ff]
Dec 30 17:21:38 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: Some PCI device resources are unassigned, try booting with pci=realloc
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: resource 4 [io  0x100000-0x1fffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: resource 5 [mem 0xf0200000-0xf1ffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:00: resource 6 [mem 0x380000000-0x3bfffffff]
Dec 30 17:21:38 DietPi kernel: pci_bus 0002:01: resource 1 [mem 0xf0200000-0xf02fffff]
Dec 30 17:21:38 DietPi kernel: pcieport 0002:00:00.0: PME: Signaling with IRQ 79
Dec 30 17:21:38 DietPi kernel: pcieport 0002:00:00.0: AER: enabled with IRQ 79
Dec 30 17:21:38 DietPi kernel: nvme nvme0: pci function 0002:01:00.0
Dec 30 17:21:38 DietPi kernel: nvme 0002:01:00.0: enabling device (0000 -> 0002)
Dec 30 17:21:38 DietPi kernel: EXT4-fs (mmcblk0p1): mounted filesystem 463087c8-1d8f-4075-b7b1-4b86c641e99e ro with ordered data mode. Quota mode: none.
Dec 30 17:21:38 DietPi kernel: hwmon hwmon2: temp1_input not attached to any thermal zone
Dec 30 17:21:38 DietPi kernel: nvme nvme0: allocated 64 MiB host memory buffer.
Dec 30 17:21:38 DietPi kernel: nvme nvme0: 4/0/0 default/read/poll queues
Dec 30 17:21:38 DietPi kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
Dec 30 17:21:38 DietPi systemd[1]: Inserted module 'autofs4'
Dec 30 17:21:38 DietPi systemd[1]: systemd 252.31-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)
Dec 30 17:21:38 DietPi systemd[1]: Detected architecture arm64.
Dec 30 17:21:38 DietPi systemd[1]: Hostname set to <DietPi>.
Dec 30 17:21:38 DietPi kernel: dw-apb-uart fe660000.serial: forbid DMA for kernel console
Dec 30 17:21:38 DietPi systemd[1]: Queued start job for default target graphical.target.
Dec 30 17:21:38 DietPi systemd[1]: Created slice system-getty.slice - Slice /system/getty.
Dec 30 17:21:38 DietPi systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
Dec 30 17:21:38 DietPi systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
Dec 30 17:21:38 DietPi systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
Dec 30 17:21:38 DietPi systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
Dec 30 17:21:38 DietPi systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
Dec 30 17:21:38 DietPi systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
Dec 30 17:21:38 DietPi systemd[1]: Reached target paths.target - Path Units.
Dec 30 17:21:38 DietPi systemd[1]: Reached target remote-fs.target - Remote File Systems.
Dec 30 17:21:38 DietPi systemd[1]: Reached target slices.target - Slice Units.
Dec 30 17:21:38 DietPi systemd[1]: Reached target swap.target - Swaps.
Dec 30 17:21:38 DietPi systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-journald.socket - Journal Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Dec 30 17:21:38 DietPi systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Dec 30 17:21:38 DietPi systemd[1]: Reached target sockets.target - Socket Units.
Dec 30 17:21:38 DietPi systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Dec 30 17:21:38 DietPi systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
Dec 30 17:21:38 DietPi systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
Dec 30 17:21:38 DietPi systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Dec 30 17:21:38 DietPi systemd[1]: Starting [email protected] - Load Kernel Module configfs...
Dec 30 17:21:38 DietPi systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
Dec 30 17:21:38 DietPi systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Dec 30 17:21:38 DietPi systemd[1]: Starting [email protected] - Load Kernel Module fuse...
Dec 30 17:21:38 DietPi systemd[1]: Starting [email protected] - Load Kernel Module loop...
Dec 30 17:21:38 DietPi 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).
Dec 30 17:21:38 DietPi kernel: device-mapper: uevent: version 1.0.3
Dec 30 17:21:38 DietPi kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-journald.service - Journal Service...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
Dec 30 17:21:38 DietPi systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
Dec 30 17:21:38 DietPi systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
Dec 30 17:21:38 DietPi systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
Dec 30 17:21:38 DietPi systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
Dec 30 17:21:38 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished [email protected] - Load Kernel Module configfs.
Dec 30 17:21:38 DietPi systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
Dec 30 17:21:38 DietPi systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Dec 30 17:21:38 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished [email protected] - Load Kernel Module fuse.
Dec 30 17:21:38 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:21:38 DietPi systemd[1]: Finished [email protected] - Load Kernel Module loop.
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
Dec 30 17:21:38 DietPi systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
Dec 30 17:21:38 DietPi systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
Dec 30 17:21:38 DietPi kernel: EXT4-fs (mmcblk0p1): re-mounted 463087c8-1d8f-4075-b7b1-4b86c641e99e r/w. Quota mode: none.
Dec 30 17:21:38 DietPi systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
Dec 30 17:21:38 DietPi systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Dec 30 17:21:38 DietPi systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-sysusers.service - Create System Users...
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-sysusers.service - Create System Users.
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
Dec 30 17:21:38 DietPi systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
Dec 30 17:21:38 DietPi systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
Dec 30 17:21:38 DietPi systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
Dec 30 17:21:38 DietPi systemd-journald[223]: Journal started
Dec 30 17:21:38 DietPi systemd-journald[223]: Runtime Journal (/run/log/journal/b7ef18856b3d4b109ff379e5dcdf17ec) is 8.0M, max 76.9M, 68.9M free.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-journald.service - Journal Service.
Dec 30 17:21:38 DietPi systemd-random-seed[233]: Kernel entropy pool is not initialized yet, waiting until it is.
Dec 30 17:21:38 DietPi fake-hwclock[206]: Current system time: 2024-12-30 16:21:37
Dec 30 17:21:38 DietPi fake-hwclock[206]: fake-hwclock saved clock information is in the past: 2024-12-30 16:21:23
Dec 30 17:21:38 DietPi fake-hwclock[206]: To set system time to this saved clock anyway, use "force"
Dec 30 17:21:38 DietPi systemd-udevd[238]: Using default interface naming scheme 'v252'.
Dec 30 17:21:38 DietPi systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
Dec 30 17:21:38 DietPi systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
Dec 30 17:21:38 DietPi systemd[1]: Starting ifupdown-pre.service - Helper to synchronize boot up for ifupdown...
Dec 30 17:21:38 DietPi systemd[1]: Mounting tmp.mount - /tmp...
Dec 30 17:21:38 DietPi systemd[1]: Mounting var-log.mount - /var/log...
Dec 30 17:21:38 DietPi systemd[1]: Mounted tmp.mount - /tmp.
Dec 30 17:21:38 DietPi systemd[1]: Mounted var-log.mount - /var/log.
Dec 30 17:21:38 DietPi systemd[1]: Reached target local-fs.target - Local File Systems.
Dec 30 17:21:38 DietPi systemd[1]: Starting console-setup.service - Set console font and keymap...
Dec 30 17:21:38 DietPi systemd[1]: systemd-binfmt.service - Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-journal-flush.service - Flush Journal to Persistent Storage...
Dec 30 17:21:39 DietPi systemd-journald[223]: Runtime Journal (/run/log/journal/b7ef18856b3d4b109ff379e5dcdf17ec) is 8.0M, max 76.9M, 68.9M free.
Dec 30 17:21:39 DietPi systemd-journald[223]: Received client request to flush runtime journal.
Dec 30 17:21:39 DietPi systemd[1]: Finished systemd-journal-flush.service - Flush Journal to Persistent Storage.
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-tmpfiles-setup.service - Create System Files and Directories...
Dec 30 17:21:39 DietPi systemd[1]: Finished console-setup.service - Set console font and keymap.
Dec 30 17:21:39 DietPi systemd[1]: Finished systemd-tmpfiles-setup.service - Create System Files and Directories.
Dec 30 17:21:39 DietPi systemd[1]: Found device dev-ttyS2.device - /dev/ttyS2.
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
Dec 30 17:21:39 DietPi systemd[1]: Starting systemd-update-utmp.service - Record System Boot/Shutdown in UTMP...
Dec 30 17:21:39 DietPi systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device - /sys/subsystem/net/devices/eth0...
Dec 30 17:21:39 DietPi systemd[1]: Finished systemd-update-utmp.service - Record System Boot/Shutdown in UTMP.
Dec 30 17:21:39 DietPi systemd[1]: Found device sys-subsystem-net-devices-eth0.device - /sys/subsystem/net/devices/eth0.
Dec 30 17:21:39 DietPi kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Dec 30 17:21:39 DietPi systemd[1]: Started systemd-timesyncd.service - Network Time Synchronization.
Dec 30 17:21:39 DietPi systemd[1]: Reached target sysinit.target - System Initialization.
Dec 30 17:21:39 DietPi systemd[1]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of Temporary Directories.
Dec 30 17:21:39 DietPi systemd[1]: Reached target time-set.target - System Time Set.
Dec 30 17:21:39 DietPi systemd[1]: Started dpkg-db-backup.timer - Daily dpkg database backup timer.
Dec 30 17:21:39 DietPi systemd[1]: Started fstrim.timer - Discard unused blocks once a week.
Dec 30 17:21:39 DietPi systemd[1]: Reached target timers.target - Timer Units.
Dec 30 17:21:39 DietPi systemd[1]: Reached target usb-gadget.target - Hardware activated USB gadget.
Dec 30 17:21:39 DietPi systemd[1]: systemd-pcrphase-sysinit.service - TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Dec 30 17:21:39 DietPi systemd[1]: Reached target basic.target - Basic System.
Dec 30 17:21:39 DietPi kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Dec 30 17:21:39 DietPi kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Dec 30 17:21:39 DietPi systemd[1]: Started cron.service - Regular background program processing daemon.
Dec 30 17:21:39 DietPi systemd[1]: Starting dietpi-ramlog.service - DietPi-RAMlog...
Dec 30 17:21:39 DietPi systemd[1]: systemd-pcrphase.service - TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Dec 30 17:21:39 DietPi kernel: Intel(R) Wireless WiFi driver for Linux
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Detected crf-id 0x0, cnv-id 0x0 wfpm id 0x0
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: PCI dev 095a/5410, rev=0x210, rfid=0xd55555d5
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 7265
Dec 30 17:21:39 DietPi cron[295]: (CRON) INFO (pidfile fd = 3)
Dec 30 17:21:39 DietPi cron[295]: (CRON) INFO (Running @reboot jobs)
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: Found debug configuration: 0
Dec 30 17:21:39 DietPi kernel: iwlwifi 0000:01:00.0: loaded firmware version 29.f2390aa8.0 7265D-29.ucode op_mode iwlmvm
Dec 30 17:21:39 DietPi kernel: mc: Linux media interface: v0.10
Dec 30 17:21:40 DietPi kernel: input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey.5.auto/input/input0
Dec 30 17:21:40 DietPi kernel: videodev: Linux video capture interface: v2.00
Dec 30 17:21:40 DietPi systemd[1]: Finished dietpi-ramlog.service - DietPi-RAMlog.
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Allocated 0x00400000 bytes for firmware monitor.
Dec 30 17:21:40 DietPi systemd[1]: Starting dietpi-preboot.service - DietPi-PreBoot...
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: base HW address: c8:21:58:b7:a7:b9, OTP minor version: 0x0
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: will run requests pump with realtime priority
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Registers crypto algos
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register ecb(aes) as ecb-aes-rk2
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register cbc(aes) as cbc-aes-rk2
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register xts(aes) as xts-aes-rk2
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register md5 as rk2-md5 3
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha1 as rk2-sha1 4
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha256 as rk2-sha256 5
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha384 as rk2-sha384 6
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sha512 as rk2-sha512 7
Dec 30 17:21:40 DietPi kernel: rk2-crypto fe380000.crypto: Register sm3 as rk2-sm3 8
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: clock rate = 594000000
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: bus_clock rate = 500000000
Dec 30 17:21:40 DietPi kernel: rockchip-rga fdeb0000.rga: HW Version: 0x03.02
Dec 30 17:21:40 DietPi kernel: rockchip-rga fdeb0000.rga: Registered rockchip-rga as /dev/video0
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,00000400
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
Dec 30 17:21:40 DietPi kernel: panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
Dec 30 17:21:40 DietPi kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Dec 30 17:21:40 DietPi kernel: rockchip_vdec2: module is from the staging directory, the quality is unknown, you have been warned.
Dec 30 17:21:40 DietPi kernel: [drm] Initialized panfrost 1.2.0 for fde60000.gpu on minor 1
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdea0000.video-codec: Adding to iommu group 1
Dec 30 17:21:40 DietPi kernel: random: crng init done
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdea0000.video-codec: registered rockchip,rk3328-vpu-dec as /dev/video2
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdee0000.video-codec: Adding to iommu group 2
Dec 30 17:21:40 DietPi kernel: hantro-vpu fdee0000.video-codec: registered rockchip,rk3568-vepu-enc as /dev/video3
Dec 30 17:21:40 DietPi kernel: Registered IR keymap rc-empty
Dec 30 17:21:40 DietPi kernel: rc rc0: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0
Dec 30 17:21:40 DietPi kernel: rc rc0: lirc_dev: driver gpio_ir_recv registered at minor = 0, raw IR receiver, no transmitter
Dec 30 17:21:40 DietPi kernel: input: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0/input1
Dec 30 17:21:40 DietPi systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]:  DietPi-CPU_set
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]: ─────────────────────────────────────────────────────
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]:  Mode: Applying CPU governor settings: schedutil
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]: [ INFO ] DietPi-CPU_set | Setting CPU frequency limits : Max = Disabled MHz | Min = Disabled MHz
Dec 30 17:21:40 DietPi systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Dec 30 17:21:40 DietPi systemd[1]: systemd-machine-id-commit.service - Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Dec 30 17:21:40 DietPi DietPi-PreBoot[324]: [  OK  ] DietPi-CPU_set | Applied CPU governor settings: schedutil
Dec 30 17:21:40 DietPi systemd[1]: Finished dietpi-preboot.service - DietPi-PreBoot.
Dec 30 17:21:40 DietPi systemd[1]: Listening on systemd-rfkill.socket - Load/Save RF Kill Switch Status /dev/rfkill Watch.
Dec 30 17:21:40 DietPi systemd[1]: Starting systemd-rfkill.service - Load/Save RF Kill Switch Status...
Dec 30 17:21:40 DietPi systemd[1]: Started systemd-rfkill.service - Load/Save RF Kill Switch Status.
Dec 30 17:21:40 DietPi systemd[1]: Reached target sound.target - Sound Card.
Dec 30 17:21:40 DietPi systemd[1]: Expecting device sys-subsystem-net-devices-wlan0.device - /sys/subsystem/net/devices/wlan0...
Dec 30 17:21:40 DietPi systemd[1]: Found device sys-subsystem-net-devices-wlan0.device - Wireless 7265 (Dual Band Wireless-AC 7265 [Stone Peak 2 AC]).
Dec 30 17:21:40 DietPi systemd[1]: Finished ifupdown-pre.service - Helper to synchronize boot up for ifupdown.
Dec 30 17:21:40 DietPi systemd[1]: Reached target network-pre.target - Preparation for Network.
Dec 30 17:21:40 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
Dec 30 17:21:40 DietPi systemd[1]: Starting [email protected] - ifup for wlan0...
Dec 30 17:21:40 DietPi systemd[1]: Starting networking.service - Raise network interfaces...
Dec 30 17:21:40 DietPi kernel: warning: `iwconfig' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Dec 30 17:21:40 DietPi dhclient[399]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:40 DietPi ifup[399]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:40 DietPi ifup[399]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:40 DietPi ifup[399]: All rights reserved.
Dec 30 17:21:40 DietPi ifup[399]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:40 DietPi dhclient[399]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:40 DietPi dhclient[399]: All rights reserved.
Dec 30 17:21:40 DietPi dhclient[399]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:40 DietPi dhclient[399]:
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
Dec 30 17:21:40 DietPi wpa_supplicant[398]: Successfully initialized wpa_supplicant
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 30 17:21:40 DietPi kernel: dwmac4: Master AXI performs any burst length
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 30 17:21:40 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
Dec 30 17:21:40 DietPi kernel: iwlwifi 0000:01:00.0: Registered PHC clock: iwlwifi-PTP, with index: 1
Dec 30 17:21:40 DietPi systemd[1]: Finished networking.service - Raise network interfaces.
Dec 30 17:21:40 DietPi dhclient[399]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: Sending on   Socket/fallback
Dec 30 17:21:40 DietPi dhclient[399]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:21:40 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
Dec 30 17:21:40 DietPi dhclient[399]: Sending on   Socket/fallback
Dec 30 17:21:40 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
Dec 30 17:21:41 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Dec 30 17:21:41 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=USER type=COUNTRY alpha2=GB
Dec 30 17:21:41 DietPi dhclient[450]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:41 DietPi ifup[450]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:21:41 DietPi ifup[450]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:41 DietPi ifup[450]: All rights reserved.
Dec 30 17:21:41 DietPi ifup[450]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:41 DietPi dhclient[450]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:21:41 DietPi dhclient[450]: All rights reserved.
Dec 30 17:21:41 DietPi dhclient[450]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:21:41 DietPi dhclient[450]:
Dec 30 17:21:41 DietPi dhclient[450]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: Sending on   Socket/fallback
Dec 30 17:21:41 DietPi dhclient[450]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:21:41 DietPi ifup[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8
Dec 30 17:21:41 DietPi dhclient[450]: Sending on   Socket/fallback
Dec 30 17:21:41 DietPi dhclient[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 8
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=FR
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:21:44 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:21:44 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:21:44 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 2/3)
Dec 30 17:21:44 DietPi kernel: wlan0: authenticated
Dec 30 17:21:44 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:21:44 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:21:44 DietPi kernel: wlan0: associated
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:20 [PTK=CCMP GTK=CCMP]
Dec 30 17:21:44 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:20 completed [id=0 id_str=]
Dec 30 17:21:44 DietPi kernel: wlan0: Limiting TX power to 14 (17 - 3) dBm as advertised by f0:1d:2d:14:25:20
Dec 30 17:21:45 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:21:45 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:21:45 DietPi systemd[1]: systemd-rfkill.service: Deactivated successfully.
Dec 30 17:21:49 DietPi dhclient[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15
Dec 30 17:21:49 DietPi ifup[450]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 15
Dec 30 17:21:49 DietPi dhclient[450]: DHCPOFFER of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi ifup[450]: DHCPOFFER of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi ifup[450]: DHCPREQUEST for 192.168.75.115 on wlan0 to 255.255.255.255 port 67
Dec 30 17:21:49 DietPi dhclient[450]: DHCPREQUEST for 192.168.75.115 on wlan0 to 255.255.255.255 port 67
Dec 30 17:21:49 DietPi dhclient[450]: DHCPACK of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi ifup[450]: DHCPACK of 192.168.75.115 from 192.168.254.30
Dec 30 17:21:49 DietPi dhclient[450]: bound to 192.168.75.115 -- renewal in 11114 seconds.
Dec 30 17:21:49 DietPi ifup[450]: bound to 192.168.75.115 -- renewal in 11114 seconds.
Dec 30 17:21:49 DietPi systemd[1]: Finished [email protected] - ifup for wlan0.
Dec 30 17:21:55 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:21:55 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:22:05 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 12
Dec 30 17:22:05 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 12
Dec 30 17:22:06 DietPi kernel: vdd_npu: disabling
Dec 30 17:22:09 DietPi systemd-timesyncd[289]: Contacted time server 162.159.200.123:123 (2.debian.pool.ntp.org).
Dec 30 17:22:09 DietPi systemd-timesyncd[289]: Initial clock synchronization to Mon 2024-12-30 16:22:09.206058 GMT.
Dec 30 17:22:17 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
Dec 30 17:22:17 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
Dec 30 17:22:32 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
Dec 30 17:22:32 DietPi ifup[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
Dec 30 17:22:38 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:22:41 DietPi dhclient[399]: No DHCPOFFERS received.
Dec 30 17:22:41 DietPi ifup[399]: No DHCPOFFERS received.
Dec 30 17:22:41 DietPi ifup[399]: No working leases in persistent database - sleeping.
Dec 30 17:22:41 DietPi dhclient[399]: No working leases in persistent database - sleeping.
Dec 30 17:22:41 DietPi systemd[1]: Finished [email protected] - ifup for eth0.
Dec 30 17:22:41 DietPi systemd[1]: Reached target network.target - Network.
Dec 30 17:22:41 DietPi systemd[1]: Reached target network-online.target - Network is Online.
Dec 30 17:22:41 DietPi systemd[1]: Started dietpi-postboot.service - DietPi-PostBoot.
Dec 30 17:22:41 DietPi systemd[1]: Started dropbear.service - Lightweight SSH server.
Dec 30 17:22:41 DietPi systemd[1]: Starting systemd-user-sessions.service - Permit User Sessions...
Dec 30 17:22:41 DietPi dropbear[512]: [512] Dec 30 16:22:41 Failed loading /etc/dropbear/dropbear_dss_host_key
Dec 30 17:22:41 DietPi dropbear[512]: [512] Dec 30 16:22:41 Not backgrounding
Dec 30 17:22:41 DietPi systemd[1]: Finished systemd-user-sessions.service - Permit User Sessions.
Dec 30 17:22:41 DietPi systemd[1]: Started [email protected] - Getty on tty1.
Dec 30 17:22:41 DietPi systemd[1]: Started [email protected] - Serial Getty on ttyS2.
Dec 30 17:22:41 DietPi systemd[1]: Reached target getty.target - Login Prompts.
Dec 30 17:22:41 DietPi systemd[1]: Reached target multi-user.target - Multi-User System.
Dec 30 17:22:41 DietPi systemd[1]: Reached target graphical.target - Graphical Interface.
Dec 30 17:22:41 DietPi systemd[1]: Starting systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP...
Dec 30 17:22:41 DietPi systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
Dec 30 17:22:41 DietPi systemd[1]: Finished systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP.
Dec 30 17:22:41 DietPi systemd[1]: Startup finished in 4.371s (kernel) + 1min 5.378s (userspace) = 1min 9.749s.
Dec 30 17:22:41 DietPi systemd[1]: Stopping systemd-timesyncd.service - Network Time Synchronization...
Dec 30 17:22:41 DietPi systemd[1]: systemd-timesyncd.service: Deactivated successfully.
Dec 30 17:22:41 DietPi systemd[1]: Stopped systemd-timesyncd.service - Network Time Synchronization.
Dec 30 17:22:46 DietPi kernel: sysrq: HELP : loglevel(0-9) reboot(b) crash(c) terminate-all-tasks(e) memory-full-oom-kill(f) kill-all-tasks(i) thaw-filesystems(j) sak(k) show-backtrace-all-active-cpus(l) show-memory-usage(m) nice-all-RT-tasks(n) poweroff(o) show-registers(p) show-all-timers(q) unraw(r) sync(s) show-task-states(t) unmount(u) show-blocked-tasks(w) dump-ftrace-buffer(z) replay-kernel-logs(R)
Dec 30 17:22:46 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:22:54 DietPi login[515]: pam_unix(login:session): session opened for user root(uid=0) by LOGIN(uid=0)
Dec 30 17:22:54 DietPi login[1075]: ROOT LOGIN  on '/dev/ttyS2'
Dec 30 17:23:21 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 100Mbps/Full - flow control off
Dec 30 17:23:40 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:23:50 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:04 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:09 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:13 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:17 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:18 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:21 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:24 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:25 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:26 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:29 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:33 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:36 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:39 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:41 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:54 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:56 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:24:58 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:07 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:14 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:18 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:19 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:24 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:28 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:32 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:25:35 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:06 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:12 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Dec 30 17:26:16 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:20 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:22 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
Dec 30 17:26:23 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:26 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:27 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 10
Dec 30 17:26:28 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:29 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:19, missed_beacons_since_rx:1
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:20, missed_beacons_since_rx:2
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:21, missed_beacons_since_rx:3
Dec 30 17:26:29 DietPi kernel: wlan0: Connection to AP f0:1d:2d:14:25:20 lost
Dec 30 17:26:29 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=4 locally_generated=1
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:26:29 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:23, missed_beacons_since_rx:1
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:26:30 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:26:30 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:26:30 DietPi kernel: wlan0: authenticated
Dec 30 17:26:30 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:26:30 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=1)
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:26:30 DietPi kernel: wlan0: associated
Dec 30 17:26:30 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:26:30 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:26:37 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
Dec 30 17:26:49 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 30 17:26:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Dec 30 17:26:52 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 19
Dec 30 17:26:53 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 30 17:27:12 DietPi dhclient[399]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
Dec 30 17:27:12 DietPi dhclient[399]: DHCPOFFER of 192.168.75.118 from 192.168.254.30
Dec 30 17:27:12 DietPi dhclient[399]: DHCPREQUEST for 192.168.75.118 on eth0 to 255.255.255.255 port 67
Dec 30 17:27:12 DietPi dhclient[399]: DHCPACK of 192.168.75.118 from 192.168.254.30
Dec 30 17:27:12 DietPi dhclient[399]: bound to 192.168.75.118 -- renewal in 11650 seconds.
Dec 30 17:27:44 DietPi systemd[1]: Reloading.
Dec 30 17:27:45 DietPi systemd[1]: Stopping [email protected] - ifup for eth0...
Dec 30 17:27:45 DietPi ifdown[2130]: RTNETLINK answers: No such process
Dec 30 17:27:45 DietPi ifdown[2132]: Error: ipv4: Address not found.
Dec 30 17:27:45 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Dec 30 17:27:45 DietPi dhclient[399]: receive_packet failed on eth0: Network is down
Dec 30 17:27:45 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:27:45 DietPi systemd[1]: Stopped [email protected] - ifup for eth0.
Dec 30 17:27:45 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
Dec 30 17:27:45 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 30 17:27:46 DietPi kernel: dwmac4: Master AXI performs any burst length
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 30 17:27:46 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
Dec 30 17:27:46 DietPi ifup[2161]: RTNETLINK answers: File exists
Dec 30 17:27:46 DietPi ifup[2144]: ifup: failed to bring up eth0
Dec 30 17:27:46 DietPi systemd[1]: [email protected]: Main process exited, code=exited, status=1/FAILURE
Dec 30 17:27:46 DietPi systemd[1]: [email protected]: Failed with result 'exit-code'.
Dec 30 17:27:46 DietPi systemd[1]: Failed to start [email protected] - ifup for eth0.
Dec 30 17:27:46 DietPi systemd[1]: Stopping [email protected] - ifup for wlan0...
Dec 30 17:27:46 DietPi dhclient[2176]: Killed old client process
Dec 30 17:27:46 DietPi ifdown[2176]: Killed old client process
Dec 30 17:27:47 DietPi dhclient[2176]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifdown[2176]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifdown[2176]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi ifdown[2176]: All rights reserved.
Dec 30 17:27:47 DietPi ifdown[2176]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2176]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi dhclient[2176]: All rights reserved.
Dec 30 17:27:47 DietPi dhclient[2176]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2176]:
Dec 30 17:27:47 DietPi dhclient[2176]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi ifdown[2176]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi ifdown[2176]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi ifdown[2176]: Sending on   Socket/fallback
Dec 30 17:27:47 DietPi dhclient[2176]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:47 DietPi dhclient[2176]: Sending on   Socket/fallback
Dec 30 17:27:47 DietPi dhclient[2176]: DHCPRELEASE of 192.168.75.115 on wlan0 to 192.168.254.30 port 67
Dec 30 17:27:47 DietPi ifdown[2176]: DHCPRELEASE of 192.168.75.115 on wlan0 to 192.168.254.30 port 67
Dec 30 17:27:47 DietPi kernel: wlan0: deauthenticating from f0:1d:2d:14:25:2f by local choice (Reason: 3=DEAUTH_LEAVING)
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=3 locally_generated=1
Dec 30 17:27:47 DietPi wpa_supplicant[445]: BSSID f0:1d:2d:14:25:2f ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:27:47 DietPi wpa_supplicant[445]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: nl80211: deinit ifname=p2p-dev-wlan0 disabled_11b_rates=0
Dec 30 17:27:47 DietPi wpa_supplicant[445]: p2p-dev-wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:27:47 DietPi wpa_supplicant[445]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Dec 30 17:27:47 DietPi wpa_supplicant[445]: wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:27:47 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:27:47 DietPi systemd[1]: Stopped [email protected] - ifup for wlan0.
Dec 30 17:27:47 DietPi systemd[1]: Starting [email protected] - ifup for wlan0...
Dec 30 17:27:47 DietPi wpa_supplicant[2211]: Successfully initialized wpa_supplicant
Dec 30 17:27:47 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:27:47 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:27:47 DietPi kernel: iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
Dec 30 17:27:47 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Dec 30 17:27:47 DietPi dhclient[2219]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifup[2219]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:27:47 DietPi ifup[2219]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi ifup[2219]: All rights reserved.
Dec 30 17:27:47 DietPi ifup[2219]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2219]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:27:47 DietPi dhclient[2219]: All rights reserved.
Dec 30 17:27:47 DietPi dhclient[2219]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:27:47 DietPi dhclient[2219]:
Dec 30 17:27:48 DietPi dhclient[2219]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: Sending on   Socket/fallback
Dec 30 17:27:48 DietPi dhclient[2219]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:27:48 DietPi ifup[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:27:48 DietPi dhclient[2219]: Sending on   Socket/fallback
Dec 30 17:27:48 DietPi dhclient[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:27:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=FR
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:27:51 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:27:51 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:27:51 DietPi kernel: wlan0: authenticated
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:27:51 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:27:51 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:27:51 DietPi kernel: wlan0: associated
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:20 [PTK=CCMP GTK=CCMP]
Dec 30 17:27:51 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:20 completed [id=0 id_str=]
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12
Dec 30 17:27:52 DietPi ifup[2219]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 12
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi ifup[2219]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi ifup[2219]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:27:52 DietPi dhclient[2219]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi ifup[2219]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:27:52 DietPi dhclient[2219]: bound to 192.168.75.215 -- renewal in 13853 seconds.
Dec 30 17:27:52 DietPi ifup[2219]: bound to 192.168.75.215 -- renewal in 13853 seconds.
Dec 30 17:27:53 DietPi systemd[1]: Finished [email protected] - ifup for wlan0.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:19, missed_beacons_since_rx:1
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:20, missed_beacons_since_rx:2
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed beacons exceeds threshold, but receiving data. Stay connected, Expect bugs.
Dec 30 17:27:53 DietPi kernel: iwlwifi 0000:01:00.0: missed_beacons:21, missed_beacons_since_rx:3
Dec 30 17:27:53 DietPi kernel: wlan0: Connection to AP f0:1d:2d:14:25:20 lost
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=4 locally_generated=1
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: BSSID f0:1d:2d:14:25:20 ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:27:54 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:27:54 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:27:54 DietPi kernel: wlan0: authenticated
Dec 30 17:27:54 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:27:54 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=3)
Dec 30 17:27:54 DietPi kernel: wlan0: associated
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:27:54 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:27:54 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:28:26 DietPi systemd[1]: Reloading.
Dec 30 17:28:27 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
Dec 30 17:28:27 DietPi dhclient[2476]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:27 DietPi ifup[2476]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:27 DietPi ifup[2476]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:27 DietPi ifup[2476]: All rights reserved.
Dec 30 17:28:27 DietPi ifup[2476]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:27 DietPi dhclient[2476]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:27 DietPi dhclient[2476]: All rights reserved.
Dec 30 17:28:27 DietPi dhclient[2476]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:27 DietPi dhclient[2476]:
Dec 30 17:28:27 DietPi dhclient[2476]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: Sending on   Socket/fallback
Dec 30 17:28:27 DietPi dhclient[2476]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Dec 30 17:28:27 DietPi ifup[2476]: DHCPREQUEST for 192.168.75.118 on eth0 to 255.255.255.255 port 67
Dec 30 17:28:27 DietPi dhclient[2476]: Sending on   Socket/fallback
Dec 30 17:28:27 DietPi dhclient[2476]: DHCPREQUEST for 192.168.75.118 on eth0 to 255.255.255.255 port 67
Dec 30 17:28:27 DietPi dhclient[2476]: DHCPACK of 192.168.75.118 from 192.168.254.30
Dec 30 17:28:27 DietPi ifup[2476]: DHCPACK of 192.168.75.118 from 192.168.254.30
Dec 30 17:28:27 DietPi dhclient[2476]: bound to 192.168.75.118 -- renewal in 10804 seconds.
Dec 30 17:28:27 DietPi ifup[2476]: bound to 192.168.75.118 -- renewal in 10804 seconds.
Dec 30 17:28:27 DietPi systemd[1]: Finished [email protected] - ifup for eth0.
Dec 30 17:28:27 DietPi systemd[1]: Stopping [email protected] - ifup for wlan0...
Dec 30 17:28:27 DietPi dhclient[2526]: Killed old client process
Dec 30 17:28:27 DietPi ifdown[2526]: Killed old client process
Dec 30 17:28:28 DietPi dhclient[2526]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:28 DietPi ifdown[2526]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:28 DietPi ifdown[2526]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:28 DietPi ifdown[2526]: All rights reserved.
Dec 30 17:28:28 DietPi ifdown[2526]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:28 DietPi dhclient[2526]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:28 DietPi dhclient[2526]: All rights reserved.
Dec 30 17:28:28 DietPi dhclient[2526]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:28 DietPi dhclient[2526]:
Dec 30 17:28:28 DietPi dhclient[2526]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi ifdown[2526]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi ifdown[2526]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi ifdown[2526]: Sending on   Socket/fallback
Dec 30 17:28:28 DietPi dhclient[2526]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:28 DietPi dhclient[2526]: Sending on   Socket/fallback
Dec 30 17:28:28 DietPi dhclient[2526]: DHCPRELEASE of 192.168.75.215 on wlan0 to 192.168.75.116 port 67
Dec 30 17:28:28 DietPi ifdown[2526]: DHCPRELEASE of 192.168.75.215 on wlan0 to 192.168.75.116 port 67
Dec 30 17:28:28 DietPi kernel: wlan0: deauthenticating from f0:1d:2d:14:25:2f by local choice (Reason: 3=DEAUTH_LEAVING)
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=3 locally_generated=1
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: nl80211: deinit ifname=p2p-dev-wlan0 disabled_11b_rates=0
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: p2p-dev-wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
Dec 30 17:28:28 DietPi wpa_supplicant[2214]: wlan0: CTRL-EVENT-TERMINATING
Dec 30 17:28:28 DietPi systemd[1]: [email protected]: Deactivated successfully.
Dec 30 17:28:28 DietPi systemd[1]: Stopped [email protected] - ifup for wlan0.
Dec 30 17:28:28 DietPi systemd[1]: Starting [email protected] - ifup for wlan0...
Dec 30 17:28:28 DietPi wpa_supplicant[2561]: Successfully initialized wpa_supplicant
Dec 30 17:28:28 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:28:29 DietPi kernel: iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
Dec 30 17:28:29 DietPi kernel: iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
Dec 30 17:28:29 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Dec 30 17:28:29 DietPi dhclient[2569]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:29 DietPi ifup[2569]: Internet Systems Consortium DHCP Client 4.4.3-P1
Dec 30 17:28:29 DietPi ifup[2569]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:29 DietPi ifup[2569]: All rights reserved.
Dec 30 17:28:29 DietPi ifup[2569]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:29 DietPi dhclient[2569]: Copyright 2004-2022 Internet Systems Consortium.
Dec 30 17:28:29 DietPi dhclient[2569]: All rights reserved.
Dec 30 17:28:29 DietPi dhclient[2569]: For info, please visit https://www.isc.org/software/dhcp/
Dec 30 17:28:29 DietPi dhclient[2569]:
Dec 30 17:28:29 DietPi dhclient[2569]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: Listening on LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: Sending on   Socket/fallback
Dec 30 17:28:29 DietPi dhclient[2569]: Sending on   LPF/wlan0/c8:21:58:b7:a7:b9
Dec 30 17:28:29 DietPi ifup[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:28:29 DietPi dhclient[2569]: Sending on   Socket/fallback
Dec 30 17:28:29 DietPi dhclient[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 5
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=FR
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:28:32 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:28:32 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:28:32 DietPi kernel: wlan0: authenticated
Dec 30 17:28:32 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:28:32 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:28:32 DietPi kernel: wlan0: associated
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:28:32 DietPi kernel: wlan0: Limiting TX power to 14 (17 - 3) dBm as advertised by f0:1d:2d:14:25:20
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:20 [PTK=CCMP GTK=CCMP]
Dec 30 17:28:32 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:20 completed [id=0 id_str=]
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 13
Dec 30 17:28:34 DietPi ifup[2569]: DHCPDISCOVER on wlan0 to 255.255.255.255 port 67 interval 13
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi ifup[2569]: DHCPOFFER of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi ifup[2569]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPREQUEST for 192.168.75.215 on wlan0 to 255.255.255.255 port 67
Dec 30 17:28:34 DietPi dhclient[2569]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi ifup[2569]: DHCPACK of 192.168.75.215 from 192.168.75.116
Dec 30 17:28:34 DietPi dhclient[2569]: bound to 192.168.75.215 -- renewal in 13553 seconds.
Dec 30 17:28:34 DietPi ifup[2569]: bound to 192.168.75.215 -- renewal in 13553 seconds.
Dec 30 17:28:34 DietPi systemd[1]: Finished [email protected] - ifup for wlan0.
Dec 30 17:28:38 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:28:40 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-BEACON-LOSS
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=4 locally_generated=1
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:20 ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:28:41 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:28:41 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:28:41 DietPi kernel: wlan0: authenticated
Dec 30 17:28:41 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:28:41 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=1)
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:28:41 DietPi kernel: wlan0: associated
Dec 30 17:28:41 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:28:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:31:41 DietPi kernel: wlan0: deauthenticated from f0:1d:2d:14:25:2f (Reason: 1=UNSPECIFIED)
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=1
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:2f ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:31:41 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:20 (local address=c8:21:58:b7:a7:b9)
Dec 30 17:31:41 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:20 (SSID='s2bnet-2023' freq=2437 MHz)
Dec 30 17:31:41 DietPi kernel: wlan0: authenticated
Dec 30 17:31:41 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:20 (try 1/3)
Dec 30 17:31:41 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:20 (capab=0x1431 status=0 aid=1)
Dec 30 17:31:41 DietPi kernel: wlan0: associated
Dec 30 17:31:41 DietPi kernel: wlan0: deauthenticated from f0:1d:2d:14:25:20 (Reason: 12=<unknown>)
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:20
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:20 reason=12
Dec 30 17:31:41 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:20 ignore list count incremented to 3, ignoring for 60 seconds
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:31:42 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:31:42 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:31:42 DietPi kernel: wlan0: authenticated
Dec 30 17:31:42 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:31:42 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=3)
Dec 30 17:31:42 DietPi kernel: wlan0: associated
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:31:42 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f
Dec 30 17:31:42 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:34:01 DietPi kernel: wlan0: disassociated from f0:1d:2d:14:25:2f (Reason: 1=UNSPECIFIED)
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-DISCONNECTED bssid=f0:1d:2d:14:25:2f reason=1
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: BSSID f0:1d:2d:14:25:2f ignore list count incremented to 2, ignoring for 10 seconds
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: SME: Trying to authenticate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:34:01 DietPi kernel: wlan0: authenticate with f0:1d:2d:14:25:2f (local address=c8:21:58:b7:a7:b9)
Dec 30 17:34:01 DietPi kernel: wlan0: send auth to f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: Trying to associate with f0:1d:2d:14:25:2f (SSID='s2bnet-2023' freq=5580 MHz)
Dec 30 17:34:01 DietPi kernel: wlan0: authenticated
Dec 30 17:34:01 DietPi kernel: wlan0: associate with f0:1d:2d:14:25:2f (try 1/3)
Dec 30 17:34:01 DietPi kernel: wlan0: RX AssocResp from f0:1d:2d:14:25:2f (capab=0x1111 status=0 aid=3)
Dec 30 17:34:01 DietPi kernel: wlan0: associated
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: Associated with f0:1d:2d:14:25:2f
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: WPA: Key negotiation completed with f0:1d:2d:14:25:2f [PTK=CCMP GTK=CCMP]
Dec 30 17:34:01 DietPi wpa_supplicant[2564]: wlan0: CTRL-EVENT-CONNECTED - Connection to f0:1d:2d:14:25:2f completed [id=0 id_str=]
Dec 30 17:34:01 DietPi kernel: wlan0: Limiting TX power to 17 (20 - 3) dBm as advertised by f0:1d:2d:14:25:2f

@Joulinar
Copy link
Collaborator

dietpi-config is not supporting 2 ethernet adapter. This is a known limitation actually. 2nd NIC adapter would need to be configured manually.

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

@Joulinar : I wasn't aware of that, my bad.

Report:

Below I've got the two NICs plugged to my router, only eth0 aka eth2 physically is up. Even with a fresh restart eth1 aka eth1 physically stays down.

root@DietPi:~# ethtool eth0
Settings for eth0:
        Supported ports: [ TP    MII ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Supported pause frame use: Symmetric Receive-only
        Supports auto-negotiation: Yes
        Supported FEC modes: Not reported
        Advertised link modes:  10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Full
        Advertised pause frame use: Symmetric Receive-only
        Advertised auto-negotiation: Yes
        Advertised FEC modes: Not reported
        Link partner advertised link modes:  10baseT/Half 10baseT/Full
                                             100baseT/Half 100baseT/Full
                                             1000baseT/Full
        Link partner advertised pause frame use: Symmetric Receive-only
        Link partner advertised auto-negotiation: Yes
        Link partner advertised FEC modes: Not reported
        Speed: 1000Mb/s
        Duplex: Full
        Auto-negotiation: on
        master-slave cfg: preferred slave
        master-slave status: slave
        Port: Twisted Pair
        PHYAD: 1
        Transceiver: external
        MDI-X: Unknown
        Supports Wake-on: ug
        Wake-on: d
        Current message level: 0x0000003f (63)
                               drv probe link timer ifdown ifup
        Link detected: yes
root@DietPi:~# ethtool eth1
Settings for eth1:
        Supported ports: [ TP    AUI     MII     FIBRE   BNC     Backplane ]
        Supported link modes:   10baseT/Half 10baseT/Full
                                100baseT/Half 100baseT/Full
                                1000baseT/Half 1000baseT/Full
                                1000baseKX/Full
                                1000baseX/Full
                                100baseT1/Full
                                1000baseT1/Full
                                100baseFX/Half 100baseFX/Full
                                10baseT1L/Full
                                10baseT1S/Full
                                10baseT1S/Half
                                10baseT1S_P2MP/Half
        Supported pause frame use: Symmetric Receive-only
        Supports auto-negotiation: Yes
        Supported FEC modes: Not reported
        Advertised link modes:  Not reported
        Advertised pause frame use: No
        Advertised auto-negotiation: No
        Advertised FEC modes: Not reported
        Speed: Unknown!
        Duplex: Half
        Auto-negotiation: off
        Port: MII
        PHYAD: 0
        Transceiver: internal
        Supports Wake-on: ug
        Wake-on: d
        Current message level: 0x0000003f (63)
                               drv probe link timer ifdown ifup
        Link detected: no
 

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

Here's more info :
dmesg :

root@DietPi:~# dmesg
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.000000] Linux version 6.12.7-current-rockchip64 (build@armbian) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 SMP PREEMPT Fri Dec 27 13:02:20 UTC 2024
[    0.000000] KASLR disabled due to lack of seed
[    0.000000] Machine model: Radxa ROCK 3A
[    0.000000] efi: UEFI not found.
[    0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000001ffffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x1fefd8080-0x1fefda7ff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000200000-0x00000000efffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[    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.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 34 pages/cpu s98968 r8192 d32104 u139264
[    0.000000] pcpu-alloc: s98968 r8192 d32104 u139264 alloc=34*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: root=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0 androidboot.fwver=ddr-v1.21-2d653b3476,bl31-v1.44,uboot-rmbian-201-10/09/2024
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] Fallback order for Node 0: 0
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2031104
[    0.000000] Policy zone: Normal
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: mapped [mem 0x00000000e4000000-0x00000000e8000000] (64MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    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=4
[    0.000000] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.000000] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 320 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: MBI range [296:319]
[    0.000000] GICv3: Using MBI frame 0x00000000fd410000
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[    0.000000] ITS: No ITS available, not enabling LPIs
[    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.001453] Console: colour dummy device 80x25
[    0.001475] printk: legacy console [tty1] enabled
[    0.002424] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[    0.002471] pid_max: default: 32768 minimum: 301
[    0.002602] LSM: initializing lsm=capability,yama,apparmor
[    0.002718] Yama: becoming mindful.
[    0.003061] AppArmor: AppArmor initialized
[    0.003260] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.003343] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.028348] rcu: Hierarchical SRCU implementation.
[    0.028397] rcu:     Max phase no-delay instances is 1000.
[    0.028908] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.032686] EFI services will not be available.
[    0.035781] smp: Bringing up secondary CPUs ...
[    0.047972] Detected VIPT I-cache on CPU1
[    0.048080] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[    0.048140] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    0.060034] Detected VIPT I-cache on CPU2
[    0.060132] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[    0.060183] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    0.072101] Detected VIPT I-cache on CPU3
[    0.072200] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[    0.072247] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    0.072435] smp: Brought up 1 node, 4 CPUs
[    0.072586] SMP: Total of 4 processors activated.
[    0.072606] CPU: All CPU(s) started at EL2
[    0.072626] CPU features: detected: 32-bit EL0 Support
[    0.072644] CPU features: detected: 32-bit EL1 Support
[    0.072667] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.072695] CPU features: detected: Common not Private translations
[    0.072715] CPU features: detected: CRC32 instructions
[    0.072740] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.072760] CPU features: detected: LSE atomic instructions
[    0.072780] CPU features: detected: Privileged Access Never
[    0.072799] CPU features: detected: RAS Extension Support
[    0.072822] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.072923] alternatives: applying system-wide alternatives
[    0.077802] Memory: 7721564K/8124416K available (16384K kernel code, 2760K rwdata, 5212K rodata, 4928K init, 787K bss, 266900K reserved, 131072K cma-reserved)
[    0.080766] devtmpfs: initialized
[    0.104907] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.104998] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.109265] 25184 pages in range for non-PLT usage
[    0.109293] 516704 pages in range for PLT usage
[    0.109793] pinctrl core: initialized pinctrl subsystem
[    0.110593] DMI not present or invalid.
[    0.115742] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.117915] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.119187] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.120401] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.120520] audit: initializing netlink subsys (disabled)
[    0.120895] audit: type=2000 audit(0.116:1): state=initialized audit_enabled=0 res=1
[    0.124340] thermal_sys: Registered thermal governor 'fair_share'
[    0.124355] thermal_sys: Registered thermal governor 'bang_bang'
[    0.124384] thermal_sys: Registered thermal governor 'step_wise'
[    0.124406] thermal_sys: Registered thermal governor 'user_space'
[    0.124532] cpuidle: using governor menu
[    0.124914] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.125157] ASID allocator initialised with 65536 entries
[    0.125597] Serial: AMBA PL011 UART driver
[    0.143152] /vop@fe040000: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.143305] /hdmi@fe0a0000: Fixed dependency cycle(s) with /vop@fe040000
[    0.148928] /pcie@fe260000: Fixed dependency cycle(s) with /pcie@fe260000/legacy-interrupt-controller
[    0.171453] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.172127] rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
[    0.172643] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.173077] rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
[    0.173515] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.174012] rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
[    0.174674] gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.175103] rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
[    0.175641] gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.176052] rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
[    0.180706] /pcie@fe280000: Fixed dependency cycle(s) with /pcie@fe280000/legacy-interrupt-controller
[    0.181301] /hdmi@fe0a0000: Fixed dependency cycle(s) with /hdmi-con
[    0.181430] /hdmi-con: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.190337] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.190388] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.190414] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.190435] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.190458] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.190478] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.190499] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.190518] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.192586] cryptd: max_cpu_qlen set to 1000
[    0.260145] raid6: neonx8   gen()  1408 MB/s
[    0.328286] raid6: neonx4   gen()  1430 MB/s
[    0.396418] raid6: neonx2   gen()  1319 MB/s
[    0.464562] raid6: neonx1   gen()  1071 MB/s
[    0.532691] raid6: int64x8  gen()   911 MB/s
[    0.600842] raid6: int64x4  gen()  1048 MB/s
[    0.668978] raid6: int64x2  gen()   936 MB/s
[    0.737125] raid6: int64x1  gen()   687 MB/s
[    0.737153] raid6: using algorithm neonx4 gen() 1430 MB/s
[    0.805258] raid6: .... xor() 1101 MB/s, rmw enabled
[    0.805284] raid6: using neon recovery algorithm
[    0.806863] iommu: Default domain type: Translated
[    0.806903] iommu: DMA domain TLB invalidation policy: strict mode
[    0.807881] SCSI subsystem initialized
[    0.808212] libata version 3.00 loaded.
[    0.808549] usbcore: registered new interface driver usbfs
[    0.808620] usbcore: registered new interface driver hub
[    0.808689] usbcore: registered new device driver usb
[    0.809449] pps_core: LinuxPPS API ver. 1 registered
[    0.809478] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.809526] PTP clock support registered
[    0.809598] EDAC MC: Ver: 3.0.0
[    0.810178] scmi_core: SCMI protocol bus registered
[    0.812054] NetLabel: Initializing
[    0.812091] NetLabel:  domain hash size = 128
[    0.812112] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.812226] NetLabel:  unlabeled traffic allowed by default
[    0.812552] vgaarb: loaded
[    0.813292] clocksource: Switched to clocksource arch_sys_counter
[    0.814081] VFS: Disk quotas dquot_6.6.0
[    0.814174] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.815040] AppArmor: AppArmor Filesystem Enabled
[    0.830528] NET: Registered PF_INET protocol family
[    0.831235] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.839093] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.839376] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.839596] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.840810] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.842850] TCP: Hash tables configured (established 65536 bind 65536)
[    0.843142] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.843375] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.843839] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.843911] NET: Registered PF_XDP protocol family
[    0.843951] PCI: CLS 0 bytes, default 64
[    0.844373] Trying to unpack rootfs image as initramfs...
[    0.854865] kvm [1]: nv: 554 coarse grained trap handlers
[    0.855558] kvm [1]: IPA Size Limit: 40 bits
[    0.855669] kvm [1]: GICv3: no GICV resource entry
[    0.855702] kvm [1]: disabling GICv2 emulation
[    0.855766] kvm [1]: GIC system register CPU interface enabled
[    0.855827] kvm [1]: vgic interrupt IRQ9
[    0.855908] kvm [1]: VHE mode initialized successfully
[    0.859175] Initialise system trusted keyrings
[    0.859303] Key type blacklist registered
[    0.859771] workingset: timestamp_bits=44 max_order=21 bucket_order=0
[    0.859875] zbud: loaded
[    0.860742] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.861665] fuse: init (API version 7.41)
[    0.864758] integrity: Platform Keyring initialized
[    0.937826] xor: measuring software checksum speed
[    0.939790]    8regs           :  1717 MB/sec
[    0.941972]    32regs          :  1528 MB/sec
[    0.943911]    arm64_neon      :  1727 MB/sec
[    0.943937] xor: using function: arm64_neon (1727 MB/sec)
[    0.943971] Key type asymmetric registered
[    0.943992] Asymmetric key parser 'x509' registered
[    0.944189] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.944626] io scheduler mq-deadline registered
[    0.944659] io scheduler kyber registered
[    0.944748] io scheduler bfq registered
[    1.831874] Freeing initrd memory: 13744K
[    1.835872] ledtrig-cpu: registered to indicate activity on CPUs
[    1.843948] dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.844008] dma-pl330 fe530000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.847709] dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.847770] dma-pl330 fe550000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.851378] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    1.857843] fe650000.serial: ttyS1 at MMIO 0xfe650000 (irq = 25, base_baud = 1500000) is a 16550A
[    1.858397] serial serial0: tty port ttyS1 registered
[    1.860263] fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 26, base_baud = 1500000) is a 16550A
[    1.860545] printk: legacy console [ttyS2] enabled
[    1.981011] Serial: AMBA driver
[    1.994502] loop: module loaded
[    1.996794] Key type psk registered
[    2.003010] thunder_xcv, ver 1.0
[    2.003395] thunder_bgx, ver 1.0
[    2.003740] nicpf, ver 1.0
[    2.008297] usbcore: registered new interface driver usb-storage
[    2.011545] mousedev: PS/2 mouse device common for all mice
[    2.012777] i2c_dev: i2c /dev entries driver
[    2.028371] rtc-hym8563 5-0051: registered as rtc0
[    2.029894] rtc-hym8563 5-0051: setting system clock to 2024-12-31T01:15:12 UTC (1735607712)
[    2.038467] sdhci: Secure Digital Host Controller Interface driver
[    2.039058] sdhci: Copyright(c) Pierre Ossman
[    2.039513] Synopsys Designware Multimedia Card Interface Driver
[    2.041175] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.044413] arm-scmi arm-scmi.1.auto: Using scmi_smc_transport
[    2.044969] arm-scmi arm-scmi.1.auto: SCMI max-rx-timeout: 30ms
[    2.045785] scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
[    2.046881] arm-scmi arm-scmi.1.auto: SCMI Notifications - Core Enabled.
[    2.047564] arm-scmi arm-scmi.1.auto: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    2.050455] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.051458] hid: raw HID events driver (C) Jiri Kosina
[    2.052056] usbcore: registered new interface driver usbhid
[    2.052574] usbhid: USB HID core driver
[    2.054737] rockchip-dfi fe230000.dfi: dfi initialized, dram type: 0x8, channels: 1
[    2.057633] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) counters available
[    2.060356] NET: Registered PF_INET6 protocol family
[    2.121139] Segment Routing with IPv6
[    2.121640] In-situ OAM (IOAM) with IPv6
[    2.122152] NET: Registered PF_PACKET protocol family
[    2.122913] 8021q: 802.1Q VLAN Support v1.8
[    2.123375] Key type dns_resolver registered
[    2.137234] registered taskstats version 1
[    2.137884] Loading compiled-in X.509 certificates
[    2.157705] zswap: loaded using pool zstd/z3fold
[    2.158574] Demotion targets for Node 0: null
[    2.159493] Key type .fscrypt registered
[    2.159867] Key type fscrypt-provisioning registered
[    2.163949] Btrfs loaded, zoned=yes, fsverity=yes
[    2.164662] Key type encrypted registered
[    2.165055] AppArmor: AppArmor sha256 policy hashing enabled
[    2.212251] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[    2.322249] dwmmc_rockchip fe000000.mmc: IDMAC supports 32-bit address mode.
[    2.322649] dwmmc_rockchip fe2b0000.mmc: IDMAC supports 32-bit address mode.
[    2.323007] dwmmc_rockchip fe000000.mmc: Using internal DMA controller.
[    2.323613] dwmmc_rockchip fe2b0000.mmc: Using internal DMA controller.
[    2.324191] dwmmc_rockchip fe000000.mmc: Version ID is 270a
[    2.324772] dwmmc_rockchip fe2b0000.mmc: Version ID is 270a
[    2.324847] dwmmc_rockchip fe000000.mmc: DW MMC controller at irq 64,32 bit host data width,256 deep fifo
[    2.325403] dwmmc_rockchip fe2b0000.mmc: DW MMC controller at irq 65,32 bit host data width,256 deep fifo
[    2.327380] dwmmc_rockchip fe000000.mmc: allocated mmc-pwrseq
[    2.328102] mmc_host mmc2: card is non-removable.
[    2.329867] dwmmc_rockchip fe2b0000.mmc: Got CD GPIO
[    2.336779] rockchip-dw-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
[    2.337611] rockchip-dw-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
[    2.338472] rockchip-dw-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
[    2.339293] rockchip-dw-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0040000000
[    2.340382] rockchip-dw-pcie 3c0000000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
[    2.345900] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.361330] mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
[    2.449398] mmc_host mmc2: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.462161] mmc0: new HS200 MMC card at address 0001
[    2.463753] mmcblk0: mmc0:0001 A3A561 57.6 GiB
[    2.469646]  mmcblk0: p1
[    2.470806] mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB
[    2.473658] mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB
[    2.476201] mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (243:0)
[    2.537338] rockchip-dw-pcie 3c0000000.pcie: PCIe Gen.1 x1 link up
[    2.538631] rockchip-dw-pcie 3c0000000.pcie: PCI host bridge to bus 0000:00
[    2.539299] pci_bus 0000:00: root bus resource [bus 00-0f]
[    2.539812] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf4100000-0xf41fffff])
[    2.540677] pci_bus 0000:00: root bus resource [mem 0xf4200000-0xf5ffffff]
[    2.541392] pci_bus 0000:00: root bus resource [mem 0x300000000-0x33fffffff] (bus address [0x40000000-0x7fffffff])
[    2.542376] pci 0000:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
[    2.543076] pci 0000:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
[    2.543644] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    2.544131] pci 0000:00:00.0:   bridge window [io  0x0000-0x0fff]
[    2.544688] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    2.545345] pci 0000:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    2.546135] pci 0000:00:00.0: supports D1 D2
[    2.546538] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[    2.556725] pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
[    2.557987] pci 0000:01:00.0: [8086:095a] type 00 class 0x028000 PCIe Endpoint
[    2.558794] pci 0000:01:00.0: BAR 0 [mem 0x00000000-0x00001fff 64bit]
[    2.560116] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    2.569560] pci 0000:00:00.0: bridge window [mem 0xf4200000-0xf42fffff]: assigned
[    2.570260] pci 0000:00:00.0: ROM [mem 0xf4300000-0xf430ffff pref]: assigned
[    2.570914] pci 0000:01:00.0: BAR 0 [mem 0xf4200000-0xf4201fff 64bit]: assigned
[    2.571641] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[    2.572130] pci 0000:00:00.0:   bridge window [mem 0xf4200000-0xf42fffff]
[    2.572756] pci_bus 0000:00: resource 4 [io  0x0000-0xfffff]
[    2.573311] pci_bus 0000:00: resource 5 [mem 0xf4200000-0xf5ffffff]
[    2.573891] pci_bus 0000:00: resource 6 [mem 0x300000000-0x33fffffff]
[    2.574480] pci_bus 0000:01: resource 1 [mem 0xf4200000-0xf42fffff]
[    2.577974] pcieport 0000:00:00.0: PME: Signaling with IRQ 70
[    2.579035] pcieport 0000:00:00.0: AER: enabled with IRQ 70
[    2.600301] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller
[    2.600860] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 1
[    2.601824] xhci-hcd xhci-hcd.8.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000808002000010
[    2.602753] xhci-hcd xhci-hcd.8.auto: irq 71, io mem 0xfcc00000
[    2.603522] xhci-hcd xhci-hcd.8.auto: xHCI Host Controller
[    2.604046] xhci-hcd xhci-hcd.8.auto: new USB bus registered, assigned bus number 2
[    2.604756] xhci-hcd xhci-hcd.8.auto: Host supports USB 3.0 SuperSpeed
[    2.605683] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.606445] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.607106] usb usb1: Product: xHCI Host Controller
[    2.607555] usb usb1: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.608194] usb usb1: SerialNumber: xhci-hcd.8.auto
[    2.609490] hub 1-0:1.0: USB hub found
[    2.609905] hub 1-0:1.0: 1 port detected
[    2.610882] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.611849] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[    2.612609] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.613269] usb usb2: Product: xHCI Host Controller
[    2.613926] usb usb2: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.614568] usb usb2: SerialNumber: xhci-hcd.8.auto
[    2.615706] hub 2-0:1.0: USB hub found
[    2.616118] hub 2-0:1.0: 1 port detected
[    2.621114] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller
[    2.621765] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus number 3
[    2.622676] xhci-hcd xhci-hcd.9.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000808002000010
[    2.623597] xhci-hcd xhci-hcd.9.auto: irq 72, io mem 0xfd000000
[    2.624368] xhci-hcd xhci-hcd.9.auto: xHCI Host Controller
[    2.624891] xhci-hcd xhci-hcd.9.auto: new USB bus registered, assigned bus number 4
[    2.625636] xhci-hcd xhci-hcd.9.auto: Host supports USB 3.0 SuperSpeed
[    2.626551] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.627314] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.627973] usb usb3: Product: xHCI Host Controller
[    2.628422] usb usb3: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.629061] usb usb3: SerialNumber: xhci-hcd.9.auto
[    2.630298] hub 3-0:1.0: USB hub found
[    2.630714] hub 3-0:1.0: 1 port detected
[    2.631702] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.632667] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.12
[    2.633541] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.634209] usb usb4: Product: xHCI Host Controller
[    2.634660] usb usb4: Manufacturer: Linux 6.12.7-current-rockchip64 xhci-hcd
[    2.635301] usb usb4: SerialNumber: xhci-hcd.9.auto
[    2.636454] hub 4-0:1.0: USB hub found
[    2.636867] hub 4-0:1.0: 1 port detected
[    2.640038] WCN: marlin_init entry!
[    2.641110] of_cfs_init
[    2.641364] ehci-platform fd800000.usb: EHCI Host Controller
[    2.641402] ohci-platform fd840000.usb: Generic Platform OHCI controller
[    2.641415] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 5
[    2.641461] of_cfs_init: OK
[    2.641463] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 6
[    2.641659] ohci-platform fd840000.usb: irq 75, io mem 0xfd840000
[    2.641834] ehci-platform fd880000.usb: EHCI Host Controller
[    2.641868] ohci-platform fd8c0000.usb: Generic Platform OHCI controller
[    2.641869] ehci-platform fd880000.usb: new USB bus registered, assigned bus number 7
[    2.641901] ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 8
[    2.642036] ehci-platform fd880000.usb: irq 74, io mem 0xfd880000
[    2.642057] ohci-platform fd8c0000.usb: irq 76, io mem 0xfd8c0000
[    2.642095] ehci-platform fd800000.usb: irq 73, io mem 0xfd800000
[    2.642827] clk: Disabling unused clocks
[    2.650615] PM: genpd: Disabling unused power domains
[    2.653358] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[    2.654320] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.655084] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.655744] usb usb5: Product: EHCI Host Controller
[    2.656194] usb usb5: Manufacturer: Linux 6.12.7-current-rockchip64 ehci_hcd
[    2.656833] usb usb5: SerialNumber: fd800000.usb
[    2.658072] hub 5-0:1.0: USB hub found
[    2.658487] hub 5-0:1.0: 1 port detected
[    2.669317] ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
[    2.670229] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.670993] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.671653] usb usb7: Product: EHCI Host Controller
[    2.672103] usb usb7: Manufacturer: Linux 6.12.7-current-rockchip64 ehci_hcd
[    2.672743] usb usb7: SerialNumber: fd880000.usb
[    2.673946] hub 7-0:1.0: USB hub found
[    2.674361] hub 7-0:1.0: 1 port detected
[    2.701643] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
[    2.702413] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.703073] usb usb6: Product: Generic Platform OHCI controller
[    2.703615] usb usb6: Manufacturer: Linux 6.12.7-current-rockchip64 ohci_hcd
[    2.704255] usb usb6: SerialNumber: fd840000.usb
[    2.705542] hub 6-0:1.0: USB hub found
[    2.705959] hub 6-0:1.0: 1 port detected
[    2.707154] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
[    2.707920] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.708582] usb usb8: Product: Generic Platform OHCI controller
[    2.709123] usb usb8: Manufacturer: Linux 6.12.7-current-rockchip64 ohci_hcd
[    2.709808] usb usb8: SerialNumber: fd8c0000.usb
[    2.710985] hub 8-0:1.0: USB hub found
[    2.711397] hub 8-0:1.0: 1 port detected
[    2.714829] Freeing unused kernel memory: 4928K
[    2.715466] Run /init as init process
[    2.715816]   with arguments:
[    2.715826]     /init
[    2.715836]   with environment:
[    2.715845]     HOME=/
[    2.715853]     TERM=linux
[    2.881367] usb 3-1: new low-speed USB device number 2 using xhci-hcd
[    2.905369] usb 5-1: new high-speed USB device number 2 using ehci-platform
[    3.021522] usb 3-1: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[    3.022308] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.022970] usb 3-1: Product: USB Optical Mouse
[    3.023397] usb 3-1: Manufacturer: PixArt
[    3.046045] input: PixArt USB Optical Mouse as /devices/platform/fd000000.usb/xhci-hcd.9.auto/usb3/3-1/3-1:1.0/0003:093A:2510.0001/input/input0
[    3.048660] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-xhci-hcd.9.auto-1/input0
[    3.050804] usb 5-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
[    3.051585] usb 5-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.052569] usb 5-1: Product: USB 2.0 Hub
[    3.055128] hub 5-1:1.0: USB hub found
[    3.055700] hub 5-1:1.0: 4 ports detected
[    3.453372] usb 5-1.1: new low-speed USB device number 3 using ehci-platform
[    3.669514] rk808-rtc rk808-rtc.5.auto: registered as rtc1
[    3.670734] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    3.671345] rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
[    3.672978] usb 5-1.1: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 1.10
[    3.672997] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    3.673016] rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
[    3.673039] usb 5-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.673061] rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
[    3.673078] usb 5-1.1: Product: Wired Keyboard 400
[    3.673101] rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
[    3.673114] usb 5-1.1: Manufacturer: Microsoft
[    3.673128] rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
[    3.679950] input: Microsoft Wired Keyboard 400 as /devices/platform/fd800000.usb/usb5/5-1/5-1.1/5-1.1:1.0/0003:045E:0752.0002/input/input1
[    3.681663] rockchip-vop2 fe040000.vop: Adding to iommu group 0
[    3.686391] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    3.687105] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    3.692553] rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops [rockchipdrm])
[    3.694721] rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
[    3.696697] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.697452] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[    3.698739] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[    3.698873] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    3.700365] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    3.701073] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    3.701757] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    3.702503] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    3.703026] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.704161] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.704846] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    3.705543] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[    3.802530] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[    3.811875] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops [rockchipdrm])
[    3.827850] phy phy-fe8c0000.phy.7: lane number 0, val 1
[    3.829040] rockchip-dw-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
[    3.830478] rockchip-dw-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
[    3.831332] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
[    3.832145] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0040000000
[    3.834425] [drm] Initialized rockchip 1.0.0 for display-subsystem on minor 0
[    3.840568] rockchip-dw-pcie 3c0800000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
[    3.953749] hid-generic 0003:045E:0752.0002: input,hidraw1: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-fd800000.usb-1.1/input0
[    4.041454] rockchip-dw-pcie 3c0800000.pcie: PCIe Gen.3 x2 link up
[    4.042606] Console: switching to colour frame buffer device 240x67
[    4.053572] rockchip-dw-pcie 3c0800000.pcie: PCI host bridge to bus 0002:00
[    4.053615] pci_bus 0002:00: root bus resource [bus 00-0f]
[    4.053633] pci_bus 0002:00: root bus resource [io  0x100000-0x1fffff] (bus address [0xf0100000-0xf01fffff])
[    4.053644] pci_bus 0002:00: root bus resource [mem 0xf0200000-0xf1ffffff]
[    4.053656] pci_bus 0002:00: root bus resource [mem 0x380000000-0x3bfffffff] (bus address [0x40000000-0x7fffffff])
[    4.053711] pci 0002:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
[    4.053739] pci 0002:00:00.0: BAR 0 [mem 0x00000000-0x3fffffff]
[    4.053754] pci 0002:00:00.0: BAR 1 [mem 0x00000000-0x3fffffff]
[    4.053767] pci 0002:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
[    4.053778] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    4.053792] pci 0002:00:00.0:   bridge window [io  0x0000-0x0fff]
[    4.053802] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    4.053816] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.053902] pci 0002:00:00.0: supports D1 D2
[    4.053912] pci 0002:00:00.0: PME# supported from D0 D1 D3hot
[    4.082015] pci_bus 0002:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
[    4.082158] pci 0002:01:00.0: [10ec:5765] type 00 class 0x010802 PCIe Endpoint
[    4.082263] pci 0002:01:00.0: BAR 0 [mem 0x00000000-0x00003fff 64bit]
[    4.082386] pci 0002:01:00.0: BAR 5 [mem 0x00000000-0x00001fff]
[    4.083109] pci 0002:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    4.089576] pci 0002:00:00.0: BAR 0 [mem 0x380000000-0x3bfffffff]: assigned
[    4.089612] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: can't assign; no space
[    4.089624] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: failed to assign
[    4.089640] pci 0002:00:00.0: bridge window [mem 0xf0200000-0xf02fffff]: assigned
[    4.089653] pci 0002:00:00.0: ROM [mem 0xf0300000-0xf030ffff pref]: assigned
[    4.089671] pci 0002:01:00.0: BAR 0 [mem 0xf0200000-0xf0203fff 64bit]: assigned
[    4.089724] pci 0002:01:00.0: BAR 5 [mem 0xf0204000-0xf0205fff]: assigned
[    4.089748] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    4.089762] pci 0002:00:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
[    4.089778] pci_bus 0002:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    4.089787] pci_bus 0002:00: resource 4 [io  0x100000-0x1fffff]
[    4.089797] pci_bus 0002:00: resource 5 [mem 0xf0200000-0xf1ffffff]
[    4.089806] pci_bus 0002:00: resource 6 [mem 0x380000000-0x3bfffffff]
[    4.089817] pci_bus 0002:01: resource 1 [mem 0xf0200000-0xf02fffff]
[    4.093546] pcieport 0002:00:00.0: PME: Signaling with IRQ 82
[    4.094245] pcieport 0002:00:00.0: AER: enabled with IRQ 82
[    4.095219] nvme nvme0: pci function 0002:01:00.0
[    4.095262] nvme 0002:01:00.0: enabling device (0000 -> 0002)
[    4.126731] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[    4.242935] hwmon hwmon2: temp1_input not attached to any thermal zone
[    4.286193] nvme nvme0: allocated 64 MiB host memory buffer.
[    4.330408] nvme nvme0: 4/0/0 default/read/poll queues
[    4.353107] nvme nvme0: Ignoring bogus Namespace Identifiers
[    4.786681] EXT4-fs (mmcblk0p1): mounted filesystem 463087c8-1d8f-4075-b7b1-4b86c641e99e ro with ordered data mode. Quota mode: none.
[    5.233861] systemd[1]: Inserted module 'autofs4'
[    5.289796] systemd[1]: systemd 252.31-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)
[    5.303292] systemd[1]: Detected architecture arm64.
[    5.328897] systemd[1]: Hostname set to <DietPi>.
[    5.545043] dw-apb-uart fe660000.serial: forbid DMA for kernel console
[    6.029949] systemd[1]: Queued start job for default target graphical.target.
[    6.068311] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    6.083513] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    6.098206] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[    6.112564] systemd[1]: Created slice user.slice - User and Session Slice.
[    6.125035] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[    6.138021] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    6.151875] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    6.165486] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
[    6.178563] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    6.191726] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    6.205180] systemd[1]: Reached target paths.target - Path Units.
[    6.218156] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    6.231275] systemd[1]: Reached target slices.target - Slice Units.
[    6.244408] systemd[1]: Reached target swap.target - Swaps.
[    6.257579] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    6.272081] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[    6.286470] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    6.302275] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    6.317837] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    6.333680] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    6.354701] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    6.370314] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    6.409823] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    6.432337] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    6.454800] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    6.477176] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    6.505383] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
[    6.531294] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[    6.555099] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    6.580046] systemd[1]: Starting [email protected] - Load Kernel Module configfs...
[    6.604805] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[    6.628844] systemd[1]: Starting [email protected] - Load Kernel Module drm...
[    6.638028] device-mapper: uevent: version 1.0.3
[    6.641808] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
[    6.694251] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    6.718081] systemd[1]: Starting [email protected] - Load Kernel Module fuse...
[    6.741224] systemd[1]: Starting [email protected] - Load Kernel Module loop...
[    6.757342] 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).
[    6.778015] systemd[1]: Starting systemd-journald.service - Journal Service...
[    6.838255] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    6.863050] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    6.887852] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    6.924509] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    6.941880] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    6.959653] EXT4-fs (mmcblk0p1): re-mounted 463087c8-1d8f-4075-b7b1-4b86c641e99e r/w. Quota mode: none.
[    6.960972] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    6.990626] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    7.008099] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
[    7.026797] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[    7.044535] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    7.062551] systemd[1]: [email protected]: Deactivated successfully.
[    7.071567] systemd[1]: Finished [email protected] - Load Kernel Module configfs.
[    7.089962] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    7.099423] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[    7.117058] systemd[1]: [email protected]: Deactivated successfully.
[    7.126289] systemd[1]: Finished [email protected] - Load Kernel Module drm.
[    7.143949] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    7.153104] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[    7.171687] systemd[1]: [email protected]: Deactivated successfully.
[    7.180875] systemd[1]: Finished [email protected] - Load Kernel Module fuse.
[    7.198470] systemd[1]: [email protected]: Deactivated successfully.
[    7.207245] systemd[1]: Finished [email protected] - Load Kernel Module loop.
[    7.224311] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    7.241930] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[    7.301844] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[    7.324363] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[    7.340490] systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[    7.349394] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[    7.390261] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[    7.406756] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[    7.422558] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[    7.448566] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[    7.477758] systemd[1]: Started systemd-journald.service - Journal Service.
[    7.906053] systemd-journald[238]: Received client request to flush runtime journal.
[    9.445710] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    9.494682] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    9.495249] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    9.538831] mc: Linux media interface: v0.10
[    9.547134] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey.4.auto/input/input2
[    9.549529] Intel(R) Wireless WiFi driver for Linux
[    9.550187] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
[    9.568828] iwlwifi 0000:01:00.0: Detected crf-id 0x0, cnv-id 0x0 wfpm id 0x0
[    9.568854] iwlwifi 0000:01:00.0: PCI dev 095a/5410, rev=0x210, rfid=0xd55555d5
[    9.568867] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 7265
[    9.675379] iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM
[    9.675407] iwlwifi 0000:01:00.0: Found debug configuration: 0
[    9.676388] iwlwifi 0000:01:00.0: loaded firmware version 29.f2390aa8.0 7265D-29.ucode op_mode iwlmvm
[    9.693976] panfrost fde60000.gpu: clock rate = 594000000
[    9.694019] panfrost fde60000.gpu: bus_clock rate = 500000000
[    9.720548] panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
[    9.720571] panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,00000400
[    9.720578] panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
[    9.720586] panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
[    9.774184] random: crng init done
[    9.780206] videodev: Linux video capture interface: v2.00
[    9.802258] [drm] Initialized panfrost 1.2.0 for fde60000.gpu on minor 1
[    9.830561] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[    9.832789] iwlwifi 0000:01:00.0: Allocated 0x00400000 bytes for firmware monitor.
[    9.838003] iwlwifi 0000:01:00.0: base HW address: c8:21:58:b7:a7:b9, OTP minor version: 0x0
[    9.867414] rk2-crypto fe380000.crypto: will run requests pump with realtime priority
[    9.867505] rk2-crypto fe380000.crypto: Registers crypto algos
[    9.867514] rk2-crypto fe380000.crypto: Register ecb(aes) as ecb-aes-rk2
[    9.867574] rk2-crypto fe380000.crypto: Register cbc(aes) as cbc-aes-rk2
[    9.867594] rk2-crypto fe380000.crypto: Register xts(aes) as xts-aes-rk2
[    9.867609] rk2-crypto fe380000.crypto: Register md5 as rk2-md5 3
[    9.867625] rk2-crypto fe380000.crypto: Register sha1 as rk2-sha1 4
[    9.867641] rk2-crypto fe380000.crypto: Register sha256 as rk2-sha256 5
[    9.867656] rk2-crypto fe380000.crypto: Register sha384 as rk2-sha384 6
[    9.867671] rk2-crypto fe380000.crypto: Register sha512 as rk2-sha512 7
[    9.867685] rk2-crypto fe380000.crypto: Register sm3 as rk2-sm3 8
[    9.873093] rockchip-rga fdeb0000.rga: HW Version: 0x03.02
[    9.874354] rockchip-rga fdeb0000.rga: Registered rockchip-rga as /dev/video0
[    9.889853] rockchip_vdec2: module is from the staging directory, the quality is unknown, you have been warned.
[    9.904068] Bluetooth: Core ver 2.22
[    9.929355] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[    9.931250] NET: Registered PF_BLUETOOTH protocol family
[    9.931270] Bluetooth: HCI device and connection manager initialized
[    9.931289] Bluetooth: HCI socket layer initialized
[    9.931297] Bluetooth: L2CAP socket layer initialized
[    9.931325] Bluetooth: SCO socket layer initialized
[    9.947047] hantro-vpu fdea0000.video-codec: Adding to iommu group 1
[    9.986139] hantro-vpu fdea0000.video-codec: registered rockchip,rk3328-vpu-dec as /dev/video2
[    9.988976] Bluetooth: HCI UART driver ver 2.3
[    9.989000] Bluetooth: HCI UART protocol H4 registered
[    9.989005] Bluetooth: HCI UART protocol BCSP registered
[    9.989085] Bluetooth: HCI UART protocol LL registered
[    9.989092] Bluetooth: HCI UART protocol ATH3K registered
[    9.990970] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    9.991270] Bluetooth: HCI UART protocol Intel registered
[    9.992509] Bluetooth: HCI UART protocol Broadcom registered
[    9.992572] Bluetooth: HCI UART protocol QCA registered
[    9.992579] Bluetooth: HCI UART protocol AG6XX registered
[    9.992614] Bluetooth: HCI UART protocol Marvell registered
[   10.009940] hantro-vpu fdee0000.video-codec: Adding to iommu group 2
[   10.011966] hantro-vpu fdee0000.video-codec: registered rockchip,rk3568-vepu-enc as /dev/video3
[   10.137558] of_dma_request_slave_channel: dma-names property of node '/serial@fe650000' missing or empty
[   10.137590] dw-apb-uart fe650000.serial: failed to request DMA
[   10.503229] warning: `iwconfig' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[   10.613001] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   10.692501] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   10.694648] iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
[   10.699262] iwlwifi 0000:01:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[   11.969457] mmc_host mmc2: Bus speed (slot 0) = 375000Hz (slot req 375000Hz, actual 375000HZ div = 0)
[   12.265402] Bluetooth: hci0: command 0x0c03 tx timeout
[   12.273731] Bluetooth: hci0: BCM: Reset failed (-110)
[   14.420584] wlan0: authenticate with 3a:07:16:e3:53:80 (local address=c8:21:58:b7:a7:b9)
[   14.421613] wlan0: send auth to 3a:07:16:e3:53:80 (try 1/3)
[   14.454150] wlan0: authenticated
[   14.457441] wlan0: associate with 3a:07:16:e3:53:80 (try 1/3)
[   14.462986] wlan0: RX AssocResp from 3a:07:16:e3:53:80 (capab=0x1111 status=0 aid=3)
[   14.466868] wlan0: associated
[   14.468851] wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by 3a:07:16:e3:53:80

lsmod :

root@DietPi:~# lsmod
Module                  Size  Used by
snd_soc_hdmi_codec     20480  1
hci_uart              135168  0
btqca                  20480  1 hci_uart
btrtl                  28672  1 hci_uart
btintel                49152  1 hci_uart
crct10dif_ce           12288  1
btbcm                  20480  1 hci_uart
hantro_vpu            249856  0
bluetooth             663552  6 btrtl,btqca,btintel,hci_uart,btbcm
rockchip_vdec2         28672  0
display_connector      16384  0
snd_soc_simple_card    20480  0
rockchip_rga           20480  0
snd_soc_rk817          40960  1
snd_soc_simple_card_utils    24576  1 snd_soc_simple_card
v4l2_vp9               20480  1 hantro_vpu
v4l2_jpeg              12288  1 hantro_vpu
snd_soc_rockchip_i2s_tdm    20480  4
v4l2_h264              16384  2 hantro_vpu,rockchip_vdec2
videobuf2_dma_contig    20480  2 hantro_vpu,rockchip_vdec2
snd_soc_core          204800  5 snd_soc_rockchip_i2s_tdm,snd_soc_hdmi_codec,snd_soc_rk817,snd_soc_simple_card_utils,snd_soc_simple_card
videobuf2_dma_sg       16384  1 rockchip_rga
v4l2_mem2mem           24576  3 hantro_vpu,rockchip_rga,rockchip_vdec2
videobuf2_memops       16384  2 videobuf2_dma_contig,videobuf2_dma_sg
snd_compress           24576  1 snd_soc_core
snd_pcm_dmaengine      12288  1 snd_soc_core
videobuf2_v4l2         20480  4 hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
rk_crypto2             36864  0
snd_pcm               106496  5 snd_soc_hdmi_codec,snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_pcm_dmaengine
iwlmvm                401408  0
mac80211              880640  1 iwlmvm
rockchip_rng           12288  0
sm3_generic            12288  1 rk_crypto2
snd_timer              36864  1 snd_pcm
dw_hdmi_cec            12288  0
rng_core               16384  1 rockchip_rng
libarc4                12288  1 mac80211
sm3                    20480  1 sm3_generic
videodev              237568  5 videobuf2_v4l2,hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
panfrost               73728  0
snd                    77824  5 snd_soc_hdmi_codec,snd_timer,snd_compress,snd_soc_core,snd_pcm
dw_hdmi_i2s_audio      12288  0
rk817_charger          20480  0
videobuf2_common       53248  8 videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,videobuf2_dma_sg,rockchip_vdec2,v4l2_mem2mem,videobuf2_memops
soundcore              12288  1 snd
iwlwifi               290816  1 iwlmvm
gpu_sched              36864  1 panfrost
mc                     53248  6 videodev,videobuf2_v4l2,hantro_vpu,videobuf2_common,rockchip_vdec2,v4l2_mem2mem
rk805_pwrkey           12288  0
drm_shmem_helper       20480  1 panfrost
cfg80211              815104  3 iwlmvm,iwlwifi,mac80211
rfkill                 24576  6 iwlmvm,bluetooth,cfg80211
cpufreq_dt             16384  0
binfmt_misc            20480  1
dm_mod                126976  0
ip_tables              28672  0
x_tables               36864  1 ip_tables
autofs4                45056  2
phy_rockchip_snps_pcie3    16384  1
spi_rockchip_sfc       16384  0
realtek                36864  0
rockchipdrm           176128  0
dwmac_rk               28672  0
stmmac_platform        20480  1 dwmac_rk
drm_dma_helper         16384  2 rockchipdrm
dw_hdmi_qp             20480  1 rockchipdrm
dw_hdmi                45056  2 dw_hdmi_i2s_audio,rockchipdrm
stmmac                241664  2 stmmac_platform,dwmac_rk
cec                    45056  2 dw_hdmi_cec,dw_hdmi
dw_mipi_dsi            16384  1 rockchipdrm
pcs_xpcs               24576  1 stmmac
rtc_rk808              16384  0
analogix_dp            40960  1 rockchipdrm
drm_display_helper    131072  4 rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm_kms_helper        122880  9 dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm                   442368  13 gpu_sched,drm_kms_helper,dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,panfrost,analogix_dp,dw_hdmi_qp
drm_panel_orientation_quirks    28672  1 drm

from the vendor image :

rock@rock-3b:~$ sudo dmesg
[   11.535537] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[   11.535574] Linux version 5.10.160-18-rk356x (runner@86af808c3373) (aarch64-linux-gnu-gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #425b07550 SMP Thu Oct 12 08:48:55 UTC 2023
[   11.546806] Machine model: Radxa ROCK 3 Model B
[   11.546915] Malformed early option 'earlycon'
[   11.547188] efi: UEFI not found.
[   11.547477] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB
[   11.547505] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
[   11.762442] Zone ranges:
[   11.762458]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[   11.762475]   DMA32    empty
[   11.762485]   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
[   11.762498] Movable zone start for each node
[   11.762503] Early memory node ranges
[   11.762511]   node   0: [mem 0x0000000000200000-0x00000000efffffff]
[   11.762526]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[   11.762538] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[   11.762547] On node 0 totalpages: 2031104
[   11.762557]   DMA zone: 15352 pages used for memmap
[   11.762563]   DMA zone: 0 pages reserved
[   11.762570]   DMA zone: 982528 pages, LIFO batch:63
[   11.762578]   Normal zone: 16384 pages used for memmap
[   11.762585]   Normal zone: 1048576 pages, LIFO batch:63
[   11.829664] cma: Reserved 16 MiB at 0x00000000ef000000
[   11.829806] psci: probing for conduit method from DT.
[   11.829825] psci: PSCIv1.1 detected in firmware.
[   11.829831] psci: Using standard PSCI v0.2 function IDs
[   11.829840] psci: MIGRATE_INFO_TYPE not supported.
[   11.829850] psci: SMC Calling Convention v1.2
[   11.830394] percpu: Embedded 32 pages/cpu s93544 r8192 d29336 u131072
[   11.830457] pcpu-alloc: s93544 r8192 d29336 u131072 alloc=32*4096
[   11.830470] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[   11.830653] Detected VIPT I-cache on CPU0
[   11.830729] CPU features: detected: GIC system register CPU interface
[   11.830738] CPU features: detected: Virtualization Host Extensions
[   11.830754] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[   11.830774] alternatives: patching kernel code
[   11.831302] Built 1 zonelists, mobility grouping on.  Total pages: 1999368
[   11.831319] Kernel command line: root=UUID=d7611020-2d80-4f32-b67d-5fb55de6949d quiet splash loglevel=4 rw earlycon consoleblank=0 console=tty0 console=ttyFIQ0,1500000n8 console=ttyAML0,115200n8 console=ttyS2,1500000n8 console=ttyS0,1500000n8 coherent_pool=2M irqchip.gicv3_pseudo_nmi=0 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1
[   11.834822] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[   11.836144] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[   11.836155] mem auto-init: stack:off, heap alloc:off, heap free:off
[   11.857319] software IO TLB: mapped [mem 0x00000000e80b7000-0x00000000ec0b7000] (64MB)
[   11.995366] Memory: 7843044K/8124416K available (13632K kernel code, 3132K rwdata, 4932K rodata, 5760K init, 606K bss, 264988K reserved, 16384K cma-reserved)
[   11.995593] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[   11.995651] ftrace: allocating 53289 entries in 209 pages
[   12.133253] ftrace: allocated 209 pages with 4 groups
[   12.133733] rcu: Hierarchical RCU implementation.
[   12.133744] rcu:     RCU event tracing is enabled.
[   12.133752] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[   12.133759]  Rude variant of Tasks RCU enabled.
[   12.133764]  Tracing variant of Tasks RCU enabled.
[   12.133772] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[   12.133778] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[   12.141307] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[   12.144349] GICv3: GIC: Using split EOI/Deactivate mode
[   12.144365] GICv3: 320 SPIs implemented
[   12.144372] GICv3: 0 Extended SPIs implemented
[   12.144431] GICv3: Distributor has no Range Selector support
[   12.144447] GICv3: 16 PPIs implemented
[   12.144496] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[   12.144722] ITS [mem 0xfd440000-0xfd45ffff]
[   12.144830] ITS@0x00000000fd440000: allocated 8192 Devices @410000 (indirect, esz 8, psz 64K, shr 0)
[   12.144885] ITS@0x00000000fd440000: allocated 32768 Interrupt Collections @420000 (flat, esz 2, psz 64K, shr 0)
[   12.144898] ITS: using cache flushing for cmd queue
[   12.145479] GICv3: using LPI property table @0x0000000000430000
[   12.145652] GIC: using cache flushing for LPI property table
[   12.145665] GICv3: CPU0: using allocated LPI pending table @0x0000000000440000
[   12.194537] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[   12.194557] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[   12.194573] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[   12.196494] Console: colour dummy device 80x25
[   12.196556] printk: console [tty0] enabled
[   12.196607] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[   12.196626] pid_max: default: 32768 minimum: 301
[   12.196816] LSM: Security Framework initializing
[   12.196951] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[   12.197002] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[   12.200371] rcu: Hierarchical SRCU implementation.
[   12.201589] Platform MSI: interrupt-controller@fd440000 domain created
[   12.202303] PCI/MSI: /interrupt-controller@fd400000/interrupt-controller@fd440000 domain created
[   12.202797] EFI services will not be available.
[   12.203462] smp: Bringing up secondary CPUs ...
[   12.204721] Detected VIPT I-cache on CPU1
[   12.204780] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[   12.204810] GICv3: CPU1: using allocated LPI pending table @0x0000000000450000
[   12.204887] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[   12.206255] Detected VIPT I-cache on CPU2
[   12.206306] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[   12.206332] GICv3: CPU2: using allocated LPI pending table @0x0000000000460000
[   12.206392] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[   12.207791] Detected VIPT I-cache on CPU3
[   12.207841] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[   12.207866] GICv3: CPU3: using allocated LPI pending table @0x0000000000470000
[   12.207924] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[   12.208125] smp: Brought up 1 node, 4 CPUs
[   12.208147] SMP: Total of 4 processors activated.
[   12.208156] CPU features: detected: Privileged Access Never
[   12.208163] CPU features: detected: User Access Override
[   12.208171] CPU features: detected: 32-bit EL0 Support
[   12.208178] CPU features: detected: Common not Private translations
[   12.208185] CPU features: detected: RAS Extension Support
[   12.208191] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[   12.208198] CPU features: detected: CRC32 instructions
[   12.208205] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[   12.208213] CPU features: detected: 32-bit EL1 Support
[   12.208220] CPU features: detected: RCpc load-acquire (LDAPR)
[   12.208336] CPU: All CPU(s) started at EL2
[   12.212864] devtmpfs: initialized
[   12.254697] Registered cp15_barrier emulation handler
[   12.254725] Registered setend emulation handler
[   12.255045] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[   12.255072] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[   12.256177] pinctrl core: initialized pinctrl subsystem
[   12.256688] regulator-dummy: no parameters, enabled
[   12.257212] DMI not present or invalid.
[   12.258341] NET: Registered protocol family 16
[   12.261671] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[   12.262380] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[   12.262531] audit: initializing netlink subsys (disabled)
[   12.262879] audit: type=2000 audit(0.066:1): state=initialized audit_enabled=0 res=1
[   12.267306] Registered FIQ tty driver
[   12.268063] thermal_sys: Registered thermal governor 'fair_share'
[   12.268074] thermal_sys: Registered thermal governor 'step_wise'
[   12.268081] thermal_sys: Registered thermal governor 'user_space'
[   12.268089] thermal_sys: Registered thermal governor 'power_allocator'
[   12.268833] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[   12.268947] cpuidle: using governor menu
[   12.269792] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[   12.270035] ASID allocator initialised with 65536 entries
[   12.273701] ramoops: dmesg-0 0x20000@0x0000000000110000
[   12.273744] ramoops: console 0x80000@0x0000000000130000
[   12.273774] ramoops: pmsg    0x50000@0x00000000001b0000
[   12.273927] printk: console [ramoops-1] enabled
[   12.273938] pstore: Registered ramoops as persistent store backend
[   12.273947] ramoops: using 0xf0000@0x110000, ecc: 0
[   12.358722] rockchip-gpio fdd60000.gpio0: probed /pinctrl/gpio0@fdd60000
[   12.359808] rockchip-gpio fe740000.gpio1: probed /pinctrl/gpio1@fe740000
[   12.360882] rockchip-gpio fe750000.gpio2: probed /pinctrl/gpio2@fe750000
[   12.362142] rockchip-gpio fe760000.gpio3: probed /pinctrl/gpio3@fe760000
[   12.363240] rockchip-gpio fe770000.gpio4: probed /pinctrl/gpio4@fe770000
[   12.363522] rockchip-pinctrl pinctrl: probed pinctrl
[   12.399471] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[   12.399489] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[   12.399499] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[   12.399509] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[   12.408281] fiq_debugger fiq_debugger.0: IRQ fiq not found
[   12.408333] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[   12.408366] fiq_debugger_probe: could not install nmi irq handler
[   12.408670] printk: console [ttyFIQ0] enabled
[   12.408997] Registered fiq debugger ttyFIQ0
[   12.409910] dc_12v: 12000 mV, enabled
[   12.410249] reg-fixed-voltage dc-12v: dc_12v supplying 12000000uV
[   12.410471] reg-fixed-voltage vcc3v3-sys: Looking up vin-supply from device tree
[   12.410490] vcc3v3_sys: supplied by dc_12v
[   12.410508] dc_12v: could not add device link regulator.2: -ENOENT
[   12.410583] vcc3v3_sys: 3300 mV, enabled
[   12.410894] reg-fixed-voltage vcc3v3-sys: vcc3v3_sys supplying 3300000uV
[   12.411106] reg-fixed-voltage vcc5v0-sys: Looking up vin-supply from device tree
[   12.411125] vcc5v0_sys: supplied by dc_12v
[   12.411142] dc_12v: could not add device link regulator.3: -ENOENT
[   12.411213] vcc5v0_sys: 5000 mV, enabled
[   12.411509] reg-fixed-voltage vcc5v0-sys: vcc5v0_sys supplying 5000000uV
[   12.411997] vcc5v0_host: no parameters, enabled
[   12.412315] reg-fixed-voltage vcc5v0-host-regulator: vcc5v0_host supplying 0uV
[   12.412712] vcc5v0_otg: no parameters, enabled
[   12.413058] reg-fixed-voltage vcc5v0-otg-regulator: vcc5v0_otg supplying 0uV
[   12.413276] reg-fixed-voltage pcie30-avdd0v9: Looking up vin-supply from device tree
[   12.413297] pcie30_avdd0v9: supplied by vcc3v3_sys
[   12.413315] vcc3v3_sys: could not add device link regulator.6: -ENOENT
[   12.413414] pcie30_avdd0v9: 900 mV, enabled
[   12.413700] reg-fixed-voltage pcie30-avdd0v9: pcie30_avdd0v9 supplying 900000uV
[   12.413912] reg-fixed-voltage pcie30-avdd1v8: Looking up vin-supply from device tree
[   12.413932] pcie30_avdd1v8: supplied by vcc3v3_sys
[   12.413949] vcc3v3_sys: could not add device link regulator.7: -ENOENT
[   12.414022] pcie30_avdd1v8: 1800 mV, enabled
[   12.414350] reg-fixed-voltage pcie30-avdd1v8: pcie30_avdd1v8 supplying 1800000uV
[   12.415131] pcie30_3v3: 100 <--> 3300 mV at 3300 mV, enabled
[   12.416124] iommu: Default domain type: Translated
[   12.416506] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vpu-supply from device tree
[   12.416547] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vpu-supply property in node /power-management@fdd90000/power-controller failed
[   12.417528] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rga-supply from device tree
[   12.417568] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rga-supply property in node /power-management@fdd90000/power-controller failed
[   12.419416] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvenc-supply from device tree
[   12.419457] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvenc-supply property in node /power-management@fdd90000/power-controller failed
[   12.420192] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvdec-supply from device tree
[   12.420231] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvdec-supply property in node /power-management@fdd90000/power-controller failed
[   12.422196] SCSI subsystem initialized
[   12.422264] libata version 3.00 loaded.
[   12.422587] usbcore: registered new interface driver usbfs
[   12.422663] usbcore: registered new interface driver hub
[   12.422737] usbcore: registered new device driver usb
[   12.422966] mc: Linux media interface: v0.10
[   12.423035] videodev: Linux video capture interface: v2.00
[   12.423218] pps_core: LinuxPPS API ver. 1 registered
[   12.423228] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[   12.423259] PTP clock support registered
[   12.424454] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[   12.424551] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[   12.429539] rockchip-cpuinfo cpuinfo: SoC            : 35682000
[   12.429558] rockchip-cpuinfo cpuinfo: Serial         : 6cf0ff55b2e2d6ee
[   12.429612] rockchip-cpuinfo cpuinfo: soc_is_rk3566t: 00000000
[   12.431236] clocksource: Switched to clocksource arch_sys_counter
[   13.431581] VFS: Disk quotas dquot_6.6.0
[   13.431676] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[   13.449668] NET: Registered protocol family 2
[   13.450208] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[   13.456928] tcp_listen_portaddr_hash hash table entries: 4096 (order: 5, 163840 bytes, linear)
[   13.457205] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[   13.457738] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[   13.459683] TCP: Hash tables configured (established 65536 bind 65536)
[   13.460256] MPTCP token hash table entries: 8192 (order: 6, 393216 bytes, linear)
[   13.460672] UDP hash table entries: 4096 (order: 6, 393216 bytes, linear)
[   13.461064] UDP-Lite hash table entries: 4096 (order: 6, 393216 bytes, linear)
[   13.461850] NET: Registered protocol family 1
[   13.462891] RPC: Registered named UNIX socket transport module.
[   13.462900] RPC: Registered udp transport module.
[   13.462907] RPC: Registered tcp transport module.
[   13.462913] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   13.464522] PCI: CLS 0 bytes, default 64
[   13.465555] Trying to unpack rootfs image as initramfs...
[   14.169132] Freeing initrd memory: 14128K
[   14.172293] rockchip-thermal fe710000.tsadc: tsadc is probed successfully!
[   14.174455] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available
[   14.176046] kvm [1]: IPA Size Limit: 40 bits
[   14.176076] kvm [1]: GICv3: no GICV resource entry
[   14.176085] kvm [1]: disabling GICv2 emulation
[   14.176092] kvm [1]: GIC system register CPU interface enabled
[   14.176333] kvm [1]: vgic interrupt IRQ9
[   14.176648] kvm [1]: VHE mode initialized successfully
[   14.183972] Initialise system trusted keyrings
[   14.184317] workingset: timestamp_bits=46 max_order=21 bucket_order=0
[   14.195942] NFS: Registering the id_resolver key type
[   14.195993] Key type id_resolver registered
[   14.196001] Key type id_legacy registered
[   14.196150] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[   14.196161] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[   14.198088] Key type asymmetric registered
[   14.198101] Asymmetric key parser 'x509' registered
[   14.198163] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)
[   14.198460] io scheduler mq-deadline registered
[   14.198481] io scheduler kyber registered
[   14.201919] phy phy-fe850000.phy.0: Looking up phy-supply from device tree
[   14.201950] phy phy-fe850000.phy.0: Looking up phy-supply property in node /phy@fe850000 failed
[   14.204218] phy phy-fe8a0000.usb2-phy.1: Looking up phy-supply from device tree
[   14.204254] vcc5v0_host: could not add device link phy-fe8a0000.usb2-phy.1: -ENOENT
[   14.204635] phy phy-fe8a0000.usb2-phy.2: Looking up phy-supply from device tree
[   14.204663] phy phy-fe8a0000.usb2-phy.2: Looking up phy-supply property in node /usb2-phy@fe8a0000/otg-port failed
[   14.204812] phy phy-fe8a0000.usb2-phy.2: Looking up vbus-supply from device tree
[   14.207396] phy phy-fe8b0000.usb2-phy.3: Looking up phy-supply from device tree
[   14.207436] vcc5v0_host: could not add device link phy-fe8b0000.usb2-phy.3: -ENOENT
[   14.207790] phy phy-fe8b0000.usb2-phy.4: Looking up phy-supply from device tree
[   14.207821] vcc5v0_host: could not add device link phy-fe8b0000.usb2-phy.4: -ENOENT
[   14.208179] phy phy-fe8b0000.usb2-phy.4: Looking up vbus-supply from device tree
[   14.208205] phy phy-fe8b0000.usb2-phy.4: Looking up vbus-supply property in node /usb2-phy@fe8b0000/otg-port failed
[   14.212316] phy phy-fe820000.phy.5: Looking up phy-supply from device tree
[   14.212345] phy phy-fe820000.phy.5: Looking up phy-supply property in node /phy@fe820000 failed
[   14.213074] phy phy-fe830000.phy.6: Looking up phy-supply from device tree
[   14.213098] phy phy-fe830000.phy.6: Looking up phy-supply property in node /phy@fe830000 failed
[   14.213715] phy phy-fe840000.phy.7: Looking up phy-supply from device tree
[   14.213737] phy phy-fe840000.phy.7: Looking up phy-supply property in node /phy@fe840000 failed
[   14.216487] rockchip-snps-pcie3-phy fe8c0000.phy: failed to find rockchip,pipe_grf regmap
[   14.216531] phy phy-fe8c0000.phy.8: Looking up phy-supply from device tree
[   14.216553] phy phy-fe8c0000.phy.8: Looking up phy-supply property in node /phy@fe8c0000 failed
[   14.221459] rk-pcie 3c0000000.pcie: invalid prsnt-gpios property in node
[   14.221485] rk-pcie 3c0000000.pcie: Looking up vpcie3v3-supply from device tree
[   14.222270] rk-pcie 3c0800000.pcie: invalid prsnt-gpios property in node
[   14.222294] rk-pcie 3c0800000.pcie: Looking up vpcie3v3-supply from device tree
[   14.222850] rk-pcie 3c0000000.pcie: IRQ msi not found
[   14.222927] rk-pcie 3c0000000.pcie: use outband MSI support
[   14.222939] rk-pcie 3c0000000.pcie: Missing *config* reg space
[   14.222989] rk-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
[   14.223049] rk-pcie 3c0000000.pcie:      err 0x00f4000000..0x00f40fffff -> 0x00f4000000
[   14.223090] rk-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
[   14.223128] rk-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
[   14.223152] rk-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0300000000
[   14.223213] rk-pcie 3c0000000.pcie: Missing *config* reg space
[   14.223296] rk-pcie 3c0000000.pcie: invalid resource
[   14.223854] mpp_service mpp-srv: 425b07550 author: RadxaStephen 2023-10-12 Merge pull request #229 from vamrs-feng/hdmi_resolution
[   14.223867] mpp_service mpp-srv: probe start
[   14.227857] mpp_vdpu2 fdea0400.vdpu: Adding to iommu group 0
[   14.228241] mpp_vdpu2 fdea0400.vdpu: probe device
[   14.229107] mpp_vdpu2 fdea0400.vdpu: probing finish
[   14.229975] mpp_vepu2 fdee0000.vepu: Adding to iommu group 2
[   14.230279] mpp_vepu2 fdee0000.vepu: probing start
[   14.231064] mpp_vepu2 fdee0000.vepu: probing finish
[   14.232035] mpp-iep2 fdef0000.iep: Adding to iommu group 3
[   14.232197] snps pcie3phy FW update! size 8192
[   14.232358] mpp-iep2 fdef0000.iep: probe device
[   14.232839] mpp-iep2 fdef0000.iep: allocate roi buffer failed
[   14.233313] mpp-iep2 fdef0000.iep: probing finish
[   14.234187] mpp_jpgdec fded0000.jpegd: Adding to iommu group 1
[   14.234531] mpp_jpgdec fded0000.jpegd: probe device
[   14.235553] mpp_jpgdec fded0000.jpegd: probing finish
[   14.238012] mpp_service mpp-srv: probe success
[   14.245642] rk-pcie 3c0800000.pcie: IRQ msi not found
[   14.245708] rk-pcie 3c0800000.pcie: use outband MSI support
[   14.245719] rk-pcie 3c0800000.pcie: Missing *config* reg space
[   14.245768] rk-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
[   14.245816] rk-pcie 3c0800000.pcie:      err 0x00f0000000..0x00f00fffff -> 0x00f0000000
[   14.245845] rk-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
[   14.245875] rk-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
[   14.245896] rk-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0380000000
[   14.245961] rk-pcie 3c0800000.pcie: Missing *config* reg space
[   14.246043] rk-pcie 3c0800000.pcie: invalid resource
[   14.246478] dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
[   14.246495] dma-pl330 fe530000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[   14.250335] dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
[   14.250352] dma-pl330 fe550000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[   14.251253] rockchip-pvtm fde00000.pvtm: pvtm@0 probed
[   14.251504] rockchip-pvtm fde80000.pvtm: pvtm@1 probed
[   14.251742] rockchip-pvtm fde90000.pvtm: pvtm@2 probed
[   14.253130] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[   14.254319] arm-scmi firmware:scmi: Failed. SCMI protocol 22 not active.
[   14.254863] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[   14.256441] fe6c0000.serial: ttyS8 at MMIO 0xfe6c0000 (irq = 72, base_baud = 1500000) is a 16550A
[   14.256744] serial serial0: tty port ttyS8 registered
[   14.260812] random: crng init done
[   14.262172] rockchip-vop2 fe040000.vop: Adding to iommu group 6
[   14.276717] [drm] all windows should be assigned, full plane mask: 0x3f, current plane mask: 0x0
[   14.276729] [drm] use default plane mask
[   14.277094] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x3f, primary plane phy id: 4
[   14.277110] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp1 assign plane mask: 0x0, primary plane phy id: -1
[   14.277125] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x0, primary plane phy id: -1
[   14.277591] [drm] failed to init overlay plane Cluster0-win1
[   14.277682] [drm] failed to init overlay plane Cluster1-win1
[   14.277838] rockchip-drm display-subsystem: bound fe040000.vop (ops 0xffff800008e76e90)
[   14.278336] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[   14.279312] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[   14.279676] dwhdmi-rockchip fe0a0000.hdmi: IRQ index 1 not found
[   14.280469] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops 0xffff800008e85030)
[   14.280950] rockchip-drm display-subsystem: failed to parse loader memory
[   14.281111] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
[   14.281320] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
[   14.282688] [drm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0
[   14.283279] no ATF memory for init
[   14.290814] cacheinfo: Unable to detect cache hierarchy for CPU 0
[   14.292037] brd: module loaded
[   14.303137] loop: module loaded
[   14.303641] lkdtm: No crash points registered, enable through debugfs
[   14.304092] system_heap: orders[0] = 6
[   14.304102] system_heap: orders[1] = 4
[   14.304109] system_heap: orders[2] = 0
[   14.305107] no ATF memory for init
[   14.313894] spi-nor spi4.0: mx25u12835f (16384 Kbytes) read_data x4
[   14.320142] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[   14.320544] rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply from device tree
[   14.320581] rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply property in node /ethernet@fe010000 failed
[   14.320612] rk_gmac-dwmac fe010000.ethernet: no regulator found
[   14.320686] rk_gmac-dwmac fe010000.ethernet: clock input or output? (output).
[   14.320700] rk_gmac-dwmac fe010000.ethernet: TX delay(0x47).
[   14.320711] rk_gmac-dwmac fe010000.ethernet: RX delay(0x28).
[   14.320733] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[   14.321064] rk_gmac-dwmac fe010000.ethernet: init for RGMII
[   14.321461] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[   14.321478] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[   14.321491] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[   14.321501] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[   14.321510] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[   14.321519] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[   14.321632] rk_gmac-dwmac fe010000.ethernet: TSO supported
[   14.321644] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[   14.321655] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[   14.321666] rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
[   14.429093] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[   14.452426] rk-pcie 3c0800000.pcie: PCIe Linking... LTSSM is 0x3
[   14.477948] rk-pcie 3c0800000.pcie: PCIe Linking... LTSSM is 0x210022
[   14.511279] rk-pcie 3c0000000.pcie: PCIe Link up, LTSSM is 0x30011
[   14.511541] rk-pcie 3c0000000.pcie: PCI host bridge to bus 0000:00
[   14.511563] pci_bus 0000:00: root bus resource [bus 00-0f]
[   14.511580] pci_bus 0000:00: root bus resource [??? 0xf4000000-0xf40fffff flags 0x0]
[   14.511594] pci_bus 0000:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf4100000-0xf41fffff])
[   14.511607] pci_bus 0000:00: root bus resource [mem 0xf4200000-0xf5ffffff]
[   14.511619] pci_bus 0000:00: root bus resource [mem 0x300000000-0x33fffffff pref]
[   14.511681] pci 0000:00:00.0: [1d87:3566] type 01 class 0x060400
[   14.511724] pci 0000:00:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[   14.511829] pci 0000:00:00.0: supports D1 D2
[   14.511842] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[   14.526659] pci_bus 0000:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
[   14.526847] pci 0000:01:00.0: [8086:095a] type 00 class 0x028000
[   14.526987] pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00001fff 64bit]
[   14.527678] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[   14.554612] pci 0000:00:00.0: BAR 8: assigned [mem 0xf4200000-0xf42fffff]
[   14.554643] pci 0000:00:00.0: BAR 6: assigned [mem 0xf4300000-0xf430ffff pref]
[   14.554670] pci 0000:01:00.0: BAR 0: assigned [mem 0xf4200000-0xf4201fff 64bit]
[   14.554744] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
[   14.554760] pci 0000:00:00.0:   bridge window [mem 0xf4200000-0xf42fffff]
[   14.558505] rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
[   14.558952] rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply from device tree
[   14.558990] rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply property in node /ethernet@fe2a0000 failed
[   14.559021] rk_gmac-dwmac fe2a0000.ethernet: no regulator found
[   14.559098] rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (output).
[   14.559112] rk_gmac-dwmac fe2a0000.ethernet: TX delay(0x36).
[   14.559123] rk_gmac-dwmac fe2a0000.ethernet: RX delay(0x2d).
[   14.559144] rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
[   14.559308] pcieport 0000:00:00.0: PME: Signaling with IRQ 85
[   14.559487] rk_gmac-dwmac fe2a0000.ethernet: init for RGMII
[   14.559831] rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[   14.559861] rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
[   14.559874] rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
[   14.559883] rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
[   14.559891] rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
[   14.559899] rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
[   14.560007] rk_gmac-dwmac fe2a0000.ethernet: TSO supported
[   14.560017] rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[   14.560027] rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
[   14.560037] rk_gmac-dwmac fe2a0000.ethernet: Using 32 bits DMA width
[   14.564610] rk-pcie 3c0800000.pcie: PCIe Link up, LTSSM is 0x230011
[   14.564857] rk-pcie 3c0800000.pcie: PCI host bridge to bus 0002:20
[   14.564878] pci_bus 0002:20: root bus resource [bus 20-2f]
[   14.564894] pci_bus 0002:20: root bus resource [??? 0xf0000000-0xf00fffff flags 0x0]
[   14.564908] pci_bus 0002:20: root bus resource [io  0x100000-0x1fffff] (bus address [0xf0100000-0xf01fffff])
[   14.564920] pci_bus 0002:20: root bus resource [mem 0xf0200000-0xf1ffffff]
[   14.564931] pci_bus 0002:20: root bus resource [mem 0x380000000-0x3bfffffff pref]
[   14.564991] pci 0002:20:00.0: [1d87:3566] type 01 class 0x060400
[   14.565018] pci 0002:20:00.0: reg 0x10: [mem 0x00000000-0x3fffffff]
[   14.565035] pci 0002:20:00.0: reg 0x14: [mem 0x00000000-0x3fffffff]
[   14.565052] pci 0002:20:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[   14.565146] pci 0002:20:00.0: supports D1 D2
[   14.565158] pci 0002:20:00.0: PME# supported from D0 D1 D3hot
[   14.579975] pci 0002:20:00.0: Primary bus is hard wired to 0
[   14.579996] pci 0002:20:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[   14.580399] pci 0002:21:00.0: [10ec:5765] type 00 class 0x010802
[   14.580504] pci 0002:21:00.0: reg 0x10: [mem 0x00000000-0x00003fff 64bit]
[   14.580616] pci 0002:21:00.0: reg 0x24: [mem 0x00000000-0x00001fff]
[   14.581161] pci 0002:21:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:20:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[   14.605225] pci_bus 0002:21: busn_res: [bus 21-2f] end is updated to 21
[   14.605293] pci 0002:20:00.0: BAR 0: no space for [mem size 0x40000000]
[   14.605307] pci 0002:20:00.0: BAR 0: failed to assign [mem size 0x40000000]
[   14.605321] pci 0002:20:00.0: BAR 1: no space for [mem size 0x40000000]
[   14.605332] pci 0002:20:00.0: BAR 1: failed to assign [mem size 0x40000000]
[   14.605345] pci 0002:20:00.0: BAR 8: assigned [mem 0xf0200000-0xf02fffff]
[   14.605359] pci 0002:20:00.0: BAR 6: assigned [mem 0xf0300000-0xf030ffff pref]
[   14.605382] pci 0002:21:00.0: BAR 0: assigned [mem 0xf0200000-0xf0203fff 64bit]
[   14.605439] pci 0002:21:00.0: BAR 5: assigned [mem 0xf0204000-0xf0205fff]
[   14.605465] pci 0002:20:00.0: PCI bridge to [bus 21]
[   14.605481] pci 0002:20:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
[   14.610148] pcieport 0002:20:00.0: PME: Signaling with IRQ 95
[   14.610924] nvme nvme0: pci function 0002:21:00.0
[   14.611049] nvme 0002:21:00.0: enabling device (0000 -> 0002)
[   14.730444] usbcore: registered new interface driver rndis_wlan
[   14.730521] usbcore: registered new interface driver cdc_ether
[   14.730582] usbcore: registered new interface driver rndis_host
[   14.739674] naneng-combphy fe830000.phy: wait phy status ready timeout
[   14.744945] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[   14.744995] ehci-pci: EHCI PCI platform driver
[   14.745201] ehci-platform: EHCI generic platform driver
[   14.745970] phy phy-fe8b0000.usb2-phy.4: illegal mode
[   14.748049] ehci-platform fd800000.usb: EHCI Host Controller
[   14.748095] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
[   14.748335] ehci-platform fd800000.usb: irq 19, io mem 0xfd800000
[   14.758281] nvme nvme0: allocated 64 MiB host memory buffer.
[   14.761298] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[   14.761780] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   14.761794] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.761805] usb usb1: Product: EHCI Host Controller
[   14.761814] usb usb1: Manufacturer: Linux 5.10.160-18-rk356x ehci_hcd
[   14.761823] usb usb1: SerialNumber: fd800000.usb
[   14.762741] hub 1-0:1.0: USB hub found
[   14.762812] hub 1-0:1.0: 1 port detected
[   14.766125] ehci-platform fd880000.usb: EHCI Host Controller
[   14.766164] ehci-platform fd880000.usb: new USB bus registered, assigned bus number 2
[   14.766379] ehci-platform fd880000.usb: irq 21, io mem 0xfd880000
[   14.777955] ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
[   14.778392] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   14.778406] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.778416] usb usb2: Product: EHCI Host Controller
[   14.778426] usb usb2: Manufacturer: Linux 5.10.160-18-rk356x ehci_hcd
[   14.778434] usb usb2: SerialNumber: fd880000.usb
[   14.779230] hub 2-0:1.0: USB hub found
[   14.779301] hub 2-0:1.0: 1 port detected
[   14.780528] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[   14.780565] ohci-platform: OHCI generic platform driver
[   14.781061] phy phy-fe8b0000.usb2-phy.4: illegal mode
[   14.781083] ohci-platform fd840000.usb: Generic Platform OHCI controller
[   14.781117] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 3
[   14.781370] ohci-platform fd840000.usb: irq 20, io mem 0xfd840000
[   14.795240] nvme nvme0: 4/0/0 default/read/poll queues
[   14.844772] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[   14.844793] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.844802] usb usb3: Product: Generic Platform OHCI controller
[   14.844813] usb usb3: Manufacturer: Linux 5.10.160-18-rk356x ohci_hcd
[   14.844823] usb usb3: SerialNumber: fd840000.usb
[   14.845659] hub 3-0:1.0: USB hub found
[   14.845732] hub 3-0:1.0: 1 port detected
[   14.846804] ohci-platform fd8c0000.usb: Generic Platform OHCI controller
[   14.846840] ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 4
[   14.847035] ohci-platform fd8c0000.usb: irq 22, io mem 0xfd8c0000
[   14.905619] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[   14.905635] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.905645] usb usb4: Product: Generic Platform OHCI controller
[   14.905654] usb usb4: Manufacturer: Linux 5.10.160-18-rk356x ohci_hcd
[   14.905663] usb usb4: SerialNumber: fd8c0000.usb
[   14.906448] hub 4-0:1.0: USB hub found
[   14.906528] hub 4-0:1.0: 1 port detected
[   14.908679] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
[   14.908721] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 5
[   14.908933] xhci-hcd xhci-hcd.3.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000200002010010
[   14.909025] xhci-hcd xhci-hcd.3.auto: irq 98, io mem 0xfd000000
[   14.909649] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[   14.909664] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.909674] usb usb5: Product: xHCI Host Controller
[   14.909683] usb usb5: Manufacturer: Linux 5.10.160-18-rk356x xhci-hcd
[   14.909693] usb usb5: SerialNumber: xhci-hcd.3.auto
[   14.910534] hub 5-0:1.0: USB hub found
[   14.910609] hub 5-0:1.0: 1 port detected
[   14.911271] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
[   14.911300] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 6
[   14.911327] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
[   14.911476] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[   14.911741] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[   14.911756] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   14.911765] usb usb6: Product: xHCI Host Controller
[   14.911775] usb usb6: Manufacturer: Linux 5.10.160-18-rk356x xhci-hcd
[   14.911784] usb usb6: SerialNumber: xhci-hcd.3.auto
[   14.912572] hub 6-0:1.0: USB hub found
[   14.912641] hub 6-0:1.0: 1 port detected
[   14.914956] usbcore: registered new interface driver usbtouchscreen
[   14.915446] .. rk pwm remotectl v2.0 init
[   14.915928] input: fdd70030.pwm as /devices/platform/fdd70030.pwm/input/input0
[   14.916588] remotectl-pwm fdd70030.pwm: pwm version is 0x2130000
[   14.916690] remotectl-pwm fdd70030.pwm: Controller support pwrkey capture
[   14.917734] i2c /dev entries driver
[   14.920898] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[   14.921426] vdd_cpu: override max_uV, 1390000 -> 1387500
[   14.922402] fan53555-regulator 0-001c: Looking up vin-supply from device tree
[   14.922725] vdd_cpu: supplied by vcc5v0_sys
[   14.922746] vcc5v0_sys: could not add device link regulator.9: -ENOENT
[   14.925725] vdd_cpu: 712 <--> 1387 mV at 900 mV, enabled
[   14.931805] rk808 0-0020: chip id: 0x8090
[   14.931880] rk808 0-0020: No cache defaults, reading back from HW
[   14.955743] rk808 0-0020: source: on=0x80, off=0x08
[   14.955765] rk808 0-0020: support dcdc3 fb mode:-22, 1
[   14.955780] rk808 0-0020: support pmic reset mode:0,0
[   14.963769] rk808-regulator rk808-regulator: there is no dvs0 gpio
[   14.963813] rk808-regulator rk808-regulator: there is no dvs1 gpio
[   14.963928] rk808 0-0020: Looking up vcc1-supply from device tree
[   14.963954] vdd_logic: supplied by vcc3v3_sys
[   14.963974] vcc3v3_sys: could not add device link regulator.10: -ENOENT
[   14.964492] vdd_logic: 500 <--> 1350 mV at 900 mV, enabled
[   14.965075] rk808 0-0020: Looking up vcc2-supply from device tree
[   14.965098] vdd_gpu: supplied by vcc3v3_sys
[   14.965117] vcc3v3_sys: could not add device link regulator.11: -ENOENT
[   14.965597] vdd_gpu: 500 <--> 1350 mV at 900 mV, enabled
[   14.966048] rk808 0-0020: Looking up vcc3-supply from device tree
[   14.966069] vcc_ddr: supplied by vcc3v3_sys
[   14.966086] vcc3v3_sys: could not add device link regulator.12: -ENOENT
[   14.966575] vcc_ddr: at 500 mV, enabled
[   14.967029] rk808 0-0020: Looking up vcc4-supply from device tree
[   14.967050] vdd_npu: supplied by vcc3v3_sys
[   14.967068] vcc3v3_sys: could not add device link regulator.13: -ENOENT
[   14.967564] vdd_npu: 500 <--> 1350 mV at 900 mV, enabled
[   14.968089] rk808 0-0020: Looking up vcc9-supply from device tree
[   14.968112] vcc_1v8: supplied by vcc3v3_sys
[   14.968130] vcc3v3_sys: could not add device link regulator.14: -ENOENT
[   14.968588] vcc_1v8: 1800 mV, enabled
[   14.969033] vdda0v9_image: Bringing 600000uV into 900000-900000uV
[   14.969423] vdda0v9_image: ramp_delay not set
[   14.969446] rk808 0-0020: Looking up vcc5-supply from device tree
[   14.969466] vdda0v9_image: supplied by vcc3v3_sys
[   14.969482] vcc3v3_sys: could not add device link regulator.15: -ENOENT
[   14.970475] vdda0v9_image: 900 mV, enabled
[   14.970940] rk808 0-0020: Looking up vcc5-supply from device tree
[   14.970961] vdda_0v9: supplied by vcc3v3_sys
[   14.970978] vcc3v3_sys: could not add device link regulator.16: -ENOENT
[   14.971978] vdda_0v9: 900 mV, enabled
[   14.972443] rk808 0-0020: Looking up vcc5-supply from device tree
[   14.972463] vdda0v9_pmu: supplied by vcc3v3_sys
[   14.972479] vcc3v3_sys: could not add device link regulator.17: -ENOENT
[   14.973472] vdda0v9_pmu: 900 mV, enabled
[   14.973941] rk808 0-0020: Looking up vcc6-supply from device tree
[   14.973962] vccio_acodec: supplied by vcc3v3_sys
[   14.973978] vcc3v3_sys: could not add device link regulator.18: -ENOENT
[   14.974974] vccio_acodec: 3300 mV, enabled
[   14.975417] rk808 0-0020: Looking up vcc6-supply from device tree
[   14.975439] vccio_sd: supplied by vcc3v3_sys
[   14.975457] vcc3v3_sys: could not add device link regulator.19: -ENOENT
[   14.976492] vccio_sd: 1800 <--> 3300 mV at 3300 mV, enabled
[   14.976938] rk808 0-0020: Looking up vcc6-supply from device tree
[   14.976959] vcc3v3_pmu: supplied by vcc3v3_sys
[   14.976978] vcc3v3_sys: could not add device link regulator.20: -ENOENT
[   14.977978] vcc3v3_pmu: 3300 mV, enabled
[   14.978452] rk808 0-0020: Looking up vcc7-supply from device tree
[   14.978473] vcca_1v8: supplied by vcc3v3_sys
[   14.978497] vcc3v3_sys: could not add device link regulator.21: -ENOENT
[   14.979493] vcca_1v8: 1800 mV, enabled
[   14.979962] rk808 0-0020: Looking up vcc7-supply from device tree
[   14.979982] vcca1v8_pmu: supplied by vcc3v3_sys
[   14.979999] vcc3v3_sys: could not add device link regulator.22: -ENOENT
[   14.980995] vcca1v8_pmu: 1800 mV, enabled
[   14.981521] vcca1v8_image: Bringing 600000uV into 1800000-1800000uV
[   14.981910] vcca1v8_image: ramp_delay not set
[   14.981936] rk808 0-0020: Looking up vcc7-supply from device tree
[   14.981955] vcca1v8_image: supplied by vcc3v3_sys
[   14.981973] vcc3v3_sys: could not add device link regulator.23: -ENOENT
[   14.982967] vcca1v8_image: 1800 mV, enabled
[   14.983417] rk808 0-0020: Looking up vcc9-supply from device tree
[   14.983438] vcc_3v3: supplied by vcc3v3_sys
[   14.983454] vcc3v3_sys: could not add device link regulator.24: -ENOENT
[   14.983943] vcc_3v3: at 3300 mV, enabled
[   14.984367] rk808 0-0020: Looking up vcc8-supply from device tree
[   14.984388] vcc3v3_sd: supplied by vcc3v3_sys
[   14.984404] vcc3v3_sys: could not add device link regulator.25: -ENOENT
[   14.984865] vcc3v3_sd: at 3300 mV, enabled
[   14.985272] rk817-battery: Failed to locate of_node [id: -1]
[   14.985507] rk817-battery rk817-battery: Failed to find matching dt id
[   14.985746] rk817-charger: Failed to locate of_node [id: -1]
[   14.985929] rk817-charger rk817-charger: Failed to find matching dt id
[   14.989565] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey/input/input1
[   15.000315] rtc-hym8563 5-0051: rtc information is valid
[   15.006456] rtc-hym8563 5-0051: registered as rtc0
[   15.007549] rtc-hym8563 5-0051: setting system clock to 2024-12-31T01:26:35 UTC (1735608395)
[   15.011319] usb 1-1: new high-speed USB device number 2 using ehci-platform
[   15.015745] usbcore: registered new interface driver uvcvideo
[   15.015756] USB Video Class driver (1.1.1)
[   15.019254] cpu cpu0: leakage=27
[   15.019377] cpu cpu0: pvtm = 88430, from nvmem
[   15.019404] cpu cpu0: pvtm-volt-sel=2
[   15.019858] cpu cpu0: Looking up cpu-supply from device tree
[   15.022509] cpu cpu0: avs=0
[   15.022736] cpu cpu0: EM: OPP:600000 is inefficient
[   15.022749] cpu cpu0: EM: OPP:408000 is inefficient
[   15.023130] cpu cpu0: EM: created perf domain
[   15.023244] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   15.030880] sdhci: Secure Digital Host Controller Interface driver
[   15.030887] sdhci: Copyright(c) Pierre Ossman
[   15.030890] Synopsys Designware Multimedia Card Interface Driver
[   15.031775] sdhci-pltfm: SDHCI platform and OF driver helper
[   15.032262] dwmmc_rockchip fe000000.dwmmc: IDMAC supports 32-bit address mode.
[   15.032293] dwmmc_rockchip fe2b0000.dwmmc: IDMAC supports 32-bit address mode.
[   15.032304] dwmmc_rockchip fe000000.dwmmc: Using internal DMA controller.
[   15.032313] dwmmc_rockchip fe000000.dwmmc: Version ID is 270a
[   15.032325] dwmmc_rockchip fe2b0000.dwmmc: Using internal DMA controller.
[   15.032332] dwmmc_rockchip fe2b0000.dwmmc: Version ID is 270a
[   15.032369] dwmmc_rockchip fe000000.dwmmc: DW MMC controller at irq 46,32 bit host data width,256 deep fifo
[   15.032383] dwmmc_rockchip fe2b0000.dwmmc: DW MMC controller at irq 60,32 bit host data width,256 deep fifo
[   15.032462] dwmmc_rockchip fe000000.dwmmc: Looking up vmmc-supply from device tree
[   15.032465] dwmmc_rockchip fe2b0000.dwmmc: Looking up vmmc-supply from device tree
[   15.032482] dwmmc_rockchip fe000000.dwmmc: Looking up vmmc-supply property in node /dwmmc@fe000000 failed
[   15.032510] dwmmc_rockchip fe000000.dwmmc: Looking up vqmmc-supply from device tree
[   15.032519] dwmmc_rockchip fe000000.dwmmc: Looking up vqmmc-supply property in node /dwmmc@fe000000 failed
[   15.032635] dwmmc_rockchip fe2b0000.dwmmc: Looking up vqmmc-supply from device tree
[   15.032770] dwmmc_rockchip fe000000.dwmmc: allocated mmc-pwrseq
[   15.032778] mmc_host mmc3: card is non-removable.
[   15.033298] ledtrig-cpu: registered to indicate activity on CPUs
[   15.033320] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[   15.033403] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[   15.034291] cryptodev: driver 1.12 loaded.
[   15.034337] hid: raw HID events driver (C) Jiri Kosina
[   15.034653] usbcore: registered new interface driver usbhid
[   15.034657] usbhid: USB HID core driver
[   15.034936] ashmem: initialized
[   15.038032] rockchip-saradc fe720000.saradc: Looking up vref-supply from device tree
[   15.039307] rksfc_base v1.1 2016-01-08
[   15.039663] Initializing XFRM netlink socket
[   15.039679] NET: Registered protocol family 17
[   15.040013] [BT_RFKILL]: Enter rfkill_rk_init
[   15.040017] [WLAN_RFKILL]: Enter rfkill_wlan_init
[   15.040453] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[   15.040492] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6275s
[   15.040496] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[   15.040500] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[   15.040531] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 125, flags = 0.
[   15.040550] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[   15.040556] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[   15.040560] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[   15.040884] Key type dns_resolver registered
[   15.041392] flash vendor_init_thread!
[   15.041398] flash vendor storage:20170308 ret = -1
[   15.042700] registered taskstats version 1
[   15.042711] Loading compiled-in X.509 certificates
[   15.042748] Key type .fscrypt registered
[   15.042752] Key type fscrypt-provisioning registered
[   15.042910] pstore: Using crash dump compression: deflate
[   15.043879] rga: rga2, irq = 31, match scheduler
[   15.044340] rga: rga2 hardware loaded successfully, hw_version:3.2.63318.
[   15.044361] rga: rga2 probe successfully
[   15.044710] rga_iommu: IOMMU binding successfully, default mapping core[0x4]
[   15.044904] mmc_host mmc3: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[   15.044909] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[   15.044966] rga: Module initialized. v1.2.26
[   15.076185] mpp_rkvenc fdf40000.rkvenc: Adding to iommu group 4
[   15.076394] mpp_rkvenc fdf40000.rkvenc: probing start
[   15.076656] mpp_rkvenc fdf40000.rkvenc: Looking up venc-supply from device tree
[   15.076835] mpp_rkvenc fdf40000.rkvenc: Failed to get leakage
[   15.076931] mpp_rkvenc fdf40000.rkvenc: pvtm = 88430, from nvmem
[   15.076942] mpp_rkvenc fdf40000.rkvenc: pvtm-volt-sel=1
[   15.077141] mpp_rkvenc fdf40000.rkvenc: avs=0
[   15.077245] mpp_rkvenc fdf40000.rkvenc: failed to find power_model node
[   15.077264] mpp_rkvenc fdf40000.rkvenc: failed to initialize power model
[   15.077277] mpp_rkvenc fdf40000.rkvenc: failed to get dynamic-coefficient
[   15.077851] mpp_rkvenc fdf40000.rkvenc: probing finish
[   15.078286] mpp_rkvdec2 fdf80200.rkvdec: Adding to iommu group 5
[   15.078501] mpp_rkvdec2 fdf80200.rkvdec: rkvdec, probing start
[   15.078807] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_a is not found!
[   15.078834] rkvdec2_init:1022: No niu aclk reset resource define
[   15.078848] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_h is not found!
[   15.078858] rkvdec2_init:1025: No niu hclk reset resource define
[   15.078898] mpp_rkvdec2 fdf80200.rkvdec: Looking up vdec-supply from device tree
[   15.079186] mpp_rkvdec2 fdf80200.rkvdec: leakage=52
[   15.079196] mpp_rkvdec2 fdf80200.rkvdec: leakage-volt-sel=0
[   15.079230] mpp_rkvdec2 fdf80200.rkvdec: pvtm = 88430, from nvmem
[   15.079238] mpp_rkvdec2 fdf80200.rkvdec: pvtm-volt-sel=1
[   15.079428] mpp_rkvdec2 fdf80200.rkvdec: avs=0
[   15.079535] mpp_rkvdec2 fdf80200.rkvdec: failed to find power_model node
[   15.079554] mpp_rkvdec2 fdf80200.rkvdec: failed to initialize power model
[   15.079567] mpp_rkvdec2 fdf80200.rkvdec: failed to get dynamic-coefficient
[   15.079697] mpp_rkvdec2 fdf80200.rkvdec: sram_start 0x00000000fdcc0000
[   15.079701] mpp_rkvdec2 fdf80200.rkvdec: rcb_iova 0x0000000010000000
[   15.079705] mpp_rkvdec2 fdf80200.rkvdec: sram_size 45056
[   15.079709] mpp_rkvdec2 fdf80200.rkvdec: rcb_size 65536
[   15.079715] mpp_rkvdec2 fdf80200.rkvdec: min_width 512
[   15.079766] mpp_rkvdec2 fdf80200.rkvdec: link mode probe finish
[   15.079834] mpp_rkvdec2 fdf80200.rkvdec: probing finish
[   15.080982] rockchip-dmc dmc: Looking up center-supply from device tree
[   15.081139] rockchip-dmc dmc: Looking up center-supply from device tree
[   15.081167] vdd_logic: could not add device link dmc: -EEXIST
[   15.081171] vdd_logic: Failed to create debugfs directory
[   15.081367] rockchip-dmc dmc: leakage=52
[   15.081381] rockchip-dmc dmc: leakage-volt-sel=0
[   15.081417] rockchip-dmc dmc: pvtm = 88430, from nvmem
[   15.081428] rockchip-dmc dmc: pvtm-volt-sel=1
[   15.081717] rockchip-dmc dmc: avs=0
[   15.081736] rockchip-dmc dmc: current ATF version 0x101
[   15.082766] rockchip-dmc dmc: normal_rate = 780000000
[   15.082773] rockchip-dmc dmc: reboot_rate = 1560000000
[   15.082778] rockchip-dmc dmc: suspend_rate = 324000000
[   15.082783] rockchip-dmc dmc: video_4k_rate = 780000000
[   15.082789] rockchip-dmc dmc: video_4k_10b_rate = 780000000
[   15.082793] rockchip-dmc dmc: boost_rate = 1560000000
[   15.082798] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 1560000000
[   15.082802] rockchip-dmc dmc: performance_rate = 1560000000
[   15.082823] rockchip-dmc dmc: failed to get vop pn to msch rl
[   15.083073] rockchip-dmc dmc: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   15.084025] rockchip-dmc dmc: could not find power_model node
[   15.084986] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio1-supply from device tree
[   15.085005] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio1-supply property in node /syscon@fdc20000/io-domains failed
[   15.085074] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio2-supply from device tree
[   15.085162] mmc_host mmc3: Bus speed (slot 0) = 375000Hz (slot req 375000Hz, actual 375000HZ div = 0)
[   15.085504] rockchip-iodomain fdc20000.syscon:io-domains: pmuio2(3300000 uV) supplied by vcc3v3_pmu
[   15.085513] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio1-supply from device tree
[   15.085702] rockchip-iodomain fdc20000.syscon:io-domains: vccio1(3300000 uV) supplied by vccio_acodec
[   15.085711] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio2-supply from device tree
[   15.085726] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio2-supply property in node /syscon@fdc20000/io-domains failed
[   15.085758] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio3-supply from device tree
[   15.085924] rockchip-iodomain fdc20000.syscon:io-domains: vccio3(3300000 uV) supplied by vccio_sd
[   15.085933] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio4-supply from device tree
[   15.086155] rockchip-iodomain fdc20000.syscon:io-domains: vccio4(1800000 uV) supplied by vcc_1v8
[   15.086164] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio5-supply from device tree
[   15.086370] rockchip-iodomain fdc20000.syscon:io-domains: vccio5(3300000 uV) supplied by vcc_3v3
[   15.086379] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio6-supply from device tree
[   15.086463] rockchip-iodomain fdc20000.syscon:io-domains: vccio6(1800000 uV) supplied by vcc_1v8
[   15.086472] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio7-supply from device tree
[   15.086557] rockchip-iodomain fdc20000.syscon:io-domains: vccio7(3300000 uV) supplied by vcc_3v3
[   15.095863] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   15.124370] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   15.126259] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[   15.126284] rockchip-suspend not set sleep-mode-config for mem-lite
[   15.126288] rockchip-suspend not set wakeup-config for mem-lite
[   15.126300] rockchip-suspend not set sleep-mode-config for mem-ultra
[   15.126304] rockchip-suspend not set wakeup-config for mem-ultra
[   15.136632] Freeing unused kernel memory: 5760K
[   15.151788] Run /init as init process
[   15.151818]   with arguments:
[   15.151832]     /init
[   15.151844]     splash
[   15.151856]   with environment:
[   15.151869]     HOME=/
[   15.151881]     TERM=linux
[   15.151893]     cgroup_enable=memory
[   15.151904]     cgroup_memory=1
[   15.159753] usb 1-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
[   15.159782] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[   15.159793] usb 1-1: Product: USB 2.0 Hub
[   15.161922] hub 1-1:1.0: USB hub found
[   15.162138] hub 1-1:1.0: 4 ports detected
[   15.203560] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11(if:800) for vp0 dclk: 148500000
[   15.304220] Console: switching to colour frame buffer device 240x67
[   15.311404] usb 5-1: new low-speed USB device number 2 using xhci-hcd
[   15.337119] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[   15.454857] usb 5-1: New USB device found, idVendor=093a, idProduct=2510, bcdDevice= 1.00
[   15.454869] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   15.454874] usb 5-1: Product: USB Optical Mouse
[   15.454878] usb 5-1: Manufacturer: PixArt
[   15.476040] input: PixArt USB Optical Mouse as /devices/platform/usbhost/fd000000.dwc3/xhci-hcd.3.auto/usb5/5-1/5-1:1.0/0003:093A:2510.0001/input/input2
[   15.476602] hid-generic 0003:093A:2510.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt USB Optical Mouse] on usb-xhci-hcd.3.auto-1/input0
[   15.561326] usb 1-1.1: new low-speed USB device number 3 using ehci-platform
[   15.636134] cma: cma_alloc: reserved: alloc failed, req-size: 512 pages, ret: -12
[   15.682368] rk808-rtc rk808-rtc: registered as rtc1
[   15.698262] Registered IR keymap rc-cec
[   15.698494] rc rc0: dw_hdmi as /devices/platform/fe0a0000.hdmi/rc/rc0
[   15.698693] input: dw_hdmi as /devices/platform/fe0a0000.hdmi/rc/rc0/input3
[   15.699389] input: hdmi_cec_key as /devices/platform/fe0a0000.hdmi/dw-hdmi-cec.1.auto/input/input4
[   15.717540] sdhci-dwcmshc fe310000.sdhci: Looking up vmmc-supply from device tree
[   15.717572] sdhci-dwcmshc fe310000.sdhci: Looking up vmmc-supply property in node /sdhci@fe310000 failed
[   15.717645] sdhci-dwcmshc fe310000.sdhci: Looking up vqmmc-supply from device tree
[   15.717656] sdhci-dwcmshc fe310000.sdhci: Looking up vqmmc-supply property in node /sdhci@fe310000 failed
[   15.748026] mmc0: SDHCI controller on fe310000.sdhci [fe310000.sdhci] using ADMA
[   15.781767] usb 1-1.1: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 1.10
[   15.781781] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   15.781786] usb 1-1.1: Product: Wired Keyboard 400
[   15.781790] usb 1-1.1: Manufacturer: Microsoft
[   15.791077] mmc0: Host Software Queue enabled
[   15.791106] mmc0: new HS200 MMC card at address 0001
[   15.792584] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB
[   15.792887] mmcblk0boot0: mmc0:0001 BJTD4R partition 1 4.00 MiB
[   15.793227] mmcblk0boot1: mmc0:0001 BJTD4R partition 2 4.00 MiB
[   15.793621] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (236:0)
[   15.798077]  mmcblk0: p1 p2 p3
[   15.798552] input: Microsoft Wired Keyboard 400 as /devices/platform/fd800000.usb/usb1/1-1/1-1.1/1-1.1:1.0/0003:045E:0752.0002/input/input5
[   15.855849] hid-generic 0003:045E:0752.0002: input,hidraw1: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-fd800000.usb-1.1/input0
[   15.901210] vendor storage:20190527 ret = 0
[   16.045347] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
[   16.617866]  mmcblk0: p1 p2 p3
[   16.625433]  mmcblk0: p1 p2 p3
[   16.760617] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
[   17.113322] NET: Registered protocol family 10
[   17.114634] Segment Routing with IPv6
[   17.147079] systemd[1]: systemd 247.3-7+deb11u4 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
[   17.148014] systemd[1]: Detected architecture arm64.
[   17.148095] systemd[1]: Detected first boot.
[   17.149154] systemd[1]: Set hostname to <rock-3b>.
[   17.151583] systemd[1]: Initializing machine ID from random generator.
[   17.796780] systemd[1]: Configuration file /lib/systemd/system/rkaiq_3A.service is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
[   18.183748] systemd[1]: Populated /etc with preset unit settings.
[   18.223206] systemd[1]: /lib/systemd/system/plymouth-start.service:16: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed.
[   18.378696] systemd[1]: Configuration file /lib/systemd/system/rkaiq_3A.service is marked world-writable. Please remove world writability permission bits. Proceeding anyway.
[   18.395558] systemd[1]: Queued start job for default target Graphical Interface.
[   18.401332] systemd[1]: Created slice system-getty.slice.
[   18.403315] systemd[1]: Created slice system-modprobe.slice.
[   18.405228] systemd[1]: Created slice system-serial\x2dgetty.slice.
[   18.406325] systemd[1]: Created slice User and Session Slice.
[   18.406769] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   18.407747] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   18.408225] systemd[1]: Reached target User and Group Name Lookups.
[   18.408303] systemd[1]: Reached target Remote Encrypted Volumes.
[   18.408359] systemd[1]: Reached target Remote File Systems.
[   18.408412] systemd[1]: Reached target Slices.
[   18.408486] systemd[1]: Reached target Swap.
[   18.409309] systemd[1]: Listening on fsck to fsckd communication Socket.
[   18.409586] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   18.410307] systemd[1]: Listening on Journal Audit Socket.
[   18.410776] systemd[1]: Listening on Journal Socket (/dev/log).
[   18.411427] systemd[1]: Listening on Journal Socket.
[   18.412375] systemd[1]: Listening on Network Service Netlink Socket.
[   18.414032] systemd[1]: Listening on udev Control Socket.
[   18.414950] systemd[1]: Listening on udev Kernel Socket.
[   18.419661] systemd[1]: Mounting Huge Pages File System...
[   18.425330] systemd[1]: Mounting POSIX Message Queue File System...
[   18.431586] systemd[1]: Mounting Kernel Debug File System...
[   18.438785] systemd[1]: Mounting Kernel Trace File System...
[   18.447137] systemd[1]: Starting Wait for network to be configured by ifupdown...
[   18.454530] systemd[1]: Starting Create list of static device nodes for the current kernel...
[   18.463502] systemd[1]: Starting Load Kernel Module configfs...
[   18.471411] systemd[1]: Starting Load Kernel Module drm...
[   18.480891] systemd[1]: Starting Load Kernel Module fuse...
[   18.488366] systemd[1]: Starting Enable Rockchip camera engine rkaiq...
[   18.491645] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[   18.491977] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[   18.505033] systemd[1]: Starting Journal Service...
[   18.509773] fuse: init (API version 7.32)
[   18.515346] systemd[1]: Starting Load Kernel Modules...
[   18.524410] systemd[1]: Starting Remount Root and Kernel File Systems...
[   18.528992] systemd[1]: Starting Coldplug All udev Devices...
[   18.537326] systemd[1]: Mounted Huge Pages File System.
[   18.541201] systemd[1]: Mounted POSIX Message Queue File System.
[   18.542786] systemd[1]: Mounted Kernel Debug File System.
[   18.545041] systemd[1]: Mounted Kernel Trace File System.
[   18.548462] systemd[1]: Finished Wait for network to be configured by ifupdown.
[   18.552503] systemd[1]: Finished Create list of static device nodes for the current kernel.
[   18.555200] systemd[1]: [email protected]: Succeeded.
[   18.556385] systemd[1]: Finished Load Kernel Module configfs.
[   18.558018] systemd[1]: [email protected]: Succeeded.
[   18.559285] systemd[1]: Finished Load Kernel Module drm.
[   18.560980] systemd[1]: [email protected]: Succeeded.
[   18.562280] systemd[1]: Finished Load Kernel Module fuse.
[   18.563718] systemd[1]: Started Enable Rockchip camera engine rkaiq.
[   18.570020] systemd[1]: Mounting FUSE Control File System...
[   18.583490] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
[   18.586677] systemd[1]: Mounting Kernel Configuration File System...
[   18.592201] systemd[1]: Finished Load Kernel Modules.
[   18.594600] systemd[1]: Finished Remount Root and Kernel File Systems.
[   18.595996] systemd[1]: Mounted FUSE Control File System.
[   18.599307] systemd[1]: Mounted Kernel Configuration File System.
[   18.603421] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[   18.603638] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[   18.608053] systemd[1]: Starting Load/Save Random Seed...
[   18.612992] systemd[1]: Starting Apply Kernel Variables...
[   18.617260] systemd[1]: Starting Create System Users...
[   18.659964] systemd[1]: Finished Load/Save Random Seed.
[   18.661166] systemd[1]: Reached target First Boot Complete.
[   18.673322] systemd[1]: Finished Apply Kernel Variables.
[   18.682001] systemd[1]: rkaiq_3A.service: Succeeded.
[   18.705862] systemd[1]: Finished Create System Users.
[   18.710173] systemd[1]: Starting Create Static Device Nodes in /dev...
[   18.757187] systemd[1]: Finished Create Static Device Nodes in /dev.
[   18.758130] systemd[1]: Reached target Local File Systems (Pre).
[   18.759617] systemd[1]: Set up automount boot-efi.automount.
[   18.761010] systemd[1]: Set up automount config.automount.
[   18.761156] systemd[1]: Reached target Local File Systems.
[   18.765738] systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
[   18.766017] systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
[   18.771318] systemd[1]: Starting Commit a transient machine-id on disk...
[   18.779546] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[   18.810010] systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
[   18.811692] systemd[1]: Received SIGRTMIN+20 from PID 218 (plymouthd).
[   18.865156] systemd[1]: etc-machine\x2did.mount: Succeeded.
[   18.871151] systemd[1]: Finished Commit a transient machine-id on disk.
[   18.969977] systemd[1]: Started Rule-based Manager for Device Events and Files.
[   18.986998] systemd[1]: Starting Network Service...
[   18.988368] systemd[1]: Started Journal Service.
[   19.048730] systemd-journald[321]: Received client request to flush runtime journal.
[   20.095476] zram: Added device: zram0
[   20.325349] zram0: detected capacity change from 0 to 4034211840
[   20.468048] Adding 3939656k swap on /dev/zram0.  Priority:100 extents:1 across:3939656k SS
[   20.526131] using random self ethernet address
[   20.526146] using random host ethernet address
[   20.550587] file system registered
[   20.624538] usb0: HOST MAC 62:25:98:7c:b2:67
[   20.624784] usb0: MAC 9a:f0:eb:21:10:10
[   20.636601] udc fcc00000.dwc3: failed to start radxa-otgutils: -19
[   20.656635] read descriptors
[   20.656652] read strings
[   21.219039] Intel(R) Wireless WiFi driver for Linux
[   21.220044] iwlwifi 0000:01:00.0: enabling device (0000 -> 0002)
[   21.240863] iwlwifi 0000:01:00.0: Found debug destination: EXTERNAL_DRAM
[   21.240880] iwlwifi 0000:01:00.0: Found debug configuration: 0
[   21.242355] iwlwifi 0000:01:00.0: loaded firmware version 29.4063824552.0 7265D-29.ucode op_mode iwlmvm
[   21.317586] iwlwifi 0000:01:00.0: Detected Intel(R) Dual Band Wireless AC 7265, REV=0x210
[   21.393566] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   21.395709] iwlwifi 0000:01:00.0: Allocated 0x00400000 bytes for firmware monitor.
[   21.402568] iwlwifi 0000:01:00.0: base HW address: c8:21:58:b7:a7:b9
[   21.486781] rk817-codec rk817-codec: DMA mask not set
[   21.521409] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   21.523813] dwmac4: Master AXI performs any burst length
[   21.523844] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[   21.523878] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   21.524447] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[   21.528152] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
[   21.555596] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[   21.557476] thermal thermal_zone2: power_allocator: sustainable_power will be estimated
[   21.557589] thermal thermal_zone2: failed to read out thermal zone (-61)
[   21.704742] rk_gmac-dwmac fe2a0000.ethernet eth1: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   21.706985] dwmac4: Master AXI performs any burst length
[   21.707021] rk_gmac-dwmac fe2a0000.ethernet eth1: No Safety Features support found
[   21.707054] rk_gmac-dwmac fe2a0000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported
[   21.707436] rk_gmac-dwmac fe2a0000.ethernet eth1: registered PTP clock
[   21.708150] rk_gmac-dwmac fe2a0000.ethernet eth1: configuring for phy/rgmii link mode
[   22.107778] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up gpu-supply from device tree
[   22.107822] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up gpu-supply property in node /power-management@fdd90000/power-controller failed
[   22.108025] mali fde60000.gpu: Kernel DDK version g17p0-01eac0
[   22.108179] mali fde60000.gpu: Looking up mali-supply from device tree
[   22.108505] mali fde60000.gpu: Looking up mem-supply from device tree
[   22.108536] mali fde60000.gpu: Looking up mem-supply property in node /gpu@fde60000 failed
[   22.108789] mali fde60000.gpu: Looking up mali-supply from device tree
[   22.108840] vdd_gpu: could not add device link fde60000.gpu: -EEXIST
[   22.108845] vdd_gpu: Failed to create debugfs directory
[   22.109111] mali fde60000.gpu: leakage=8
[   22.109156] mali fde60000.gpu: pvtm = 88430, from nvmem
[   22.109171] mali fde60000.gpu: pvtm-volt-sel=2
[   22.110196] mali fde60000.gpu: avs=0
[   22.110251] W : [File] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 143; [Func] : kbase_platform_rk_init(); power-off-delay-ms not available.
[   22.113010] mali fde60000.gpu: GPU identified as 0x2 arch 7.4.0 r1p0 status 0
[   22.113111] mali fde60000.gpu: No priority control manager is configured
[   22.125894] mali fde60000.gpu: No memory group manager is configured
[   22.128030] mali fde60000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   22.131413] pwm-fan pwm-fan: Looking up fan-supply from device tree
[   22.131440] pwm-fan pwm-fan: Looking up fan-supply property in node /pwm-fan failed
[   22.133679] rk-multicodecs rk809-sound: Failed to get ADC channel
[   22.133953] rk-multicodecs rk809-sound: ASoC: Property 'rockchip,audio-routing' does not exist or its length is not even
[   22.137370] rk-multicodecs rk809-sound: Audio routing invalid/unspecified
[   22.138415] mali fde60000.gpu: Probed as mali0
[   22.144110] FAT-fs (mmcblk0p2): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[   22.147432] FAT-fs (mmcblk0p1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[   22.148163] rk817-codec rk817-codec: rk817_probe: chip_name:0x80, chip_ver:0x95
[   22.192340] Bluetooth: Core ver 2.22
[   22.192488] NET: Registered protocol family 31
[   22.192494] Bluetooth: HCI device and connection manager initialized
[   22.192521] Bluetooth: HCI socket layer initialized
[   22.192531] Bluetooth: L2CAP socket layer initialized
[   22.192563] Bluetooth: SCO socket layer initialized
[   22.193408] input: rockchip-rk809 Headset as /devices/platform/rk809-sound/sound/card0/input6
[   22.198367] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card1/input7
[   22.275987] Bluetooth: HCI UART driver ver 2.3
[   22.276009] Bluetooth: HCI UART protocol H4 registered
[   22.276013] Bluetooth: HCI UART protocol ATH3K registered
[   22.276154] Bluetooth: HCI UART protocol Three-wire (H5) registered
[   22.276613] Bluetooth: HCI UART protocol Intel registered
[   22.277173] Bluetooth: HCI UART protocol Broadcom registered
[   22.277226] Bluetooth: HCI UART protocol QCA registered
[   22.280121] hci_uart_bcm serial0-0: Looking up vbat-supply from device tree
[   22.280470] hci_uart_bcm serial0-0: Looking up vddio-supply from device tree
[   22.398355] of_dma_request_slave_channel: dma-names property of node '/serial@fe6c0000' missing or empty
[   22.402122] dw-apb-uart fe6c0000.serial: failed to request DMA, use interrupt mode
[   22.758982] usb 1-1.4: new full-speed USB device number 4 using ehci-platform
[   22.979111] usb 1-1.4: New USB device found, idVendor=8087, idProduct=0a2a, bcdDevice= 0.01
[   22.979128] usb 1-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[   23.180005] iwlwifi 0000:01:00.0 wlp1s0: renamed from wlan0
[   23.334864] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   23.418097] iwlwifi 0000:01:00.0: Applying debug destination EXTERNAL_DRAM
[   23.420228] iwlwifi 0000:01:00.0: FW already configured (0) - re-configuring
[   23.540102] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   23.540124] Bluetooth: BNEP filters: protocol multicast
[   23.540163] Bluetooth: BNEP socket layer initialized
[   23.638147] usbcore: registered new interface driver btusb
[   23.648911] Bluetooth: hci1: read Intel version: 370810011003110e00
[   23.651800] Bluetooth: hci1: Intel Bluetooth firmware file: intel/ibt-hw-37.8.10-fw-1.10.3.11.e.bseq
[   23.962876] Bluetooth: hci1: unexpected event for opcode 0xfc2f
[   23.980906] Bluetooth: hci1: Intel BT fw patch 0x32 completed & activated
[   24.067854] NET: Registered protocol family 38
[   24.621362] Bluetooth: hci0: command 0xfc18 tx timeout
[   25.638255] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   25.638350] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   25.798048] rk_gmac-dwmac fe2a0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx
[   25.798165] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   25.926347] EXT4-fs (mmcblk0p3): resizing filesystem from 1069920 to 7548923 blocks
[   26.276878] EXT4-fs (mmcblk0p3): resized filesystem to 7548923
[   27.719628] ttyFIQ ttyFIQ0: tty_port_close_start: tty->count = 1 port count = 2
[   31.957775] Bluetooth: RFCOMM TTY layer initialized
[   31.957811] Bluetooth: RFCOMM socket layer initialized
[   31.957865] Bluetooth: RFCOMM ver 1.11
[   32.728051] Bluetooth: hci0: BCM: failed to write update baudrate (-110)
[   32.728132] Bluetooth: hci0: Failed to set baudrate
[   34.861509] Bluetooth: hci0: command 0x0c03 tx timeout
[   42.754746] Bluetooth: hci0: BCM: Reset failed (-110)
[  191.390933] wlp1s0: authenticate with 3a:07:16:e3:53:80
[  191.396264] wlp1s0: send auth to 3a:07:16:e3:53:80 (try 1/3)
[  191.425839] wlp1s0: authenticated
[  191.429205] wlp1s0: associate with 3a:07:16:e3:53:80 (try 1/3)
[  191.435002] wlp1s0: RX AssocResp from 3a:07:16:e3:53:80 (capab=0x1111 status=0 aid=3)
[  191.437516] wlp1s0: associated
[  191.496477] IPv6: ADDRCONF(NETDEV_CHANGE): wlp1s0: link becomes ready
[  191.534979] wlp1s0: Limiting TX power to 30 (30 - 0) dBm as advertised by 3a:07:16:e3:53:80
[  772.820998] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_disable] Crtc atomic disable vp0
[ 2620.706093] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11(if:800) for vp0 dclk: 148500000
rock@rock-3b:~$ ~

journalctl :

rock@rock-3b:~$ sudo journalctl | grep mac
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe530000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
Jun 18 14:55:54 rock-3b kernel: dma-pl330 fe550000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply from device tree
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply property in node /ethernet@fe010000 failed
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: no regulator found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: clock input or output? (output).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX delay(0x47).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX delay(0x28).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: init for RGMII
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO supported
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply from device tree
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply property in node /ethernet@fe2a0000 failed
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: no regulator found
Jun 18 14:55:54 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (output).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX delay(0x36).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX delay(0x2d).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: init for RGMII
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO supported
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
Jun 18 14:55:55 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Using 32 bits DMA width
Jun 18 14:55:55 rock-3b systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe530000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
Dec 31 01:26:39 rock-3b kernel: dma-pl330 fe550000.dmac:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply from device tree
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply property in node /ethernet@fe010000 failed
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: no regulator found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: clock input or output? (output).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX delay(0x47).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX delay(0x28).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: init for RGMII
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply from device tree
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Looking up phy-supply property in node /ethernet@fe2a0000 failed
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: no regulator found
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (output).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX delay(0x36).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX delay(0x2d).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: init for RGMII
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO supported
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
Dec 31 01:26:39 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet: Using 32 bits DMA width
Dec 31 01:26:39 rock-3b systemd[1]: Initializing machine ID from random generator.
Dec 31 01:26:39 rock-3b systemd[1]: Starting Commit a transient machine-id on disk...
Dec 31 01:26:39 rock-3b systemd[1]: etc-machine\x2did.mount: Succeeded.
Dec 31 01:26:39 rock-3b systemd[1]: Finished Commit a transient machine-id on disk.
Dec 31 01:26:40 rock-3b NetworkManager[406]: <info>  [1735608400.5912] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-disable-wifi-scan-rand-macaddr.conf, no-mac-addr-change.conf) (etc: 10-dns-resolved.conf, 10-globally-managed-devices.conf)
Dec 31 01:26:41 rock-3b NetworkManager[406]: <info>  [1735608401.8645] device (eth0): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 01:26:42 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
Dec 31 01:26:42 rock-3b NetworkManager[406]: <info>  [1735608402.0868] device (eth1): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 01:26:42 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: No Safety Features support found
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: registered PTP clock
Dec 31 01:26:42 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: configuring for phy/rgmii link mode
Dec 31 01:26:46 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 31 01:26:46 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 31 02:00:24 rock-3b NetworkManager[356]: <info>  [1735610424.4820] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-disable-wifi-scan-rand-macaddr.conf, no-mac-addr-change.conf) (etc: 10-dns-resolved.conf, 10-globally-managed-devices.conf)
Dec 31 02:00:25 rock-3b NetworkManager[356]: <info>  [1735610425.7329] device (eth0): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 02:00:25 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Dec 31 02:00:25 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
Dec 31 02:00:25 rock-3b NetworkManager[356]: <info>  [1735610425.9699] device (eth1): driver 'rk_gmac-dwmac' does not support carrier detection.
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Dec 31 02:00:26 rock-3b kernel: dwmac4: Master AXI performs any burst length
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: No Safety Features support found
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: registered PTP clock
Dec 31 02:00:26 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: configuring for phy/rgmii link mode
Dec 31 02:00:29 rock-3b kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx
Dec 31 02:00:30 rock-3b kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx


@MichaIng
Copy link
Owner

For the second adapter, you could define in a own config, like:

cat << '_EOF_' > /etc/network/interfaces.d/eth1.conf
allow-hotplug eth1
iface eth1 inet static
address 192.168.1.100/24
_EOF_
systemctl daemon-reload
ifup eth1

depending on what you aim to do with it.

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

I plan to either use it as a WAN or LAN port for a firewall, or with eth0 as a part of a etherchannel / LACP port, not quite sure yet...

@MichaIng
Copy link
Owner

Yeah, above just an example. dietpi-config will always setup eth0 as main Interface with default gateway etc, so of course you can also define both by yourself, and comment the lines in /etc/network/interfaces. Aside of that, it is normal that an interface is even physically down (no carrier signal), as long as it has not been brought up if ifup (resp. /etc/network/interfaces/*.d/ config) or any other network stack.

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

I tried your solution, the adapter won't show up, only eth0 & the wlan are available

@MidG971
Copy link
Author

MidG971 commented Dec 31, 2024

after a check, I discovered that :

root@DietPi:/boot# cat dietpiEnv.txt
rootdev=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e
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/rk3568-rock-3a.dtb

I manually modified the last line to fdtfile=rockchip/rk3568-rockb-3.dtb , now I've got my two NICs present, but only one up, despite both cables plugged. I tried to use nmcli to turn on the NICs to no avail :

root@DietPi:/boot# dmesg | grep Radxa
[    0.000000] Machine model: Radxa ROCK 3B
root@DietPi:/boot# dmesg | grep gmac
[    3.589482] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    3.590091] rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
[    3.594574] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    3.600316] rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
[    3.601306] rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
[    3.601890] rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
[    3.602549] rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
[    3.603140] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    3.603932] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    3.609801] rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
[    3.612478] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.613173] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[    3.613656] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    3.615244] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    3.615966] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    3.616776] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    3.617529] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    3.618051] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.618784] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.619436] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    3.620161] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[    3.769648] rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
[    3.770263] rk_gmac-dwmac fe2a0000.ethernet: IRQ sfty not found
[    3.772409] rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (input).
[    3.773093] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
[    3.773752] rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
[    3.774318] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
[    3.774969] rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
[    3.775546] rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
[    3.776759] rk_gmac-dwmac fe2a0000.ethernet: clock input from PHY
[    3.782372] rk_gmac-dwmac fe2a0000.ethernet: init for RGMII_ID
[    3.787814] rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.788644] rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
[    3.789150] rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
[    3.789894] rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
[    3.790639] rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
[    3.791333] rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
[    3.792185] rk_gmac-dwmac fe2a0000.ethernet: TSO supported
[    3.792750] rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.793547] rk_gmac-dwmac fe2a0000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.794248] rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
[    3.794819] rk_gmac-dwmac fe2a0000.ethernet: Using 32/32 bits DMA host/device width
[   10.561939] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[   10.563337] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[   10.573630] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   10.660322] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   10.670470] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[   10.670510] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   10.670908] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[   10.671406] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
[   14.797460] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx

@MichaIng
Copy link
Owner

MichaIng commented Jan 1, 2025

Great. So we can add support for the SBC in general, using ROCK 3A bootloader and adjusting the device tree only. Of course a ROCK 3B bootloader would be better, for network boot capabilities, but a rare use case.

@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

Is there some benchmark or or test or procedure that I can do, for you to validate the support of the board ?

@MichaIng
Copy link
Owner

MichaIng commented Jan 2, 2025

Not really needed. If it boots and those hardware features which differ from the ROCK 3A work, then all is good.

@MichaIng MichaIng added this to the v9.10 milestone Jan 2, 2025
@MichaIng MichaIng changed the title Radxa ROCK 3B Failed Install Image | Radxa ROCK 3B Jan 2, 2025
@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

So it's 99.9% OK as I can't use both NICs at the same time yet...

@MichaIng
Copy link
Owner

MichaIng commented Jan 2, 2025

But both do now show up in ip l? Then it is all perfectly as expected, and you can configure the second NIC manually, as explained above, or use another network stack.

@MidG971
Copy link
Author

MidG971 commented Jan 2, 2025

Yes they do. I tried the method you provided / tried with nmcli / mntui , they do both appear when I use ip a but if I unplug eth0 (the one that works perfectly) to leave only eth1 plugged I'm only left with the wifi.

Those are when only eth1 is plugged :

root@DietPi:~# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f8 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f9 brd ff:ff:ff:ff:ff:ff
4: wlan0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether c8:21:58:b7:a7:b9 brd ff:ff:ff:ff:ff:ff
    inet 192.168.75.103/24 brd 192.168.75.255 scope global dynamic noprefixroute wlan0
       valid_lft 27105sec preferred_lft 27105sec
    inet6 fe80::761c:70db:16db:d051/64 scope link noprefixroute
       valid_lft forever preferred_lft forever
root@DietPi:~# nmcli device
DEVICE         TYPE      STATE                   CONNECTION
wlan0          wifi      connected               morioh
lo             loopback  connected (externally)  lo
eth1           ethernet  disconnected            --
p2p-dev-wlan0  wifi-p2p  disconnected            --
eth0           ethernet  unavailable             --
root@DietPi:~#

Also when I try to activate eth1 with nmtui it fails

@MidG971
Copy link
Author

MidG971 commented Jan 10, 2025

So this could be tested, a fresh build with all Armbian patches removed, just to rule out it is not something conflicting with a recent upstream change:

cd /tmp
wget https://dietpi.com/downloads/binaries/testing/linux-{dtb,image}-current-rockchip64.deb
dpkg -i linux-{dtb,image}-current-rockchip64.deb
reboot

Will test it when I get back.

@MidG971
Copy link
Author

MidG971 commented Jan 11, 2025

cd /tmp
wget https://dietpi.com/downloads/binaries/testing/linux-{image,dtb}-current-rockchip64.deb
dpkg -i linux-{image,dtb}-current-rockchip64.deb

you meant

cd /tmp wget https://dietpi.com/downloads/binaries/testing/linux-{image,dtb}-current-rockchip64.deb dpkg -i linux-{image,dtb}-current-rockchip64.deb

image and dtb are inverted ;)

@MidG971
Copy link
Author

MidG971 commented Jan 11, 2025

So this could be tested, a fresh build with all Armbian patches removed, just to rule out it is not something conflicting with a recent upstream change:

cd /tmp
wget https://dietpi.com/downloads/binaries/testing/linux-{dtb,image}-current-rockchip64.deb
dpkg -i linux-{dtb,image}-current-rockchip64.deb
reboot

Will test it when I get back.

So I loose the wlan this time. Only one NIC ok, always the same.

root@DietPi:~# dmesg
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.000000] Linux version 6.12.8-current-rockchip64 (build@armbian) (aarch64-linux-gnu-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 SMP PREEMPT Thu Jan  2 09:34:26 UTC 2025
[    0.000000] KASLR disabled due to lack of seed
[    0.000000] Machine model: Radxa ROCK 3B
[    0.000000] efi: UEFI not found.
[    0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000001ffffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x1ff01de80-0x1ff0205ff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000200000-0x00000000efffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[    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.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 34 pages/cpu s98968 r8192 d32104 u139264
[    0.000000] pcpu-alloc: s98968 r8192 d32104 u139264 alloc=34*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: root=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e rootfstype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M usb-storage.quirks= net.ifnames=0 androidboot.fwver=ddr-v1.21-2d653b3476,bl31-v1.44,uboot-rmbian-201-10/09/2024
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] Fallback order for Node 0: 0
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2031104
[    0.000000] Policy zone: Normal
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: mapped [mem 0x00000000e4000000-0x00000000e8000000] (64MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    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=4
[    0.000000] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.000000] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 320 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: MBI range [296:319]
[    0.000000] GICv3: Using MBI frame 0x00000000fd410000
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[    0.000000] ITS: No ITS available, not enabling LPIs
[    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.000933] Console: colour dummy device 80x25
[    0.000954] printk: legacy console [tty1] enabled
[    0.001884] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=96000)
[    0.001932] pid_max: default: 32768 minimum: 301
[    0.002060] LSM: initializing lsm=capability,yama,apparmor
[    0.002175] Yama: becoming mindful.
[    0.002521] AppArmor: AppArmor initialized
[    0.002715] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.002796] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.028548] rcu: Hierarchical SRCU implementation.
[    0.028595] rcu:     Max phase no-delay instances is 1000.
[    0.029105] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.032851] EFI services will not be available.
[    0.036005] smp: Bringing up secondary CPUs ...
[    0.048378] Detected VIPT I-cache on CPU1
[    0.048478] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[    0.048538] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    0.056415] Detected VIPT I-cache on CPU2
[    0.056508] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[    0.056558] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    0.064457] Detected VIPT I-cache on CPU3
[    0.064549] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[    0.064597] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    0.064783] smp: Brought up 1 node, 4 CPUs
[    0.064931] SMP: Total of 4 processors activated.
[    0.064949] CPU: All CPU(s) started at EL2
[    0.064967] CPU features: detected: 32-bit EL0 Support
[    0.064985] CPU features: detected: 32-bit EL1 Support
[    0.065007] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.065034] CPU features: detected: Common not Private translations
[    0.065054] CPU features: detected: CRC32 instructions
[    0.065080] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.065099] CPU features: detected: LSE atomic instructions
[    0.065120] CPU features: detected: Privileged Access Never
[    0.065139] CPU features: detected: RAS Extension Support
[    0.065162] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.065261] alternatives: applying system-wide alternatives
[    0.070002] Memory: 7714316K/8124416K available (16384K kernel code, 2910K rwdata, 11048K rodata, 5120K init, 786K bss, 273968K reserved, 131072K cma-reserved)
[    0.072943] devtmpfs: initialized
[    0.088292] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.088381] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.092609] 23648 pages in range for non-PLT usage
[    0.092636] 515168 pages in range for PLT usage
[    0.093049] pinctrl core: initialized pinctrl subsystem
[    0.093933] DMI not present or invalid.
[    0.099067] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.101189] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.102530] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.103694] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.103809] audit: initializing netlink subsys (disabled)
[    0.104176] audit: type=2000 audit(0.100:1): state=initialized audit_enabled=0 res=1
[    0.106718] thermal_sys: Registered thermal governor 'fair_share'
[    0.106733] thermal_sys: Registered thermal governor 'bang_bang'
[    0.106763] thermal_sys: Registered thermal governor 'step_wise'
[    0.106784] thermal_sys: Registered thermal governor 'user_space'
[    0.106902] cpuidle: using governor menu
[    0.107275] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.107519] ASID allocator initialised with 65536 entries
[    0.108023] Serial: AMBA PL011 UART driver
[    0.122250] /vop@fe040000: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.122394] /hdmi@fe0a0000: Fixed dependency cycle(s) with /vop@fe040000
[    0.127967] /pcie@fe260000: Fixed dependency cycle(s) with /pcie@fe260000/legacy-interrupt-controller
[    0.139196] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.139777] rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
[    0.140271] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.140700] rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
[    0.141158] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.141570] rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
[    0.142246] gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.142672] rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
[    0.143150] gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
[    0.143576] rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
[    0.147183] /pcie@fe280000: Fixed dependency cycle(s) with /pcie@fe280000/legacy-interrupt-controller
[    0.148584] /hdmi@fe0a0000: Fixed dependency cycle(s) with /hdmi-con
[    0.148730] /hdmi-con: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.154839] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.154888] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.154915] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.154937] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.154961] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.154982] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.155005] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.155026] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.157089] cryptd: max_cpu_qlen set to 1000
[    0.226514] raid6: neonx8   gen()  1407 MB/s
[    0.294753] raid6: neonx4   gen()  1433 MB/s
[    0.362980] raid6: neonx2   gen()  1321 MB/s
[    0.431188] raid6: neonx1   gen()  1072 MB/s
[    0.499418] raid6: int64x8  gen()   911 MB/s
[    0.567654] raid6: int64x4  gen()  1047 MB/s
[    0.635890] raid6: int64x2  gen()   936 MB/s
[    0.704159] raid6: int64x1  gen()   656 MB/s
[    0.704188] raid6: using algorithm neonx4 gen() 1433 MB/s
[    0.772265] raid6: .... xor() 1102 MB/s, rmw enabled
[    0.772292] raid6: using neon recovery algorithm
[    0.773599] iommu: Default domain type: Translated
[    0.773638] iommu: DMA domain TLB invalidation policy: strict mode
[    0.774649] SCSI subsystem initialized
[    0.774990] libata version 3.00 loaded.
[    0.775340] usbcore: registered new interface driver usbfs
[    0.775414] usbcore: registered new interface driver hub
[    0.775485] usbcore: registered new device driver usb
[    0.776188] pps_core: LinuxPPS API ver. 1 registered
[    0.776219] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.776327] PTP clock support registered
[    0.776407] EDAC MC: Ver: 3.0.0
[    0.776998] scmi_core: SCMI protocol bus registered
[    0.778705] NetLabel: Initializing
[    0.778736] NetLabel:  domain hash size = 128
[    0.778756] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.778875] NetLabel:  unlabeled traffic allowed by default
[    0.779171] vgaarb: loaded
[    0.779843] clocksource: Switched to clocksource arch_sys_counter
[    0.784809] VFS: Disk quotas dquot_6.6.0
[    0.784907] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.785762] AppArmor: AppArmor Filesystem Enabled
[    0.801363] NET: Registered PF_INET protocol family
[    0.801938] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.876868] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.877171] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.877396] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.878584] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.880553] TCP: Hash tables configured (established 65536 bind 65536)
[    0.880802] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.881022] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.881458] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.881528] NET: Registered PF_XDP protocol family
[    0.881570] PCI: CLS 0 bytes, default 64
[    0.881994] Trying to unpack rootfs image as initramfs...
[    0.893285] kvm [1]: nv: 554 coarse grained trap handlers
[    0.893995] kvm [1]: IPA Size Limit: 40 bits
[    0.894073] kvm [1]: GICv3: no GICV resource entry
[    0.894100] kvm [1]: disabling GICv2 emulation
[    0.894160] kvm [1]: GIC system register CPU interface enabled
[    0.894223] kvm [1]: vgic interrupt IRQ9
[    0.894307] kvm [1]: VHE mode initialized successfully
[    0.898557] Initialise system trusted keyrings
[    0.898714] Key type blacklist registered
[    0.899205] workingset: timestamp_bits=44 max_order=21 bucket_order=0
[    0.899322] zbud: loaded
[    0.900379] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.901315] fuse: init (API version 7.41)
[    0.904225] integrity: Platform Keyring initialized
[    0.978160] xor: measuring software checksum speed
[    0.980181]    8regs           :  1669 MB/sec
[    0.982309]    32regs          :  1577 MB/sec
[    0.984322]    arm64_neon      :  1655 MB/sec
[    0.984371] xor: using function: 8regs (1669 MB/sec)
[    0.984406] Key type asymmetric registered
[    0.984427] Asymmetric key parser 'x509' registered
[    0.984623] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.985040] io scheduler mq-deadline registered
[    0.985074] io scheduler kyber registered
[    0.985177] io scheduler bfq registered
[    0.994651] rockchip-naneng-combphy fe830000.phy: error -ENOENT: failed to get phy reset
[    0.994711] rockchip-naneng-combphy fe830000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    0.995138] rockchip-naneng-combphy fe840000.phy: error -ENOENT: failed to get phy reset
[    0.995179] rockchip-naneng-combphy fe840000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    0.995962] rockchip-naneng-combphy fe820000.phy: error -ENOENT: failed to get phy reset
[    0.996021] rockchip-naneng-combphy fe820000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    1.942543] Freeing initrd memory: 15012K
[    1.945904] ledtrig-cpu: registered to indicate activity on CPUs
[    1.954239] dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.954297] dma-pl330 fe530000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.958044] dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.958102] dma-pl330 fe550000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.961857] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    1.967443] printk: legacy console [ttyS2] disabled
[    1.968018] fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 25, base_baud = 1500000) is a 16550A
[    1.968319] printk: legacy console [ttyS2] enabled
[    2.092822] Serial: AMBA driver
[    2.106119] loop: module loaded
[    2.108388] Key type psk registered
[    2.114450] thunder_xcv, ver 1.0
[    2.114826] thunder_bgx, ver 1.0
[    2.115172] nicpf, ver 1.0
[    2.119546] usbcore: registered new interface driver usb-storage
[    2.122798] mousedev: PS/2 mouse device common for all mice
[    2.124059] i2c_dev: i2c /dev entries driver
[    2.127085] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[    2.137676] rtc-hym8563 5-0051: registered as rtc0
[    2.139194] rtc-hym8563 5-0051: setting system clock to 2025-01-11T08:38:27 UTC (1736584707)
[    2.147137] sdhci: Secure Digital Host Controller Interface driver
[    2.147726] sdhci: Copyright(c) Pierre Ossman
[    2.148237] Synopsys Designware Multimedia Card Interface Driver
[    2.149844] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.153006] arm-scmi arm-scmi.1.auto: Using scmi_smc_transport
[    2.153560] arm-scmi arm-scmi.1.auto: SCMI max-rx-timeout: 30ms
[    2.154289] scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
[    2.155376] arm-scmi arm-scmi.1.auto: SCMI Notifications - Core Enabled.
[    2.156135] arm-scmi arm-scmi.1.auto: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    2.158916] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.159938] hid: raw HID events driver (C) Jiri Kosina
[    2.160553] usbcore: registered new interface driver usbhid
[    2.161068] usbhid: USB HID core driver
[    2.164981] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) counters available
[    2.167648] NET: Registered PF_INET6 protocol family
[    2.226662] Segment Routing with IPv6
[    2.227130] In-situ OAM (IOAM) with IPv6
[    2.227625] NET: Registered PF_PACKET protocol family
[    2.228394] 8021q: 802.1Q VLAN Support v1.8
[    2.228869] Key type dns_resolver registered
[    2.242666] registered taskstats version 1
[    2.243529] Loading compiled-in X.509 certificates
[    2.263134] zswap: loaded using pool zstd/z3fold
[    2.264284] Demotion targets for Node 0: null
[    2.265218] Key type .fscrypt registered
[    2.265592] Key type fscrypt-provisioning registered
[    2.269740] Btrfs loaded, zoned=yes, fsverity=yes
[    2.270472] Key type encrypted registered
[    2.270864] AppArmor: AppArmor sha256 policy hashing enabled
[    2.318832] ehci-platform fd800000.usb: EHCI Host Controller
[    2.318866] ohci-platform fd840000.usb: Generic Platform OHCI controller
[    2.318910] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
[    2.319426] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 2
[    2.320254] ehci-platform fd800000.usb: irq 38, io mem 0xfd800000
[    2.320895] ohci-platform fd840000.usb: irq 40, io mem 0xfd840000
[    2.331887] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[    2.332832] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
[    2.333595] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.334256] usb usb1: Product: EHCI Host Controller
[    2.334705] usb usb1: Manufacturer: Linux 6.12.8-current-rockchip64 ehci_hcd
[    2.335345] usb usb1: SerialNumber: fd800000.usb
[    2.336649] hub 1-0:1.0: USB hub found
[    2.337064] hub 1-0:1.0: 1 port detected
[    2.380213] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
[    2.380994] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.381653] usb usb2: Product: Generic Platform OHCI controller
[    2.382193] usb usb2: Manufacturer: Linux 6.12.8-current-rockchip64 ohci_hcd
[    2.382832] usb usb2: SerialNumber: fd840000.usb
[    2.384166] hub 2-0:1.0: USB hub found
[    2.384588] hub 2-0:1.0: 1 port detected
[    2.424963] dwmmc_rockchip fe2b0000.mmc: IDMAC supports 32-bit address mode.
[    2.425670] dwmmc_rockchip fe2b0000.mmc: Using internal DMA controller.
[    2.426284] dwmmc_rockchip fe2b0000.mmc: Version ID is 270a
[    2.426857] dwmmc_rockchip fe2b0000.mmc: DW MMC controller at irq 65,32 bit host data width,256 deep fifo
[    2.442086] WCN: marlin_init entry!
[    2.444036] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.456720] mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
[    2.534808] clk: Disabling unused clocks
[    2.537003] PM: genpd: Disabling unused power domains
[    2.540421] Freeing unused kernel memory: 5120K
[    2.541083] Run /init as init process
[    2.541430]   with arguments:
[    2.541441]     /init
[    2.541450]   with environment:
[    2.541459]     HOME=/
[    2.541467]     TERM=linux
[    2.570607] mmc0: new HS200 MMC card at address 0001
[    2.576358] mmcblk0: mmc0:0001 A3A561 57.6 GiB
[    2.584034]  mmcblk0: p1
[    2.584031] usb 1-1: new high-speed USB device number 2 using ehci-platform
[    2.585814] mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB
[    2.588736] mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB
[    2.591313] mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (243:0)
[    2.732643] usb 1-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
[    2.733426] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.734078] usb 1-1: Product: USB 2.0 Hub
[    2.740251] hub 1-1:1.0: USB hub found
[    2.740795] hub 1-1:1.0: 4 ports detected
[    3.139922] usb 1-1.1: new low-speed USB device number 3 using ehci-platform
[    3.367376] usb 1-1.1: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 1.10
[    3.368300] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.368992] usb 1-1.1: Product: Wired Keyboard 400
[    3.369440] usb 1-1.1: Manufacturer: Microsoft
[    3.379194] input: Microsoft Wired Keyboard 400 as /devices/platform/fd800000.usb/usb1/1-1/1-1.1/1-1.1:1.0/0003:045E:0752.0001/input/input0
[    3.388748] rockchip-vop2 fe040000.vop: Adding to iommu group 0
[    3.391576] rk808-rtc rk808-rtc.5.auto: registered as rtc1
[    3.416063] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    3.416677] rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
[    3.419233] rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops [rockchipdrm])
[    3.426423] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[    3.428772] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[    3.430100] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops [rockchipdrm])
[    3.432341] [drm] Initialized rockchip 1.0.0 for display-subsystem on minor 0
[    3.435741] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    3.436571] rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
[    3.437235] rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
[    3.437798] rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
[    3.438504] rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
[    3.439127] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    3.439795] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    3.449820] rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
[    3.454838] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.455647] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[    3.456258] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    3.457067] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    3.457837] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    3.459231] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    3.460562] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    3.463489] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.467141] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.468713] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    3.470315] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[    3.530131] phy phy-fe8c0000.phy.3: lane number 0, val 1
[    3.530916] rockchip-dw-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
[    3.531656] rockchip-dw-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
[    3.534552] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
[    3.535409] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0040000000
[    3.536777] hid-generic 0003:045E:0752.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-fd800000.usb-1.1/input0
[    3.544471] rockchip-dw-pcie 3c0800000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
[    3.642683] rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
[    3.642711] rk_gmac-dwmac fe2a0000.ethernet: IRQ sfty not found
[    3.644461] rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (input).
[    3.644488] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
[    3.644496] rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
[    3.644507] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
[    3.644514] rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
[    3.644535] rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
[    3.644596] rk_gmac-dwmac fe2a0000.ethernet: clock input from PHY
[    3.649630] rk_gmac-dwmac fe2a0000.ethernet: init for RGMII_ID
[    3.650038] Console: switching to colour frame buffer device 240x67
[    3.650138] rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.650163] rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
[    3.650175] rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
[    3.650183] rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
[    3.650191] rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
[    3.650198] rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
[    3.650327] rk_gmac-dwmac fe2a0000.ethernet: TSO supported
[    3.650340] rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    3.650351] rk_gmac-dwmac fe2a0000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.650361] rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
[    3.650370] rk_gmac-dwmac fe2a0000.ethernet: Using 32/32 bits DMA host/device width
[    3.652618] mdio_bus stmmac-0: MDIO device at address 1 is missing.
[    3.715619] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[    3.743965] rockchip-dw-pcie 3c0800000.pcie: PCIe Gen.3 x2 link up
[    3.745281] rockchip-dw-pcie 3c0800000.pcie: PCI host bridge to bus 0002:00
[    3.746066] pci_bus 0002:00: root bus resource [bus 00-0f]
[    3.746661] pci_bus 0002:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf0100000-0xf01fffff])
[    3.747654] pci_bus 0002:00: root bus resource [mem 0xf0200000-0xf1ffffff]
[    3.751592] pci_bus 0002:00: root bus resource [mem 0x380000000-0x3bfffffff] (bus address [0x40000000-0x7fffffff])
[    3.752844] pci 0002:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
[    3.753661] pci 0002:00:00.0: BAR 0 [mem 0x00000000-0x3fffffff]
[    3.754315] pci 0002:00:00.0: BAR 1 [mem 0x00000000-0x3fffffff]
[    3.754958] pci 0002:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
[    3.755619] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    3.756401] pci 0002:00:00.0:   bridge window [io  0x0000-0x0fff]
[    3.757157] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    3.757954] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    3.758866] pci 0002:00:00.0: supports D1 D2
[    3.759348] pci 0002:00:00.0: PME# supported from D0 D1 D3hot
[    3.774055] pci_bus 0002:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
[    3.775421] pci 0002:01:00.0: [10ec:5765] type 00 class 0x010802 PCIe Endpoint
[    3.776380] pci 0002:01:00.0: BAR 0 [mem 0x00000000-0x00003fff 64bit]
[    3.781652] pci 0002:01:00.0: BAR 5 [mem 0x00000000-0x00001fff]
[    3.787401] pci 0002:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    3.800127] pci 0002:00:00.0: BAR 0 [mem 0x380000000-0x3bfffffff]: assigned
[    3.805508] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: can't assign; no space
[    3.805531] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: failed to assign
[    3.805548] pci 0002:00:00.0: bridge window [mem 0xf0200000-0xf02fffff]: assigned
[    3.821799] pci 0002:00:00.0: ROM [mem 0xf0300000-0xf030ffff pref]: assigned
[    3.827213] pci 0002:01:00.0: BAR 0 [mem 0xf0200000-0xf0203fff 64bit]: assigned
[    3.827280] pci 0002:01:00.0: BAR 5 [mem 0xf0204000-0xf0205fff]: assigned
[    3.827307] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    3.827321] pci 0002:00:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
[    3.827338] pci_bus 0002:00: Some PCI device resources are unassigned, try booting with pci=realloc
[    3.827347] pci_bus 0002:00: resource 4 [io  0x0000-0xfffff]
[    3.827357] pci_bus 0002:00: resource 5 [mem 0xf0200000-0xf1ffffff]
[    3.827366] pci_bus 0002:00: resource 6 [mem 0x380000000-0x3bfffffff]
[    3.827377] pci_bus 0002:01: resource 1 [mem 0xf0200000-0xf02fffff]
[    3.830513] pcieport 0002:00:00.0: PME: Signaling with IRQ 75
[    3.831313] pcieport 0002:00:00.0: AER: enabled with IRQ 75
[    3.832400] nvme nvme0: pci function 0002:01:00.0
[    3.894132] nvme 0002:01:00.0: enabling device (0000 -> 0002)
[    4.037410] hwmon hwmon2: temp1_input not attached to any thermal zone
[    4.084608] nvme nvme0: allocated 64 MiB host memory buffer.
[    4.126349] nvme nvme0: 4/0/0 default/read/poll queues
[    4.148628] nvme nvme0: Ignoring bogus Namespace Identifiers
[    4.292923] EXT4-fs (mmcblk0p1): mounted filesystem 463087c8-1d8f-4075-b7b1-4b86c641e99e ro with ordered data mode. Quota mode: none.
[    4.745742] systemd[1]: Inserted module 'autofs4'
[    4.800485] systemd[1]: systemd 252.31-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.814353] systemd[1]: Detected architecture arm64.
[    4.840625] systemd[1]: Hostname set to <DietPi>.
[    5.015737] dw-apb-uart fe660000.serial: forbid DMA for kernel console
[    5.585692] systemd[1]: Queued start job for default target graphical.target.
[    5.622791] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    5.638665] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    5.653877] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[    5.668614] systemd[1]: Created slice user.slice - User and Session Slice.
[    5.681687] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[    5.695422] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[    5.710077] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[    5.724225] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
[    5.737876] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    5.751760] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[    5.765841] systemd[1]: Reached target paths.target - Path Units.
[    5.779544] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    5.793117] systemd[1]: Reached target slices.target - Slice Units.
[    5.806457] systemd[1]: Reached target swap.target - Swaps.
[    5.819641] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[    5.834149] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[    5.848555] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[    5.864355] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[    5.879636] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[    5.895414] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    5.916396] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[    5.932156] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[    5.988387] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    6.010963] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[    6.033620] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    6.055678] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[    6.104686] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
[    6.131458] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[    6.155083] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[    6.179611] systemd[1]: Starting [email protected] - Load Kernel Module configfs...
[    6.204622] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[    6.228283] systemd[1]: Starting [email protected] - Load Kernel Module drm...
[    6.238370] device-mapper: uevent: version 1.0.3
[    6.239085] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
[    6.267399] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[    6.290765] systemd[1]: Starting [email protected] - Load Kernel Module fuse...
[    6.314085] systemd[1]: Starting [email protected] - Load Kernel Module loop...
[    6.330076] 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).
[    6.350689] systemd[1]: Starting systemd-journald.service - Journal Service...
[    6.383535] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[    6.407224] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[    6.430892] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[    6.467052] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    6.484946] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    6.501576] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    6.518256] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    6.540183] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
[    6.559103] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[    6.577454] systemd[1]: [email protected]: Deactivated successfully.
[    6.578119] EXT4-fs (mmcblk0p1): re-mounted 463087c8-1d8f-4075-b7b1-4b86c641e99e r/w. Quota mode: none.
[    6.592311] systemd[1]: Finished [email protected] - Load Kernel Module configfs.
[    6.616728] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[    6.634728] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    6.651987] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[    6.670178] systemd[1]: [email protected]: Deactivated successfully.
[    6.679033] systemd[1]: Finished [email protected] - Load Kernel Module drm.
[    6.696648] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    6.706100] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[    6.723678] systemd[1]: [email protected]: Deactivated successfully.
[    6.732652] systemd[1]: Finished [email protected] - Load Kernel Module fuse.
[    6.750331] systemd[1]: [email protected]: Deactivated successfully.
[    6.759699] systemd[1]: Finished [email protected] - Load Kernel Module loop.
[    6.776280] systemd[1]: Started systemd-journald.service - Journal Service.
[    7.379493] systemd-journald[230]: Received client request to flush runtime journal.
[    9.039617] panfrost fde60000.gpu: clock rate = 594000000
[    9.039651] panfrost fde60000.gpu: bus_clock rate = 500000000
[    9.043078] mc: Linux media interface: v0.10
[    9.047778] panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
[    9.047799] panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,00000400
[    9.047806] panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
[    9.047814] panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
[    9.058910] videodev: Linux video capture interface: v2.00
[    9.061384] [drm] Initialized panfrost 1.2.0 for fde60000.gpu on minor 1
[    9.155939] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey.4.auto/input/input1
[    9.158127] rockchip-rga fdeb0000.rga: HW Version: 0x03.02
[    9.158519] rockchip-rga fdeb0000.rga: Registered rockchip-rga as /dev/video0
[    9.177991] hantro-vpu fdea0000.video-codec: Adding to iommu group 1
[    9.178922] hantro-vpu fdea0000.video-codec: registered rockchip,rk3568-vpu-dec as /dev/video1
[    9.184685] hantro-vpu fdee0000.video-codec: Adding to iommu group 2
[    9.187097] hantro-vpu fdee0000.video-codec: registered rockchip,rk3568-vepu-enc as /dev/video2
[    9.340340] random: crng init done
[    9.454508] Registered IR keymap rc-empty
[    9.454649] rc rc0: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0
[    9.457246] rc rc0: lirc_dev: driver gpio_ir_recv registered at minor = 0, raw IR receiver, no transmitter
[    9.457420] input: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0/input2
[    9.981605] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   10.063926] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   10.071894] dwmac4: Master AXI performs any burst length
[   10.071929] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[   10.071955] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   10.072261] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[   10.072614] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
[   10.098651] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[   10.100058] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[   13.166332] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   19.689549] platform fd000000.usb: deferred probe pending: platform: supplier fe830000.phy not ready
[   19.689597] platform 3c0000000.pcie: deferred probe pending: platform: supplier fe840000.phy not ready
[   19.689623] platform fcc00000.usb: deferred probe pending: platform: supplier fe820000.phy not ready
[   33.768570] vdd_npu: disabling
root@DietPi:~#


root@DietPi:~# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
    link/ether e2:e1:76:03:12:f8 brd ff:ff:ff:ff:ff:ff
    inet 192.168.1.109/24 brd 192.168.1.255 scope global dynamic eth0
       valid_lft 42778sec preferred_lft 42778sec
3: eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
    link/ether e2:e1:76:03:12:f9 brd ff:ff:ff:ff:ff:ff

@MidG971
Copy link
Author

MidG971 commented Jan 11, 2025

journalctl :

Jan 11 09:38:31 DietPi kernel: SMP: Total of 4 processors activated.
Jan 11 09:38:31 DietPi kernel: CPU: All CPU(s) started at EL2
Jan 11 09:38:31 DietPi kernel: CPU features: detected: 32-bit EL0 Support
Jan 11 09:38:31 DietPi kernel: CPU features: detected: 32-bit EL1 Support
Jan 11 09:38:31 DietPi kernel: CPU features: detected: Data cache clean to the PoU not required for I/D coherence
Jan 11 09:38:31 DietPi kernel: CPU features: detected: Common not Private translations
Jan 11 09:38:31 DietPi kernel: CPU features: detected: CRC32 instructions
Jan 11 09:38:31 DietPi kernel: CPU features: detected: RCpc load-acquire (LDAPR)
Jan 11 09:38:31 DietPi kernel: CPU features: detected: LSE atomic instructions
Jan 11 09:38:31 DietPi kernel: CPU features: detected: Privileged Access Never
Jan 11 09:38:31 DietPi kernel: CPU features: detected: RAS Extension Support
Jan 11 09:38:31 DietPi kernel: CPU features: detected: Speculative Store Bypassing Safe (SSBS)
Jan 11 09:38:31 DietPi kernel: alternatives: applying system-wide alternatives
Jan 11 09:38:31 DietPi kernel: Memory: 7714316K/8124416K available (16384K kernel code, 2910K rwdata, 11048K rodata, 5120K init, 786K bss, 273968K reserved, 131072K cma-reserved)
Jan 11 09:38:31 DietPi kernel: devtmpfs: initialized
Jan 11 09:38:31 DietPi kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jan 11 09:38:31 DietPi kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Jan 11 09:38:31 DietPi kernel: 23648 pages in range for non-PLT usage
Jan 11 09:38:31 DietPi kernel: 515168 pages in range for PLT usage
Jan 11 09:38:31 DietPi kernel: pinctrl core: initialized pinctrl subsystem
Jan 11 09:38:31 DietPi kernel: DMI not present or invalid.
Jan 11 09:38:31 DietPi kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jan 11 09:38:31 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Jan 11 09:38:31 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jan 11 09:38:31 DietPi kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jan 11 09:38:31 DietPi kernel: audit: initializing netlink subsys (disabled)
Jan 11 09:38:31 DietPi kernel: audit: type=2000 audit(0.100:1): state=initialized audit_enabled=0 res=1
Jan 11 09:38:31 DietPi kernel: thermal_sys: Registered thermal governor 'fair_share'
Jan 11 09:38:31 DietPi kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jan 11 09:38:31 DietPi kernel: thermal_sys: Registered thermal governor 'step_wise'
Jan 11 09:38:31 DietPi kernel: thermal_sys: Registered thermal governor 'user_space'
Jan 11 09:38:31 DietPi kernel: cpuidle: using governor menu
Jan 11 09:38:31 DietPi kernel: hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
Jan 11 09:38:31 DietPi kernel: ASID allocator initialised with 65536 entries
Jan 11 09:38:31 DietPi kernel: Serial: AMBA PL011 UART driver
Jan 11 09:38:31 DietPi kernel: /vop@fe040000: Fixed dependency cycle(s) with /hdmi@fe0a0000
Jan 11 09:38:31 DietPi kernel: /hdmi@fe0a0000: Fixed dependency cycle(s) with /vop@fe040000
Jan 11 09:38:31 DietPi kernel: /pcie@fe260000: Fixed dependency cycle(s) with /pcie@fe260000/legacy-interrupt-controller
Jan 11 09:38:31 DietPi kernel: gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation.
Jan 11 09:38:31 DietPi kernel: rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
Jan 11 09:38:31 DietPi kernel: gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation.
Jan 11 09:38:31 DietPi kernel: rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
Jan 11 09:38:31 DietPi kernel: gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation.
Jan 11 09:38:31 DietPi kernel: rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
Jan 11 09:38:31 DietPi kernel: gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic allocation.
Jan 11 09:38:31 DietPi kernel: rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
Jan 11 09:38:31 DietPi kernel: gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic allocation.
Jan 11 09:38:31 DietPi kernel: rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
Jan 11 09:38:31 DietPi kernel: /pcie@fe280000: Fixed dependency cycle(s) with /pcie@fe280000/legacy-interrupt-controller
Jan 11 09:38:31 DietPi kernel: /hdmi@fe0a0000: Fixed dependency cycle(s) with /hdmi-con
Jan 11 09:38:31 DietPi kernel: /hdmi-con: Fixed dependency cycle(s) with /hdmi@fe0a0000
Jan 11 09:38:31 DietPi kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Jan 11 09:38:31 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
Jan 11 09:38:31 DietPi kernel: HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
Jan 11 09:38:31 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
Jan 11 09:38:31 DietPi kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Jan 11 09:38:31 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
Jan 11 09:38:31 DietPi kernel: HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
Jan 11 09:38:31 DietPi kernel: HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
Jan 11 09:38:31 DietPi kernel: cryptd: max_cpu_qlen set to 1000
Jan 11 09:38:31 DietPi kernel: raid6: neonx8   gen()  1407 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: neonx4   gen()  1433 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: neonx2   gen()  1321 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: neonx1   gen()  1072 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: int64x8  gen()   911 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: int64x4  gen()  1047 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: int64x2  gen()   936 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: int64x1  gen()   656 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: using algorithm neonx4 gen() 1433 MB/s
Jan 11 09:38:31 DietPi kernel: raid6: .... xor() 1102 MB/s, rmw enabled
Jan 11 09:38:31 DietPi kernel: raid6: using neon recovery algorithm
Jan 11 09:38:31 DietPi kernel: iommu: Default domain type: Translated
Jan 11 09:38:31 DietPi kernel: iommu: DMA domain TLB invalidation policy: strict mode
Jan 11 09:38:31 DietPi kernel: SCSI subsystem initialized
Jan 11 09:38:31 DietPi kernel: libata version 3.00 loaded.
Jan 11 09:38:31 DietPi kernel: usbcore: registered new interface driver usbfs
Jan 11 09:38:31 DietPi kernel: usbcore: registered new interface driver hub
Jan 11 09:38:31 DietPi kernel: usbcore: registered new device driver usb
Jan 11 09:38:31 DietPi kernel: pps_core: LinuxPPS API ver. 1 registered
Jan 11 09:38:31 DietPi kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
Jan 11 09:38:31 DietPi kernel: PTP clock support registered
Jan 11 09:38:31 DietPi kernel: EDAC MC: Ver: 3.0.0
Jan 11 09:38:31 DietPi kernel: scmi_core: SCMI protocol bus registered
Jan 11 09:38:31 DietPi kernel: NetLabel: Initializing
Jan 11 09:38:31 DietPi kernel: NetLabel:  domain hash size = 128
Jan 11 09:38:31 DietPi kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jan 11 09:38:31 DietPi kernel: NetLabel:  unlabeled traffic allowed by default
Jan 11 09:38:31 DietPi kernel: vgaarb: loaded
Jan 11 09:38:31 DietPi kernel: clocksource: Switched to clocksource arch_sys_counter
Jan 11 09:38:31 DietPi kernel: VFS: Disk quotas dquot_6.6.0
Jan 11 09:38:31 DietPi kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 11 09:38:31 DietPi kernel: AppArmor: AppArmor Filesystem Enabled
Jan 11 09:38:31 DietPi kernel: NET: Registered PF_INET protocol family
Jan 11 09:38:31 DietPi kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jan 11 09:38:31 DietPi kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Jan 11 09:38:31 DietPi kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Jan 11 09:38:31 DietPi kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jan 11 09:38:31 DietPi kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Jan 11 09:38:31 DietPi kernel: TCP: Hash tables configured (established 65536 bind 65536)
Jan 11 09:38:31 DietPi kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jan 11 09:38:31 DietPi kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jan 11 09:38:31 DietPi kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jan 11 09:38:31 DietPi kernel: NET: Registered PF_XDP protocol family
Jan 11 09:38:31 DietPi kernel: PCI: CLS 0 bytes, default 64
Jan 11 09:38:31 DietPi kernel: Trying to unpack rootfs image as initramfs...
Jan 11 09:38:31 DietPi kernel: kvm [1]: nv: 554 coarse grained trap handlers
Jan 11 09:38:31 DietPi kernel: kvm [1]: IPA Size Limit: 40 bits
Jan 11 09:38:31 DietPi kernel: kvm [1]: GICv3: no GICV resource entry
Jan 11 09:38:31 DietPi kernel: kvm [1]: disabling GICv2 emulation
Jan 11 09:38:31 DietPi kernel: kvm [1]: GIC system register CPU interface enabled
Jan 11 09:38:31 DietPi kernel: kvm [1]: vgic interrupt IRQ9
Jan 11 09:38:31 DietPi kernel: kvm [1]: VHE mode initialized successfully
Jan 11 09:38:31 DietPi kernel: Initialise system trusted keyrings
Jan 11 09:38:31 DietPi kernel: Key type blacklist registered
Jan 11 09:38:31 DietPi kernel: workingset: timestamp_bits=44 max_order=21 bucket_order=0
Jan 11 09:38:31 DietPi kernel: zbud: loaded
Jan 11 09:38:31 DietPi kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jan 11 09:38:31 DietPi kernel: fuse: init (API version 7.41)
Jan 11 09:38:31 DietPi kernel: integrity: Platform Keyring initialized
Jan 11 09:38:31 DietPi kernel: xor: measuring software checksum speed
Jan 11 09:38:31 DietPi kernel:    8regs           :  1669 MB/sec
Jan 11 09:38:31 DietPi kernel:    32regs          :  1577 MB/sec
Jan 11 09:38:31 DietPi kernel:    arm64_neon      :  1655 MB/sec
Jan 11 09:38:31 DietPi kernel: xor: using function: 8regs (1669 MB/sec)
Jan 11 09:38:31 DietPi kernel: Key type asymmetric registered
Jan 11 09:38:31 DietPi kernel: Asymmetric key parser 'x509' registered
Jan 11 09:38:31 DietPi kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Jan 11 09:38:31 DietPi kernel: io scheduler mq-deadline registered
Jan 11 09:38:31 DietPi kernel: io scheduler kyber registered
Jan 11 09:38:31 DietPi kernel: io scheduler bfq registered
Jan 11 09:38:31 DietPi kernel: rockchip-naneng-combphy fe830000.phy: error -ENOENT: failed to get phy reset
Jan 11 09:38:31 DietPi kernel: rockchip-naneng-combphy fe830000.phy: probe with driver rockchip-naneng-combphy failed with error -2
Jan 11 09:38:31 DietPi kernel: rockchip-naneng-combphy fe840000.phy: error -ENOENT: failed to get phy reset
Jan 11 09:38:31 DietPi kernel: rockchip-naneng-combphy fe840000.phy: probe with driver rockchip-naneng-combphy failed with error -2
Jan 11 09:38:31 DietPi kernel: rockchip-naneng-combphy fe820000.phy: error -ENOENT: failed to get phy reset
Jan 11 09:38:31 DietPi kernel: rockchip-naneng-combphy fe820000.phy: probe with driver rockchip-naneng-combphy failed with error -2
Jan 11 09:38:31 DietPi kernel: Freeing initrd memory: 15012K
Jan 11 09:38:31 DietPi kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jan 11 09:38:31 DietPi kernel: dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
Jan 11 09:38:31 DietPi kernel: dma-pl330 fe530000.dma-controller:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Jan 11 09:38:31 DietPi kernel: dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
Jan 11 09:38:31 DietPi kernel: dma-pl330 fe550000.dma-controller:         DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
Jan 11 09:38:31 DietPi kernel: Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
Jan 11 09:38:31 DietPi kernel: printk: legacy console [ttyS2] disabled
Jan 11 09:38:31 DietPi kernel: fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 25, base_baud = 1500000) is a 16550A
Jan 11 09:38:31 DietPi kernel: printk: legacy console [ttyS2] enabled
Jan 11 09:38:31 DietPi kernel: Serial: AMBA driver
Jan 11 09:38:31 DietPi kernel: loop: module loaded
Jan 11 09:38:31 DietPi kernel: Key type psk registered
Jan 11 09:38:31 DietPi kernel: thunder_xcv, ver 1.0
Jan 11 09:38:31 DietPi kernel: thunder_bgx, ver 1.0
Jan 11 09:38:31 DietPi kernel: nicpf, ver 1.0
Jan 11 09:38:31 DietPi kernel: usbcore: registered new interface driver usb-storage
Jan 11 09:38:31 DietPi kernel: mousedev: PS/2 mouse device common for all mice
Jan 11 09:38:31 DietPi kernel: i2c_dev: i2c /dev entries driver
Jan 11 09:38:31 DietPi kernel: fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
Jan 11 09:38:31 DietPi kernel: rtc-hym8563 5-0051: registered as rtc0
Jan 11 09:38:31 DietPi kernel: rtc-hym8563 5-0051: setting system clock to 2025-01-11T08:38:27 UTC (1736584707)
Jan 11 09:38:31 DietPi kernel: sdhci: Secure Digital Host Controller Interface driver
Jan 11 09:38:31 DietPi kernel: sdhci: Copyright(c) Pierre Ossman
Jan 11 09:38:31 DietPi kernel: Synopsys Designware Multimedia Card Interface Driver
Jan 11 09:38:31 DietPi kernel: sdhci-pltfm: SDHCI platform and OF driver helper
Jan 11 09:38:31 DietPi kernel: arm-scmi arm-scmi.1.auto: Using scmi_smc_transport
Jan 11 09:38:31 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI max-rx-timeout: 30ms
Jan 11 09:38:31 DietPi kernel: scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
Jan 11 09:38:31 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI Notifications - Core Enabled.
Jan 11 09:38:31 DietPi kernel: arm-scmi arm-scmi.1.auto: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
Jan 11 09:38:31 DietPi kernel: SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
Jan 11 09:38:31 DietPi kernel: hid: raw HID events driver (C) Jiri Kosina
Jan 11 09:38:31 DietPi kernel: usbcore: registered new interface driver usbhid
Jan 11 09:38:31 DietPi kernel: usbhid: USB HID core driver
Jan 11 09:38:31 DietPi kernel: hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) counters available
Jan 11 09:38:31 DietPi kernel: NET: Registered PF_INET6 protocol family
Jan 11 09:38:31 DietPi kernel: Segment Routing with IPv6
Jan 11 09:38:31 DietPi kernel: In-situ OAM (IOAM) with IPv6
Jan 11 09:38:31 DietPi kernel: NET: Registered PF_PACKET protocol family
Jan 11 09:38:31 DietPi kernel: 8021q: 802.1Q VLAN Support v1.8
Jan 11 09:38:31 DietPi kernel: Key type dns_resolver registered
Jan 11 09:38:31 DietPi kernel: registered taskstats version 1
Jan 11 09:38:31 DietPi kernel: Loading compiled-in X.509 certificates
Jan 11 09:38:31 DietPi kernel: zswap: loaded using pool zstd/z3fold
Jan 11 09:38:31 DietPi kernel: Demotion targets for Node 0: null
Jan 11 09:38:31 DietPi kernel: Key type .fscrypt registered
Jan 11 09:38:31 DietPi kernel: Key type fscrypt-provisioning registered
Jan 11 09:38:31 DietPi kernel: Btrfs loaded, zoned=yes, fsverity=yes
Jan 11 09:38:31 DietPi kernel: Key type encrypted registered
Jan 11 09:38:31 DietPi kernel: AppArmor: AppArmor sha256 policy hashing enabled
Jan 11 09:38:31 DietPi kernel: ehci-platform fd800000.usb: EHCI Host Controller
Jan 11 09:38:31 DietPi kernel: ohci-platform fd840000.usb: Generic Platform OHCI controller
Jan 11 09:38:31 DietPi kernel: ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
Jan 11 09:38:31 DietPi kernel: ohci-platform fd840000.usb: new USB bus registered, assigned bus number 2
Jan 11 09:38:31 DietPi kernel: ehci-platform fd800000.usb: irq 38, io mem 0xfd800000
Jan 11 09:38:31 DietPi kernel: ohci-platform fd840000.usb: irq 40, io mem 0xfd840000
Jan 11 09:38:31 DietPi kernel: ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
Jan 11 09:38:31 DietPi kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.12
Jan 11 09:38:31 DietPi kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 11 09:38:31 DietPi kernel: usb usb1: Product: EHCI Host Controller
Jan 11 09:38:31 DietPi kernel: usb usb1: Manufacturer: Linux 6.12.8-current-rockchip64 ehci_hcd
Jan 11 09:38:31 DietPi kernel: usb usb1: SerialNumber: fd800000.usb
Jan 11 09:38:31 DietPi kernel: hub 1-0:1.0: USB hub found
Jan 11 09:38:31 DietPi kernel: hub 1-0:1.0: 1 port detected
Jan 11 09:38:31 DietPi kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.12
Jan 11 09:38:31 DietPi kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 11 09:38:31 DietPi kernel: usb usb2: Product: Generic Platform OHCI controller
Jan 11 09:38:31 DietPi kernel: usb usb2: Manufacturer: Linux 6.12.8-current-rockchip64 ohci_hcd
Jan 11 09:38:31 DietPi kernel: usb usb2: SerialNumber: fd840000.usb
Jan 11 09:38:31 DietPi kernel: hub 2-0:1.0: USB hub found
Jan 11 09:38:31 DietPi kernel: hub 2-0:1.0: 1 port detected
Jan 11 09:38:31 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: IDMAC supports 32-bit address mode.
Jan 11 09:38:31 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: Using internal DMA controller.
Jan 11 09:38:31 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: Version ID is 270a
Jan 11 09:38:31 DietPi kernel: dwmmc_rockchip fe2b0000.mmc: DW MMC controller at irq 65,32 bit host data width,256 deep fifo
Jan 11 09:38:31 DietPi kernel: WCN: marlin_init entry!
Jan 11 09:38:31 DietPi kernel: mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
Jan 11 09:38:31 DietPi kernel: mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
Jan 11 09:38:31 DietPi kernel: clk: Disabling unused clocks
Jan 11 09:38:31 DietPi kernel: PM: genpd: Disabling unused power domains
Jan 11 09:38:31 DietPi kernel: Freeing unused kernel memory: 5120K
Jan 11 09:38:31 DietPi kernel: Run /init as init process
Jan 11 09:38:31 DietPi kernel:   with arguments:
Jan 11 09:38:31 DietPi kernel:     /init
Jan 11 09:38:31 DietPi kernel:   with environment:
Jan 11 09:38:31 DietPi kernel:     HOME=/
Jan 11 09:38:31 DietPi kernel:     TERM=linux
Jan 11 09:38:31 DietPi kernel: mmc0: new HS200 MMC card at address 0001
Jan 11 09:38:31 DietPi kernel: mmcblk0: mmc0:0001 A3A561 57.6 GiB
Jan 11 09:38:31 DietPi kernel:  mmcblk0: p1
Jan 11 09:38:31 DietPi kernel: usb 1-1: new high-speed USB device number 2 using ehci-platform
Jan 11 09:38:31 DietPi kernel: mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB
Jan 11 09:38:31 DietPi kernel: mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB
Jan 11 09:38:31 DietPi kernel: mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (243:0)
Jan 11 09:38:31 DietPi kernel: usb 1-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
Jan 11 09:38:31 DietPi kernel: usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jan 11 09:38:31 DietPi kernel: usb 1-1: Product: USB 2.0 Hub
Jan 11 09:38:31 DietPi kernel: hub 1-1:1.0: USB hub found
Jan 11 09:38:31 DietPi kernel: hub 1-1:1.0: 4 ports detected
Jan 11 09:38:31 DietPi kernel: usb 1-1.1: new low-speed USB device number 3 using ehci-platform
Jan 11 09:38:31 DietPi kernel: usb 1-1.1: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 1.10
Jan 11 09:38:31 DietPi kernel: usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jan 11 09:38:31 DietPi kernel: usb 1-1.1: Product: Wired Keyboard 400
Jan 11 09:38:32 DietPi kernel: usb 1-1.1: Manufacturer: Microsoft
Jan 11 09:38:32 DietPi kernel: input: Microsoft Wired Keyboard 400 as /devices/platform/fd800000.usb/usb1/1-1/1-1.1/1-1.1:1.0/0003:045E:0752.0001/input/input0
Jan 11 09:38:32 DietPi kernel: rockchip-vop2 fe040000.vop: Adding to iommu group 0
Jan 11 09:38:32 DietPi kernel: rk808-rtc rk808-rtc.5.auto: registered as rtc1
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
Jan 11 09:38:32 DietPi kernel: rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_ops [rockchipdrm])
Jan 11 09:38:32 DietPi kernel: dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
Jan 11 09:38:32 DietPi kernel: dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
Jan 11 09:38:32 DietPi kernel: rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip_ops [rockchipdrm])
Jan 11 09:38:32 DietPi kernel: [drm] Initialized rockchip 1.0.0 for display-subsystem on minor 0
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Can not read property: tx_delay.
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: set tx_delay to 0x30
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Can not read property: rx_delay.
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: set rx_delay to 0x10
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: clock input from PHY
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: init for RGMII_ID
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TSO supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
Jan 11 09:38:32 DietPi kernel: phy phy-fe8c0000.phy.3: lane number 0, val 1
Jan 11 09:38:32 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
Jan 11 09:38:32 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
Jan 11 09:38:32 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0x00f0200000
Jan 11 09:38:32 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0x0040000000
Jan 11 09:38:32 DietPi kernel: hid-generic 0003:045E:0752.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-fd800000.usb-1.1/input0
Jan 11 09:38:32 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, limit 8G
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: IRQ sfty not found
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (input).
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: clock input from PHY
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: init for RGMII_ID
Jan 11 09:38:32 DietPi kernel: Console: switching to colour frame buffer device 240x67
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO supported
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Enabled RFS Flow TC (entries=10)
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
Jan 11 09:38:32 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet: Using 32/32 bits DMA host/device width
Jan 11 09:38:32 DietPi kernel: mdio_bus stmmac-0: MDIO device at address 1 is missing.
Jan 11 09:38:32 DietPi kernel: rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
Jan 11 09:38:32 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: PCIe Gen.3 x2 link up
Jan 11 09:38:32 DietPi kernel: rockchip-dw-pcie 3c0800000.pcie: PCI host bridge to bus 0002:00
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: root bus resource [bus 00-0f]
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf0100000-0xf01fffff])
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: root bus resource [mem 0xf0200000-0xf1ffffff]
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: root bus resource [mem 0x380000000-0x3bfffffff] (bus address [0x40000000-0x7fffffff])
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: BAR 0 [mem 0x00000000-0x3fffffff]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem 0x00000000-0x3fffffff]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: PCI bridge to [bus 01-ff]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0:   bridge window [io  0x0000-0x0fff]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: supports D1 D2
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: PME# supported from D0 D1 D3hot
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (conflicts with (null) [bus 00-0f])
Jan 11 09:38:32 DietPi kernel: pci 0002:01:00.0: [10ec:5765] type 00 class 0x010802 PCIe Endpoint
Jan 11 09:38:32 DietPi kernel: pci 0002:01:00.0: BAR 0 [mem 0x00000000-0x00003fff 64bit]
Jan 11 09:38:32 DietPi kernel: pci 0002:01:00.0: BAR 5 [mem 0x00000000-0x00001fff]
Jan 11 09:38:32 DietPi kernel: pci 0002:01:00.0: 15.752 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x2 link at 0002:00:00.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: BAR 0 [mem 0x380000000-0x3bfffffff]: assigned
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: can't assign; no space
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: failed to assign
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: bridge window [mem 0xf0200000-0xf02fffff]: assigned
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: ROM [mem 0xf0300000-0xf030ffff pref]: assigned
Jan 11 09:38:32 DietPi kernel: pci 0002:01:00.0: BAR 0 [mem 0xf0200000-0xf0203fff 64bit]: assigned
Jan 11 09:38:32 DietPi kernel: pci 0002:01:00.0: BAR 5 [mem 0xf0204000-0xf0205fff]: assigned
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0: PCI bridge to [bus 01-ff]
Jan 11 09:38:32 DietPi kernel: pci 0002:00:00.0:   bridge window [mem 0xf0200000-0xf02fffff]
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: Some PCI device resources are unassigned, try booting with pci=realloc
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: resource 4 [io  0x0000-0xfffff]
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: resource 5 [mem 0xf0200000-0xf1ffffff]
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:00: resource 6 [mem 0x380000000-0x3bfffffff]
Jan 11 09:38:32 DietPi kernel: pci_bus 0002:01: resource 1 [mem 0xf0200000-0xf02fffff]
Jan 11 09:38:32 DietPi kernel: pcieport 0002:00:00.0: PME: Signaling with IRQ 75
Jan 11 09:38:32 DietPi kernel: pcieport 0002:00:00.0: AER: enabled with IRQ 75
Jan 11 09:38:32 DietPi kernel: nvme nvme0: pci function 0002:01:00.0
Jan 11 09:38:32 DietPi kernel: nvme 0002:01:00.0: enabling device (0000 -> 0002)
Jan 11 09:38:32 DietPi kernel: hwmon hwmon2: temp1_input not attached to any thermal zone
Jan 11 09:38:32 DietPi kernel: nvme nvme0: allocated 64 MiB host memory buffer.
Jan 11 09:38:32 DietPi kernel: nvme nvme0: 4/0/0 default/read/poll queues
Jan 11 09:38:32 DietPi kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
Jan 11 09:38:32 DietPi kernel: EXT4-fs (mmcblk0p1): mounted filesystem 463087c8-1d8f-4075-b7b1-4b86c641e99e ro with ordered data mode. Quota mode: none.
Jan 11 09:38:32 DietPi systemd[1]: Inserted module 'autofs4'
Jan 11 09:38:32 DietPi systemd[1]: systemd 252.31-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)
Jan 11 09:38:32 DietPi systemd[1]: Detected architecture arm64.
Jan 11 09:38:32 DietPi systemd[1]: Hostname set to <DietPi>.
Jan 11 09:38:32 DietPi kernel: dw-apb-uart fe660000.serial: forbid DMA for kernel console
Jan 11 09:38:32 DietPi systemd[1]: Queued start job for default target graphical.target.
Jan 11 09:38:32 DietPi systemd[1]: Created slice system-getty.slice - Slice /system/getty.
Jan 11 09:38:32 DietPi systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
Jan 11 09:38:32 DietPi systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
Jan 11 09:38:32 DietPi systemd[1]: Created slice user.slice - User and Session Slice.
Jan 11 09:38:32 DietPi systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
Jan 11 09:38:32 DietPi systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
Jan 11 09:38:32 DietPi systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
Jan 11 09:38:32 DietPi systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
Jan 11 09:38:32 DietPi systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
Jan 11 09:38:32 DietPi systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
Jan 11 09:38:32 DietPi systemd[1]: Reached target paths.target - Path Units.
Jan 11 09:38:32 DietPi systemd[1]: Reached target remote-fs.target - Remote File Systems.
Jan 11 09:38:32 DietPi systemd[1]: Reached target slices.target - Slice Units.
Jan 11 09:38:32 DietPi systemd[1]: Reached target swap.target - Swaps.
Jan 11 09:38:32 DietPi systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
Jan 11 09:38:32 DietPi systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
Jan 11 09:38:32 DietPi systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
Jan 11 09:38:32 DietPi systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
Jan 11 09:38:32 DietPi systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
Jan 11 09:38:32 DietPi systemd[1]: Listening on systemd-journald.socket - Journal Socket.
Jan 11 09:38:32 DietPi systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Jan 11 09:38:32 DietPi systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Jan 11 09:38:32 DietPi systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
Jan 11 09:38:32 DietPi systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
Jan 11 09:38:32 DietPi systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
Jan 11 09:38:32 DietPi systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Jan 11 09:38:32 DietPi systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
Jan 11 09:38:32 DietPi systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
Jan 11 09:38:32 DietPi systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Jan 11 09:38:32 DietPi systemd[1]: Starting [email protected] - Load Kernel Module configfs...
Jan 11 09:38:32 DietPi systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
Jan 11 09:38:32 DietPi systemd[1]: Starting [email protected] - Load Kernel Module drm...
Jan 11 09:38:32 DietPi kernel: device-mapper: uevent: version 1.0.3
Jan 11 09:38:32 DietPi kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
Jan 11 09:38:32 DietPi systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Jan 11 09:38:32 DietPi systemd[1]: Starting [email protected] - Load Kernel Module fuse...
Jan 11 09:38:32 DietPi systemd[1]: Starting [email protected] - Load Kernel Module loop...
Jan 11 09:38:32 DietPi 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).
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-journald.service - Journal Service...
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
Jan 11 09:38:32 DietPi systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
Jan 11 09:38:32 DietPi systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
Jan 11 09:38:32 DietPi systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
Jan 11 09:38:32 DietPi systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
Jan 11 09:38:32 DietPi systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
Jan 11 09:38:32 DietPi systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
Jan 11 09:38:32 DietPi systemd[1]: [email protected]: Deactivated successfully.
Jan 11 09:38:32 DietPi kernel: EXT4-fs (mmcblk0p1): re-mounted 463087c8-1d8f-4075-b7b1-4b86c641e99e r/w. Quota mode: none.
Jan 11 09:38:32 DietPi systemd[1]: Finished [email protected] - Load Kernel Module configfs.
Jan 11 09:38:32 DietPi systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
Jan 11 09:38:32 DietPi systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Jan 11 09:38:32 DietPi systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
Jan 11 09:38:32 DietPi systemd[1]: [email protected]: Deactivated successfully.
Jan 11 09:38:32 DietPi systemd[1]: Finished [email protected] - Load Kernel Module drm.
Jan 11 09:38:32 DietPi systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Jan 11 09:38:32 DietPi systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Jan 11 09:38:32 DietPi systemd[1]: [email protected]: Deactivated successfully.
Jan 11 09:38:32 DietPi systemd[1]: Finished [email protected] - Load Kernel Module fuse.
Jan 11 09:38:32 DietPi systemd[1]: [email protected]: Deactivated successfully.
Jan 11 09:38:32 DietPi systemd[1]: Finished [email protected] - Load Kernel Module loop.
Jan 11 09:38:32 DietPi systemd-journald[230]: Journal started
 Subject: The journal has been started
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The system journal process has started up, opened the journal
 files for writing and is now ready to process requests.
Jan 11 09:38:32 DietPi systemd-journald[230]: Runtime Journal (/run/log/journal/4dfb4fabbf01480493f2c448ee71641a) is 8.0M, max 76.8M, 68.8M free.
 Subject: Disk space used by the journal
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 Runtime Journal (/run/log/journal/4dfb4fabbf01480493f2c448ee71641a) is currently using 8.0M.
 Maximum allowed usage is set to 76.8M.
 Leaving at least 38.4M free (of currently available 760.0M of disk space).
 Enforced usage limit is thus 76.8M, of which 68.8M are still available.
 
 The limits controlling how much disk space is used by the journal may
 be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
 RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
 /etc/systemd/journald.conf. See journald.conf(5) for details.
Jan 11 09:38:32 DietPi fake-hwclock[207]: Current system time: 2025-01-11 08:38:31
Jan 11 09:38:32 DietPi fake-hwclock[207]: fake-hwclock saved clock information is in the past: 2025-01-11 08:38:17
Jan 11 09:38:32 DietPi fake-hwclock[207]: To set system time to this saved clock anyway, use "force"
Jan 11 09:38:32 DietPi systemd[1]: Started systemd-journald.service - Journal Service.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
 Subject: A start job for unit systemd-modules-load.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-modules-load.service has finished successfully.
 
 The job identifier is 56.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
 Subject: A start job for unit systemd-remount-fs.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-remount-fs.service has finished successfully.
 
 The job identifier is 67.
Jan 11 09:38:32 DietPi systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
 Subject: A start job for unit sys-fs-fuse-connections.mount has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-fs-fuse-connections.mount has begun execution.
 
 The job identifier is 24.
Jan 11 09:38:32 DietPi systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
 Subject: A start job for unit sys-kernel-config.mount has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-kernel-config.mount has begun execution.
 
 The job identifier is 39.
Jan 11 09:38:32 DietPi systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
 Subject: A start job for unit systemd-firstboot.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-firstboot.service has finished successfully.
 
 The job identifier is 49.
Jan 11 09:38:32 DietPi systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
 Subject: A start job for unit systemd-pstore.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-pstore.service has finished successfully.
 
 The job identifier is 61.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
 Subject: A start job for unit systemd-random-seed.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-random-seed.service has begun execution.
 
 The job identifier is 13.
Jan 11 09:38:32 DietPi systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
 Subject: A start job for unit systemd-repart.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-repart.service has finished successfully.
 
 The job identifier is 35.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
 Subject: A start job for unit systemd-sysctl.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-sysctl.service has begun execution.
 
 The job identifier is 41.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-sysusers.service - Create System Users...
 Subject: A start job for unit systemd-sysusers.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-sysusers.service has begun execution.
 
 The job identifier is 60.
Jan 11 09:38:32 DietPi systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
 Subject: A start job for unit sys-fs-fuse-connections.mount has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-fs-fuse-connections.mount has finished successfully.
 
 The job identifier is 24.
Jan 11 09:38:32 DietPi systemd-random-seed[238]: Kernel entropy pool is not initialized yet, waiting until it is.
Jan 11 09:38:32 DietPi systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
 Subject: A start job for unit sys-kernel-config.mount has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-kernel-config.mount has finished successfully.
 
 The job identifier is 39.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
 Subject: A start job for unit systemd-sysctl.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-sysctl.service has finished successfully.
 
 The job identifier is 41.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-sysusers.service - Create System Users.
 Subject: A start job for unit systemd-sysusers.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-sysusers.service has finished successfully.
 
 The job identifier is 60.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
 Subject: A start job for unit systemd-tmpfiles-setup-dev.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-tmpfiles-setup-dev.service has begun execution.
 
 The job identifier is 54.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
 Subject: A start job for unit systemd-tmpfiles-setup-dev.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-tmpfiles-setup-dev.service has finished successfully.
 
 The job identifier is 54.
Jan 11 09:38:32 DietPi systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
 Subject: A start job for unit local-fs-pre.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit local-fs-pre.target has finished successfully.
 
 The job identifier is 43.
Jan 11 09:38:32 DietPi systemd[1]: Mounting tmp.mount - /tmp...
 Subject: A start job for unit tmp.mount has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit tmp.mount has begun execution.
 
 The job identifier is 52.
Jan 11 09:38:32 DietPi systemd[1]: Mounting var-log.mount - /var/log...
 Subject: A start job for unit var-log.mount has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit var-log.mount has begun execution.
 
 The job identifier is 17.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
 Subject: A start job for unit systemd-udevd.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-udevd.service has begun execution.
 
 The job identifier is 31.
Jan 11 09:38:32 DietPi systemd[1]: Mounted tmp.mount - /tmp.
 Subject: A start job for unit tmp.mount has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit tmp.mount has finished successfully.
 
 The job identifier is 52.
Jan 11 09:38:32 DietPi systemd[1]: Mounted var-log.mount - /var/log.
 Subject: A start job for unit var-log.mount has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit var-log.mount has finished successfully.
 
 The job identifier is 17.
Jan 11 09:38:32 DietPi systemd[1]: Reached target local-fs.target - Local File Systems.
 Subject: A start job for unit local-fs.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit local-fs.target has finished successfully.
 
 The job identifier is 64.
Jan 11 09:38:32 DietPi systemd[1]: Starting console-setup.service - Set console font and keymap...
 Subject: A start job for unit console-setup.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit console-setup.service has begun execution.
 
 The job identifier is 108.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-binfmt.service - Set Up Additional Binary Formats...
 Subject: A start job for unit systemd-binfmt.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-binfmt.service has begun execution.
 
 The job identifier is 50.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-journal-flush.service - Flush Journal to Persistent Storage...
 Subject: A start job for unit systemd-journal-flush.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-journal-flush.service has begun execution.
 
 The job identifier is 16.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
 Subject: A start job for unit systemd-udev-trigger.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-udev-trigger.service has finished successfully.
 
 The job identifier is 30.
Jan 11 09:38:32 DietPi systemd-journald[230]: Runtime Journal (/run/log/journal/4dfb4fabbf01480493f2c448ee71641a) is 8.0M, max 76.8M, 68.8M free.
 Subject: Disk space used by the journal
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 Runtime Journal (/run/log/journal/4dfb4fabbf01480493f2c448ee71641a) is currently using 8.0M.
 Maximum allowed usage is set to 76.8M.
 Leaving at least 38.4M free (of currently available 759.9M of disk space).
 Enforced usage limit is thus 76.8M, of which 68.8M are still available.
 
 The limits controlling how much disk space is used by the journal may
 be configured with SystemMaxUse=, SystemKeepFree=, SystemMaxFileSize=,
 RuntimeMaxUse=, RuntimeKeepFree=, RuntimeMaxFileSize= settings in
 /etc/systemd/journald.conf. See journald.conf(5) for details.
Jan 11 09:38:32 DietPi systemd-journald[230]: Received client request to flush runtime journal.
Jan 11 09:38:32 DietPi systemd[1]: Starting ifupdown-pre.service - Helper to synchronize boot up for ifupdown...
 Subject: A start job for unit ifupdown-pre.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit ifupdown-pre.service has begun execution.
 
 The job identifier is 82.
Jan 11 09:38:32 DietPi systemd[1]: Finished console-setup.service - Set console font and keymap.
 Subject: A start job for unit console-setup.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit console-setup.service has finished successfully.
 
 The job identifier is 108.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-journal-flush.service - Flush Journal to Persistent Storage.
 Subject: A start job for unit systemd-journal-flush.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-journal-flush.service has finished successfully.
 
 The job identifier is 16.
Jan 11 09:38:32 DietPi systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 251 (systemd-binfmt)
Jan 11 09:38:32 DietPi systemd[1]: Mounting proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System...
 Subject: A start job for unit proc-sys-fs-binfmt_misc.mount has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit proc-sys-fs-binfmt_misc.mount has begun execution.
 
 The job identifier is 110.
Jan 11 09:38:32 DietPi systemd-udevd[248]: Using default interface naming scheme 'v252'.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-tmpfiles-setup.service - Create System Files and Directories...
 Subject: A start job for unit systemd-tmpfiles-setup.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-tmpfiles-setup.service has begun execution.
 
 The job identifier is 57.
Jan 11 09:38:32 DietPi systemd[1]: Mounted proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System.
 Subject: A start job for unit proc-sys-fs-binfmt_misc.mount has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit proc-sys-fs-binfmt_misc.mount has finished successfully.
 
 The job identifier is 110.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-binfmt.service - Set Up Additional Binary Formats.
 Subject: A start job for unit systemd-binfmt.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-binfmt.service has finished successfully.
 
 The job identifier is 50.
Jan 11 09:38:32 DietPi systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
 Subject: A start job for unit systemd-udevd.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-udevd.service has finished successfully.
 
 The job identifier is 31.
Jan 11 09:38:32 DietPi systemd[1]: Finished systemd-tmpfiles-setup.service - Create System Files and Directories.
 Subject: A start job for unit systemd-tmpfiles-setup.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-tmpfiles-setup.service has finished successfully.
 
 The job identifier is 57.
Jan 11 09:38:32 DietPi systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
 Subject: A start job for unit systemd-timesyncd.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-timesyncd.service has begun execution.
 
 The job identifier is 51.
Jan 11 09:38:33 DietPi systemd[1]: Starting systemd-update-utmp.service - Record System Boot/Shutdown in UTMP...
 Subject: A start job for unit systemd-update-utmp.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-update-utmp.service has begun execution.
 
 The job identifier is 101.
Jan 11 09:38:33 DietPi systemd[1]: Finished systemd-update-utmp.service - Record System Boot/Shutdown in UTMP.
 Subject: A start job for unit systemd-update-utmp.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-update-utmp.service has finished successfully.
 
 The job identifier is 101.
Jan 11 09:38:33 DietPi systemd[1]: Found device dev-ttyS2.device - /dev/ttyS2.
 Subject: A start job for unit dev-ttyS2.device has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dev-ttyS2.device has finished successfully.
 
 The job identifier is 94.
Jan 11 09:38:33 DietPi systemd[1]: Started systemd-timesyncd.service - Network Time Synchronization.
 Subject: A start job for unit systemd-timesyncd.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-timesyncd.service has finished successfully.
 
 The job identifier is 51.
Jan 11 09:38:33 DietPi systemd[1]: Reached target sysinit.target - System Initialization.
 Subject: A start job for unit sysinit.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sysinit.target has finished successfully.
 
 The job identifier is 4.
Jan 11 09:38:33 DietPi systemd[1]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of Temporary Directories.
 Subject: A start job for unit systemd-tmpfiles-clean.timer has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-tmpfiles-clean.timer has finished successfully.
 
 The job identifier is 75.
Jan 11 09:38:33 DietPi systemd[1]: Reached target time-set.target - System Time Set.
 Subject: A start job for unit time-set.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit time-set.target has finished successfully.
 
 The job identifier is 53.
Jan 11 09:38:33 DietPi systemd[1]: Started dpkg-db-backup.timer - Daily dpkg database backup timer.
 Subject: A start job for unit dpkg-db-backup.timer has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dpkg-db-backup.timer has finished successfully.
 
 The job identifier is 76.
Jan 11 09:38:33 DietPi systemd[1]: Started fstrim.timer - Discard unused blocks once a week.
 Subject: A start job for unit fstrim.timer has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit fstrim.timer has finished successfully.
 
 The job identifier is 77.
Jan 11 09:38:33 DietPi systemd[1]: Started man-db.timer - Daily man-db regeneration.
 Subject: A start job for unit man-db.timer has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit man-db.timer has finished successfully.
 
 The job identifier is 74.
Jan 11 09:38:33 DietPi systemd[1]: Reached target timers.target - Timer Units.
 Subject: A start job for unit timers.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit timers.target has finished successfully.
 
 The job identifier is 73.
Jan 11 09:38:33 DietPi systemd[1]: Listening on dbus.socket - D-Bus System Message Bus Socket.
 Subject: A start job for unit dbus.socket has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dbus.socket has finished successfully.
 
 The job identifier is 69.
Jan 11 09:38:33 DietPi systemd[1]: Reached target sockets.target - Socket Units.
 Subject: A start job for unit sockets.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sockets.target has finished successfully.
 
 The job identifier is 68.
Jan 11 09:38:33 DietPi systemd[1]: systemd-pcrphase-sysinit.service - TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
 Subject: A start job for unit systemd-pcrphase-sysinit.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-pcrphase-sysinit.service has finished successfully.
 
 The job identifier is 45.
Jan 11 09:38:33 DietPi systemd[1]: Reached target basic.target - Basic System.
 Subject: A start job for unit basic.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit basic.target has finished successfully.
 
 The job identifier is 3.
Jan 11 09:38:33 DietPi systemd[1]: Started cron.service - Regular background program processing daemon.
 Subject: A start job for unit cron.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit cron.service has finished successfully.
 
 The job identifier is 107.
Jan 11 09:38:33 DietPi systemd[1]: Starting dbus.service - D-Bus System Message Bus...
 Subject: A start job for unit dbus.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dbus.service has begun execution.
 
 The job identifier is 78.
Jan 11 09:38:33 DietPi systemd[1]: Starting dietpi-ramlog.service - DietPi-RAMlog...
 Subject: A start job for unit dietpi-ramlog.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dietpi-ramlog.service has begun execution.
 
 The job identifier is 79.
Jan 11 09:38:33 DietPi cron[306]: (CRON) INFO (pidfile fd = 3)
Jan 11 09:38:33 DietPi systemd[1]: Starting systemd-logind.service - User Login Management...
 Subject: A start job for unit systemd-logind.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-logind.service has begun execution.
 
 The job identifier is 102.
Jan 11 09:38:33 DietPi systemd[1]: systemd-pcrphase.service - TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
 Subject: A start job for unit systemd-pcrphase.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-pcrphase.service has finished successfully.
 
 The job identifier is 5.
Jan 11 09:38:33 DietPi cron[306]: (CRON) INFO (Running @reboot jobs)
Jan 11 09:38:33 DietPi systemd[1]: Expecting device sys-subsystem-net-devices-eth0.device - /sys/subsystem/net/devices/eth0...
 Subject: A start job for unit sys-subsystem-net-devices-eth0.device has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-subsystem-net-devices-eth0.device has begun execution.
 
 The job identifier is 116.
Jan 11 09:38:33 DietPi systemd[1]: Expecting device sys-subsystem-net-devices-eth1.device - /sys/subsystem/net/devices/eth1...
 Subject: A start job for unit sys-subsystem-net-devices-eth1.device has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-subsystem-net-devices-eth1.device has begun execution.
 
 The job identifier is 118.
Jan 11 09:38:34 DietPi systemd[1]: Finished dietpi-ramlog.service - DietPi-RAMlog.
 Subject: A start job for unit dietpi-ramlog.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dietpi-ramlog.service has finished successfully.
 
 The job identifier is 79.
Jan 11 09:38:34 DietPi systemd[1]: Found device sys-subsystem-net-devices-eth1.device - /sys/subsystem/net/devices/eth1.
 Subject: A start job for unit sys-subsystem-net-devices-eth1.device has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-subsystem-net-devices-eth1.device has finished successfully.
 
 The job identifier is 118.
Jan 11 09:38:34 DietPi systemd[1]: Found device sys-subsystem-net-devices-eth0.device - /sys/subsystem/net/devices/eth0.
 Subject: A start job for unit sys-subsystem-net-devices-eth0.device has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-subsystem-net-devices-eth0.device has finished successfully.
 
 The job identifier is 116.
Jan 11 09:38:34 DietPi systemd[1]: Starting dietpi-preboot.service - DietPi-PreBoot...
 Subject: A start job for unit dietpi-preboot.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dietpi-preboot.service has begun execution.
 
 The job identifier is 109.
Jan 11 09:38:34 DietPi systemd-logind[309]: New seat seat0.
 Subject: A new seat seat0 is now available
 Defined-By: systemd
 Support: https://www.debian.org/support
 Documentation: sd-login(3)
 
 A new seat seat0 has been configured and is now available.
Jan 11 09:38:34 DietPi systemd-logind[309]: Watching system buttons on /dev/input/event0 (Microsoft Wired Keyboard 400)
Jan 11 09:38:34 DietPi kernel: panfrost fde60000.gpu: clock rate = 594000000
Jan 11 09:38:34 DietPi kernel: panfrost fde60000.gpu: bus_clock rate = 500000000
Jan 11 09:38:34 DietPi kernel: mc: Linux media interface: v0.10
Jan 11 09:38:34 DietPi kernel: panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
Jan 11 09:38:34 DietPi kernel: panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,00000400
Jan 11 09:38:34 DietPi kernel: panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
Jan 11 09:38:34 DietPi kernel: panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
Jan 11 09:38:34 DietPi kernel: videodev: Linux video capture interface: v2.00
Jan 11 09:38:34 DietPi kernel: [drm] Initialized panfrost 1.2.0 for fde60000.gpu on minor 1
Jan 11 09:38:34 DietPi DietPi-PreBoot[325]:  DietPi-CPU_set
Jan 11 09:38:34 DietPi DietPi-PreBoot[325]: 
Jan 11 09:38:34 DietPi DietPi-PreBoot[325]:  Mode: Applying CPU governor settings: schedutil
Jan 11 09:38:34 DietPi kernel: input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey.4.auto/input/input1
Jan 11 09:38:34 DietPi kernel: rockchip-rga fdeb0000.rga: HW Version: 0x03.02
Jan 11 09:38:34 DietPi kernel: rockchip-rga fdeb0000.rga: Registered rockchip-rga as /dev/video0
Jan 11 09:38:34 DietPi DietPi-PreBoot[325]: [ INFO ] DietPi-CPU_set | Setting CPU frequency limits : Max = Disabled MHz | Min = Disabled MHz
Jan 11 09:38:34 DietPi kernel: hantro-vpu fdea0000.video-codec: Adding to iommu group 1
Jan 11 09:38:34 DietPi kernel: hantro-vpu fdea0000.video-codec: registered rockchip,rk3568-vpu-dec as /dev/video1
Jan 11 09:38:34 DietPi kernel: hantro-vpu fdee0000.video-codec: Adding to iommu group 2
Jan 11 09:38:34 DietPi kernel: hantro-vpu fdee0000.video-codec: registered rockchip,rk3568-vepu-enc as /dev/video2
Jan 11 09:38:34 DietPi DietPi-PreBoot[325]: [  OK  ] DietPi-CPU_set | Applied CPU governor settings: schedutil
Jan 11 09:38:34 DietPi kernel: random: crng init done
Jan 11 09:38:34 DietPi systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
 Subject: A start job for unit systemd-random-seed.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-random-seed.service has finished successfully.
 
 The job identifier is 13.
Jan 11 09:38:34 DietPi systemd[1]: Finished dietpi-preboot.service - DietPi-PreBoot.
 Subject: A start job for unit dietpi-preboot.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dietpi-preboot.service has finished successfully.
 
 The job identifier is 109.
Jan 11 09:38:34 DietPi systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
 Subject: A start job for unit first-boot-complete.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit first-boot-complete.target has finished successfully.
 
 The job identifier is 14.
Jan 11 09:38:34 DietPi systemd[1]: systemd-machine-id-commit.service - Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
 Subject: A start job for unit systemd-machine-id-commit.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-machine-id-commit.service has finished successfully.
 
 The job identifier is 23.
Jan 11 09:38:34 DietPi systemd[1]: Started dbus.service - D-Bus System Message Bus.
 Subject: A start job for unit dbus.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dbus.service has finished successfully.
 
 The job identifier is 78.
Jan 11 09:38:34 DietPi dbus-daemon[307]: [system] Successfully activated service 'org.freedesktop.systemd1'
Jan 11 09:38:34 DietPi systemd[1]: Started systemd-logind.service - User Login Management.
 Subject: A start job for unit systemd-logind.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-logind.service has finished successfully.
 
 The job identifier is 102.
Jan 11 09:38:34 DietPi kernel: Registered IR keymap rc-empty
Jan 11 09:38:34 DietPi kernel: rc rc0: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0
Jan 11 09:38:34 DietPi kernel: rc rc0: lirc_dev: driver gpio_ir_recv registered at minor = 0, raw IR receiver, no transmitter
Jan 11 09:38:34 DietPi kernel: input: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0/input2
Jan 11 09:38:34 DietPi systemd[1]: alsa-state.service - Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
 Subject: A start job for unit alsa-state.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit alsa-state.service has finished successfully.
 
 The job identifier is 122.
Jan 11 09:38:34 DietPi systemd-logind[309]: Watching system buttons on /dev/input/event1 (rk805 pwrkey)
Jan 11 09:38:34 DietPi systemd[1]: Starting alsa-restore.service - Save/Restore Sound Card State...
 Subject: A start job for unit alsa-restore.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit alsa-restore.service has begun execution.
 
 The job identifier is 187.
Jan 11 09:38:34 DietPi alsactl[365]: alsa-lib parser.c:2783:(load_toplevel_config) Unable to find the top-level configuration file '/usr/share/alsa/ucm2/ucm.conf'.
Jan 11 09:38:34 DietPi alsactl[365]: alsa-lib main.c:1541:(snd_use_case_mgr_open) error: failed to import hw:0 use case configuration -2
Jan 11 09:38:34 DietPi alsactl[365]: alsa-lib parser.c:2783:(load_toplevel_config) Unable to find the top-level configuration file '/usr/share/alsa/ucm2/ucm.conf'.
Jan 11 09:38:35 DietPi alsactl[365]: alsa-lib main.c:1541:(snd_use_case_mgr_open) error: failed to import hw:1 use case configuration -2
Jan 11 09:38:35 DietPi systemd[1]: Finished alsa-restore.service - Save/Restore Sound Card State.
 Subject: A start job for unit alsa-restore.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit alsa-restore.service has finished successfully.
 
 The job identifier is 187.
Jan 11 09:38:35 DietPi systemd[1]: Reached target sound.target - Sound Card.
 Subject: A start job for unit sound.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sound.target has finished successfully.
 
 The job identifier is 121.
Jan 11 09:38:35 DietPi systemd[1]: Finished ifupdown-pre.service - Helper to synchronize boot up for ifupdown.
 Subject: A start job for unit ifupdown-pre.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit ifupdown-pre.service has finished successfully.
 
 The job identifier is 82.
Jan 11 09:38:35 DietPi systemd[1]: Reached target network-pre.target - Preparation for Network.
 Subject: A start job for unit network-pre.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit network-pre.target has finished successfully.
 
 The job identifier is 83.
Jan 11 09:38:35 DietPi systemd[1]: Starting NetworkManager.service - Network Manager...
 Subject: A start job for unit NetworkManager.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit NetworkManager.service has begun execution.
 
 The job identifier is 86.
Jan 11 09:38:35 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
 Subject: A start job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has begun execution.
 
 The job identifier is 113.
Jan 11 09:38:35 DietPi systemd[1]: Starting [email protected] - ifup for eth1...
 Subject: A start job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has begun execution.
 
 The job identifier is 117.
Jan 11 09:38:35 DietPi systemd[1]: Starting networking.service - Raise network interfaces...
 Subject: A start job for unit networking.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit networking.service has begun execution.
 
 The job identifier is 80.
Jan 11 09:38:35 DietPi dhclient[448]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:38:35 DietPi ifup[447]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:38:35 DietPi ifup[447]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:38:35 DietPi ifup[447]: All rights reserved.
Jan 11 09:38:35 DietPi ifup[447]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:38:35 DietPi ifup[448]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:38:35 DietPi ifup[448]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:38:35 DietPi ifup[448]: All rights reserved.
Jan 11 09:38:35 DietPi ifup[448]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:38:35 DietPi dhclient[448]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:38:35 DietPi dhclient[448]: All rights reserved.
Jan 11 09:38:35 DietPi dhclient[448]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:38:35 DietPi dhclient[448]: 
Jan 11 09:38:35 DietPi dhclient[447]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:38:35 DietPi dhclient[447]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:38:35 DietPi dhclient[447]: All rights reserved.
Jan 11 09:38:35 DietPi dhclient[447]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:38:35 DietPi dhclient[447]: 
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Jan 11 09:38:35 DietPi kernel: dwmac4: Master AXI performs any burst length
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.4563] NetworkManager (version 1.42.4) is starting... (boot:04c66eec-f805-424c-b1f9-619e92d1727d)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.4565] Read config: /etc/NetworkManager/NetworkManager.conf (lib: no-mac-addr-change.conf)
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 11 09:38:35 DietPi kernel: rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
Jan 11 09:38:35 DietPi ifup[459]: RTNETLINK answers: No such device
Jan 11 09:38:35 DietPi systemd[1]: Started NetworkManager.service - Network Manager.
 Subject: A start job for unit NetworkManager.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit NetworkManager.service has finished successfully.
 
 The job identifier is 86.
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.4722] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jan 11 09:38:35 DietPi dhclient[448]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.4893] manager[0xaaaaba470000]: monitoring kernel firmware directory '/lib/firmware'.
Jan 11 09:38:35 DietPi ifup[447]: Listening on LPF/eth1/e2:e1:76:03:12:f9
Jan 11 09:38:35 DietPi ifup[447]: Sending on   LPF/eth1/e2:e1:76:03:12:f9
Jan 11 09:38:35 DietPi ifup[447]: Sending on   Socket/fallback
Jan 11 09:38:35 DietPi ifup[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 5
Jan 11 09:38:35 DietPi ifup[447]: send_packet: Network is down
Jan 11 09:38:35 DietPi ifup[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:38:35 DietPi ifup[447]: receive_packet failed on eth1: Network is down
Jan 11 09:38:35 DietPi ifup[448]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:38:35 DietPi ifup[448]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:38:35 DietPi ifup[448]: Sending on   Socket/fallback
Jan 11 09:38:35 DietPi ifup[448]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
Jan 11 09:38:35 DietPi dhclient[447]: Listening on LPF/eth1/e2:e1:76:03:12:f9
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.4895] monitoring ifupdown state file '/run/network/ifstate'.
Jan 11 09:38:35 DietPi dhclient[447]: Sending on   LPF/eth1/e2:e1:76:03:12:f9
Jan 11 09:38:35 DietPi dhclient[448]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:38:35 DietPi dhclient[447]: Sending on   Socket/fallback
Jan 11 09:38:35 DietPi dhclient[448]: Sending on   Socket/fallback
Jan 11 09:38:35 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 5
Jan 11 09:38:35 DietPi dhclient[448]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
Jan 11 09:38:35 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:38:35 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:38:35 DietPi dhclient[447]: receive_packet failed on eth1: Network is down
Jan 11 09:38:35 DietPi dbus-daemon[307]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.3' (uid=0 pid=409 comm="/usr/sbin/NetworkManager --no-daemon")
Jan 11 09:38:35 DietPi systemd[1]: Starting NetworkManager-wait-online.service - Network Manager Wait Online...
 Subject: A start job for unit NetworkManager-wait-online.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit NetworkManager-wait-online.service has begun execution.
 
 The job identifier is 98.
Jan 11 09:38:35 DietPi systemd[1]: Starting systemd-hostnamed.service - Hostname Service...
 Subject: A start job for unit systemd-hostnamed.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-hostnamed.service has begun execution.
 
 The job identifier is 255.
Jan 11 09:38:35 DietPi systemd[1]: Finished networking.service - Raise network interfaces.
 Subject: A start job for unit networking.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit networking.service has finished successfully.
 
 The job identifier is 80.
Jan 11 09:38:35 DietPi dbus-daemon[307]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jan 11 09:38:35 DietPi systemd[1]: Started systemd-hostnamed.service - Hostname Service.
 Subject: A start job for unit systemd-hostnamed.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-hostnamed.service has finished successfully.
 
 The job identifier is 255.
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7023] hostname: hostname: using hostnamed
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7024] hostname: static hostname changed from (none) to "DietPi"
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7039] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink (auto)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7158] manager[0xaaaaba470000]: rfkill: Wi-Fi hardware radio set enabled
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7159] manager[0xaaaaba470000]: rfkill: WWAN hardware radio set enabled
Jan 11 09:38:35 DietPi systemd[1]: Listening on systemd-rfkill.socket - Load/Save RF Kill Switch Status /dev/rfkill Watch.
 Subject: A start job for unit systemd-rfkill.socket has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-rfkill.socket has finished successfully.
 
 The job identifier is 321.
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7434] Loaded device plugin: NMWifiFactory (/usr/lib/aarch64-linux-gnu/NetworkManager/1.42.4/libnm-device-plugin-wifi.so)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7512] Loaded device plugin: NMTeamFactory (/usr/lib/aarch64-linux-gnu/NetworkManager/1.42.4/libnm-device-plugin-team.so)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7679] Loaded device plugin: NMWwanFactory (/usr/lib/aarch64-linux-gnu/NetworkManager/1.42.4/libnm-device-plugin-wwan.so)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7740] Loaded device plugin: NMBluezManager (/usr/lib/aarch64-linux-gnu/NetworkManager/1.42.4/libnm-device-plugin-bluetooth.so)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7761] Loaded device plugin: NMAtmManager (/usr/lib/aarch64-linux-gnu/NetworkManager/1.42.4/libnm-device-plugin-adsl.so)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7772] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7775] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7777] manager: Networking is enabled by state file
Jan 11 09:38:35 DietPi dbus-daemon[307]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.3' (uid=0 pid=409 comm="/usr/sbin/NetworkManager --no-daemon")
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7815] settings: Loaded settings plugin: ifupdown ("/usr/lib/aarch64-linux-gnu/NetworkManager/1.42.4/libnm-settings-plugin-ifupdown.so")
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7817] settings: Loaded settings plugin: keyfile (internal)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7817] ifupdown: management mode: unmanaged
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7818] ifupdown:       interface-parser: parsing file /etc/network/interfaces
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7819] ifupdown:       interface-parser: source line includes interfaces file(s) /etc/network/interfaces.d/*
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7821] ifupdown:       interface-parser: parsing file /etc/network/interfaces.d/eth1.conf
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7821] ifupdown:       interface-parser: finished parsing file /etc/network/interfaces.d/eth1.conf
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7822] ifupdown:       interface-parser: finished parsing file /etc/network/interfaces
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7851] ifupdown: guessed connection type (eth1) = 802-3-ethernet
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7881] ifupdown: guessed connection type (eth0) = 802-3-ethernet
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7885] ifupdown: guessed connection type (wlan0) = 802-11-wireless
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7887] ifupdown: update wireless settings (wlan0).
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.7891] ifupdown: update wireless security settings (wlan0).
Jan 11 09:38:35 DietPi systemd[1]: Starting NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service...
 Subject: A start job for unit NetworkManager-dispatcher.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit NetworkManager-dispatcher.service has begun execution.
 
 The job identifier is 328.
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8067] dhcp: init: Using DHCP client 'internal'
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8083] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8103] device (lo): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8257] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8303] manager: (eth1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8329] manager: NetworkManager state is now CONNECTED_GLOBAL
Jan 11 09:38:35 DietPi dbus-daemon[307]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jan 11 09:38:35 DietPi systemd[1]: Started NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service.
 Subject: A start job for unit NetworkManager-dispatcher.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit NetworkManager-dispatcher.service has finished successfully.
 
 The job identifier is 328.
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8525] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8554] device (lo): Activation: starting connection 'lo' (b17c291e-df0e-4233-9aa5-b34d9c145fd4)
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8651] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8662] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8671] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8679] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8737] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8744] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8764] device (lo): Activation: successful, device activated.
Jan 11 09:38:35 DietPi NetworkManager[409]: <info>  [1736584715.8788] manager: startup complete
Jan 11 09:38:35 DietPi systemd[1]: Finished NetworkManager-wait-online.service - Network Manager Wait Online.
 Subject: A start job for unit NetworkManager-wait-online.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit NetworkManager-wait-online.service has finished successfully.
 
 The job identifier is 98.
Jan 11 09:38:38 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Jan 11 09:38:38 DietPi NetworkManager[409]: <info>  [1736584718.5293] device (eth0): carrier: link connected
Jan 11 09:38:40 DietPi dhclient[448]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
Jan 11 09:38:40 DietPi ifup[448]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
Jan 11 09:38:40 DietPi ifup[448]: DHCPOFFER of 192.168.1.109 from 192.168.1.254
Jan 11 09:38:40 DietPi ifup[448]: DHCPREQUEST for 192.168.1.109 on eth0 to 255.255.255.255 port 67
Jan 11 09:38:40 DietPi ifup[448]: DHCPACK of 192.168.1.109 from 192.168.1.254
Jan 11 09:38:40 DietPi dhclient[448]: DHCPOFFER of 192.168.1.109 from 192.168.1.254
Jan 11 09:38:40 DietPi dhclient[448]: DHCPREQUEST for 192.168.1.109 on eth0 to 255.255.255.255 port 67
Jan 11 09:38:40 DietPi dhclient[448]: DHCPACK of 192.168.1.109 from 192.168.1.254
Jan 11 09:38:40 DietPi dhclient[448]: bound to 192.168.1.109 -- renewal in 16420 seconds.
Jan 11 09:38:40 DietPi ifup[448]: bound to 192.168.1.109 -- renewal in 16420 seconds.
Jan 11 09:38:40 DietPi systemd[1]: Finished [email protected] - ifup for eth0.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 113.
Jan 11 09:38:40 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 7
Jan 11 09:38:40 DietPi ifup[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 7
Jan 11 09:38:40 DietPi ifup[447]: send_packet: Network is down
Jan 11 09:38:40 DietPi ifup[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:38:40 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:38:40 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:38:45 DietPi kernel: platform fd000000.usb: deferred probe pending: platform: supplier fe830000.phy not ready
Jan 11 09:38:45 DietPi kernel: platform 3c0000000.pcie: deferred probe pending: platform: supplier fe840000.phy not ready
Jan 11 09:38:45 DietPi kernel: platform fcc00000.usb: deferred probe pending: platform: supplier fe820000.phy not ready
Jan 11 09:38:45 DietPi systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit NetworkManager-dispatcher.service has successfully entered the 'dead' state.
Jan 11 09:38:47 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 12
Jan 11 09:38:47 DietPi ifup[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 12
Jan 11 09:38:47 DietPi ifup[447]: send_packet: Network is down
Jan 11 09:38:47 DietPi ifup[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:38:47 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:38:47 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:38:59 DietPi kernel: vdd_npu: disabling
Jan 11 09:38:59 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 13
Jan 11 09:38:59 DietPi ifup[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 13
Jan 11 09:38:59 DietPi ifup[447]: send_packet: Network is down
Jan 11 09:38:59 DietPi ifup[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:38:59 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:38:59 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:39:03 DietPi systemd-timesyncd[270]: Contacted time server 162.159.200.1:123 (2.debian.pool.ntp.org).
Jan 11 09:39:03 DietPi systemd-timesyncd[270]: Initial clock synchronization to Sat 2025-01-11 09:39:03.634776 CET.
 Subject: Initial clock synchronization
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 For the first time during the current boot an NTP synchronization has been
 acquired and the local system clock adjustment has been initiated.
Jan 11 09:39:05 DietPi systemd[1]: systemd-hostnamed.service: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit systemd-hostnamed.service has successfully entered the 'dead' state.
Jan 11 09:39:12 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 21
Jan 11 09:39:12 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:39:12 DietPi ifup[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 21
Jan 11 09:39:12 DietPi ifup[447]: send_packet: Network is down
Jan 11 09:39:12 DietPi ifup[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:39:12 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:39:33 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 3
Jan 11 09:39:33 DietPi ifup[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 3
Jan 11 09:39:33 DietPi ifup[447]: send_packet: Network is down
Jan 11 09:39:33 DietPi ifup[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:39:33 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:39:33 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:39:36 DietPi dhclient[447]: No DHCPOFFERS received.
Jan 11 09:39:36 DietPi ifup[447]: No DHCPOFFERS received.
Jan 11 09:39:36 DietPi ifup[447]: No working leases in persistent database - sleeping.
Jan 11 09:39:36 DietPi dhclient[447]: No working leases in persistent database - sleeping.
Jan 11 09:39:36 DietPi systemd[1]: Finished [email protected] - ifup for eth1.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 117.
Jan 11 09:39:36 DietPi systemd[1]: Reached target network.target - Network.
 Subject: A start job for unit network.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit network.target has finished successfully.
 
 The job identifier is 81.
Jan 11 09:39:36 DietPi systemd[1]: Reached target network-online.target - Network is Online.
 Subject: A start job for unit network-online.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit network-online.target has finished successfully.
 
 The job identifier is 97.
Jan 11 09:39:36 DietPi systemd[1]: Started dietpi-postboot.service - DietPi-PostBoot.
 Subject: A start job for unit dietpi-postboot.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dietpi-postboot.service has finished successfully.
 
 The job identifier is 96.
Jan 11 09:39:36 DietPi systemd[1]: Started dropbear.service - Lightweight SSH server.
 Subject: A start job for unit dropbear.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit dropbear.service has finished successfully.
 
 The job identifier is 95.
Jan 11 09:39:36 DietPi systemd[1]: Starting systemd-user-sessions.service - Permit User Sessions...
 Subject: A start job for unit systemd-user-sessions.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-user-sessions.service has begun execution.
 
 The job identifier is 105.
Jan 11 09:39:36 DietPi dropbear[573]: [573] Jan 11 09:39:36 Failed loading /etc/dropbear/dropbear_dss_host_key
Jan 11 09:39:36 DietPi systemd[1]: Starting xrdp-sesman.service - xrdp session manager...
 Subject: A start job for unit xrdp-sesman.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit xrdp-sesman.service has begun execution.
 
 The job identifier is 85.
Jan 11 09:39:36 DietPi dropbear[573]: [573] Jan 11 09:39:36 Not backgrounding
Jan 11 09:39:36 DietPi systemd[1]: Finished systemd-user-sessions.service - Permit User Sessions.
 Subject: A start job for unit systemd-user-sessions.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-user-sessions.service has finished successfully.
 
 The job identifier is 105.
Jan 11 09:39:36 DietPi xrdp-sesman[576]: [INFO ] starting xrdp-sesman with pid 576
Jan 11 09:39:36 DietPi systemd[1]: Started [email protected] - Getty on tty1.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 88.
Jan 11 09:39:36 DietPi systemd[1]: Started [email protected] - Serial Getty on ttyS2.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 92.
Jan 11 09:39:36 DietPi systemd[1]: Reached target getty.target - Login Prompts.
 Subject: A start job for unit getty.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit getty.target has finished successfully.
 
 The job identifier is 87.
Jan 11 09:39:36 DietPi systemd[1]: Started xrdp-sesman.service - xrdp session manager.
 Subject: A start job for unit xrdp-sesman.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit xrdp-sesman.service has finished successfully.
 
 The job identifier is 85.
Jan 11 09:39:36 DietPi systemd[1]: Starting xrdp.service - xrdp daemon...
 Subject: A start job for unit xrdp.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit xrdp.service has begun execution.
 
 The job identifier is 84.
Jan 11 09:39:36 DietPi xrdp[587]: [INFO ] address [0.0.0.0] port [3389] mode 1
Jan 11 09:39:36 DietPi xrdp[587]: [INFO ] listening to port 3389 on 0.0.0.0
Jan 11 09:39:36 DietPi xrdp[587]: [INFO ] xrdp_listen_pp done
Jan 11 09:39:36 DietPi systemd[1]: xrdp.service: Can't open PID file /run/xrdp/xrdp.pid (yet?) after start: No such file or directory
Jan 11 09:39:37 DietPi systemd[1]: Started xrdp.service - xrdp daemon.
 Subject: A start job for unit xrdp.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit xrdp.service has finished successfully.
 
 The job identifier is 84.
Jan 11 09:39:37 DietPi systemd[1]: Reached target multi-user.target - Multi-User System.
 Subject: A start job for unit multi-user.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit multi-user.target has finished successfully.
 
 The job identifier is 2.
Jan 11 09:39:37 DietPi systemd[1]: Reached target graphical.target - Graphical Interface.
 Subject: A start job for unit graphical.target has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit graphical.target has finished successfully.
 
 The job identifier is 1.
Jan 11 09:39:37 DietPi systemd[1]: Starting systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP...
 Subject: A start job for unit systemd-update-utmp-runlevel.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-update-utmp-runlevel.service has begun execution.
 
 The job identifier is 100.
Jan 11 09:39:37 DietPi systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit systemd-update-utmp-runlevel.service has successfully entered the 'dead' state.
Jan 11 09:39:37 DietPi systemd[1]: Finished systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP.
 Subject: A start job for unit systemd-update-utmp-runlevel.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-update-utmp-runlevel.service has finished successfully.
 
 The job identifier is 100.
Jan 11 09:39:37 DietPi systemd[1]: Startup finished in 4.678s (kernel) + 1min 7.588s (userspace) = 1min 12.267s.
 Subject: System start-up is now complete
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 All system services necessary queued for starting at boot have been
 started. Note that this does not mean that the machine is now idle as services
 might still be busy with completing start-up.
 
 Kernel start-up required 4678383 microseconds.
 
 Initrd start-up required INITRD_USEC microseconds.
 
 Userspace start-up required 67588688 microseconds.
Jan 11 09:39:37 DietPi login[577]: pam_unix(login:session): session opened for user root(uid=0) by LOGIN(uid=0)
Jan 11 09:39:37 DietPi systemd[1]: Created slice user-0.slice - User Slice of UID 0.
 Subject: A start job for unit user-0.slice has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit user-0.slice has finished successfully.
 
 The job identifier is 460.
Jan 11 09:39:37 DietPi systemd[1]: Starting [email protected] - User Runtime Directory /run/user/0...
 Subject: A start job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has begun execution.
 
 The job identifier is 459.
Jan 11 09:39:37 DietPi systemd-logind[309]: New session 1 of user root.
 Subject: A new session 1 has been created for user root
 Defined-By: systemd
 Support: https://www.debian.org/support
 Documentation: sd-login(3)
 
 A new session with the ID 1 has been created for the user root.
 
 The leading process of the session is 577.
Jan 11 09:39:37 DietPi systemd[1]: Finished [email protected] - User Runtime Directory /run/user/0.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 459.
Jan 11 09:39:37 DietPi systemd[1]: Starting [email protected] - User Manager for UID 0...
 Subject: A start job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has begun execution.
 
 The job identifier is 394.
Jan 11 09:39:37 DietPi (systemd)[614]: pam_unix(systemd-user:session): session opened for user root(uid=0) by (uid=0)
Jan 11 09:39:37 DietPi systemd[1]: Stopping systemd-timesyncd.service - Network Time Synchronization...
 Subject: A stop job for unit systemd-timesyncd.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A stop job for unit systemd-timesyncd.service has begun execution.
 
 The job identifier is 531.
Jan 11 09:39:37 DietPi systemd[1]: systemd-timesyncd.service: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit systemd-timesyncd.service has successfully entered the 'dead' state.
Jan 11 09:39:37 DietPi systemd[1]: Stopped systemd-timesyncd.service - Network Time Synchronization.
 Subject: A stop job for unit systemd-timesyncd.service has finished
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A stop job for unit systemd-timesyncd.service has finished.
 
 The job identifier is 531 and the job result is done.
Jan 11 09:39:38 DietPi systemd[614]: Queued start job for default target default.target.
Jan 11 09:39:38 DietPi systemd[614]: Created slice app.slice - User Application Slice.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 9.
Jan 11 09:39:38 DietPi systemd[614]: Reached target paths.target - Paths.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 12.
Jan 11 09:39:38 DietPi systemd[614]: Reached target timers.target - Timers.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 13.
Jan 11 09:39:38 DietPi systemd[614]: Starting dbus.socket - D-Bus User Message Bus Socket...
 Subject: A start job for unit UNIT has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has begun execution.
 
 The job identifier is 8.
Jan 11 09:39:38 DietPi systemd[614]: Listening on dbus.socket - D-Bus User Message Bus Socket.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 8.
Jan 11 09:39:38 DietPi systemd[614]: Reached target sockets.target - Sockets.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 7.
Jan 11 09:39:38 DietPi systemd[614]: Reached target basic.target - Basic System.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 6.
Jan 11 09:39:38 DietPi systemd[614]: Reached target default.target - Main User Target.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 5.
Jan 11 09:39:38 DietPi systemd[614]: Startup finished in 324ms.
 Subject: User manager start-up is now complete
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The user manager instance for user 0 has been started. All services queued
 for starting have been started. Note that other services might still be starting
 up or be started at any later time.
 
 Startup of the manager took 324332 microseconds.
Jan 11 09:39:38 DietPi systemd[1]: Started [email protected] - User Manager for UID 0.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 394.
Jan 11 09:39:38 DietPi systemd[1]: Started session-1.scope - Session 1 of User root.
 Subject: A start job for unit session-1.scope has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit session-1.scope has finished successfully.
 
 The job identifier is 462.
Jan 11 09:39:38 DietPi login[631]: ROOT LOGIN  on '/dev/tty1'
Jan 11 09:39:38 DietPi xrdp[588]: [INFO ] starting xrdp with pid 588
Jan 11 09:39:38 DietPi xrdp[588]: [INFO ] address [0.0.0.0] port [3389] mode 1
Jan 11 09:39:38 DietPi xrdp[588]: [INFO ] listening to port 3389 on 0.0.0.0
Jan 11 09:39:38 DietPi xrdp[588]: [INFO ] xrdp_listen_pp done
Jan 11 09:39:41 DietPi systemd[614]: Created slice session.slice - User Core Session Slice.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 24.
Jan 11 09:39:41 DietPi systemd[614]: Starting dbus.service - D-Bus User Message Bus...
 Subject: A start job for unit UNIT has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has begun execution.
 
 The job identifier is 15.
Jan 11 09:39:41 DietPi systemd[614]: Started dbus.service - D-Bus User Message Bus.
 Subject: A start job for unit UNIT has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit UNIT has finished successfully.
 
 The job identifier is 15.
Jan 11 09:39:41 DietPi dbus-daemon[1144]: [session uid=0 pid=1144] Successfully activated service 'org.freedesktop.systemd1'
Jan 11 09:39:42 DietPi dbus-daemon[1144]: [session uid=0 pid=1144] Activating service name='org.xfce.Xfconf' requested by ':1.5' (uid=0 pid=1126 comm="xfce4-session")
Jan 11 09:39:42 DietPi dbus-daemon[1144]: [session uid=0 pid=1144] Successfully activated service 'org.xfce.Xfconf'
Jan 11 09:39:42 DietPi dbus-daemon[307]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.11' (uid=0 pid=1126 comm="xfce4-session")
Jan 11 09:39:42 DietPi systemd[1]: Starting polkit.service - Authorization Manager...
 Subject: A start job for unit polkit.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit polkit.service has begun execution.
 
 The job identifier is 532.
Jan 11 09:39:42 DietPi polkitd[1247]: Started polkitd version 122
Jan 11 09:39:42 DietPi polkitd[1247]: Loading rules from directory /etc/polkit-1/rules.d
Jan 11 09:39:42 DietPi polkitd[1247]: Loading rules from directory /usr/share/polkit-1/rules.d
Jan 11 09:39:42 DietPi polkitd[1247]: Finished loading, compiling and executing 3 rules
Jan 11 09:39:42 DietPi dbus-daemon[307]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jan 11 09:39:42 DietPi systemd[1]: Started polkit.service - Authorization Manager.
 Subject: A start job for unit polkit.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit polkit.service has finished successfully.
 
 The job identifier is 532.
Jan 11 09:39:42 DietPi polkitd[1247]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jan 11 09:39:44 DietPi dbus-daemon[307]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.13' (uid=0 pid=1265 comm="xfsettingsd")
Jan 11 09:39:44 DietPi systemd[1]: Starting upower.service - Daemon for power management...
 Subject: A start job for unit upower.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit upower.service has begun execution.
 
 The job identifier is 598.
Jan 11 09:39:44 DietPi dbus-daemon[307]: [system] Successfully activated service 'org.freedesktop.UPower'
Jan 11 09:39:44 DietPi systemd[1]: Started upower.service - Daemon for power management.
 Subject: A start job for unit upower.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit upower.service has finished successfully.
 
 The job identifier is 598.
Jan 11 09:42:47 DietPi dropbear[1399]: [1399] Jan 11 09:42:47 Child connection from 192.168.1.171:26762
Jan 11 09:42:47 DietPi dropbear[1399]: [1399] Jan 11 09:42:47 Failed loading /etc/dropbear/dropbear_dss_host_key
Jan 11 09:43:22 DietPi dropbear[1399]: [1399] Jan 11 09:43:22 Password auth succeeded for 'root' from 192.168.1.171:26762
Jan 11 09:43:22 DietPi dropbear[1400]: [1400] Jan 11 09:43:22 Child connection from 192.168.1.171:26795
Jan 11 09:43:22 DietPi dropbear[1400]: [1400] Jan 11 09:43:22 Failed loading /etc/dropbear/dropbear_dss_host_key
Jan 11 09:43:23 DietPi dropbear[1400]: [1400] Jan 11 09:43:23 Password auth succeeded for 'root' from 192.168.1.171:26795
Jan 11 09:45:09 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 3
Jan 11 09:45:09 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:09 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:45:12 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
Jan 11 09:45:12 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:12 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:45:16 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 4
Jan 11 09:45:16 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:16 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:45:20 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
Jan 11 09:45:20 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:20 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:45:26 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 9
Jan 11 09:45:26 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:26 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:45:35 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 9
Jan 11 09:45:35 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:35 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:45:44 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 9
Jan 11 09:45:44 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:44 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:45:54 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 10
Jan 11 09:45:54 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:45:54 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:46:04 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
Jan 11 09:46:04 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:46:04 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:46:10 DietPi dhclient[447]: No DHCPOFFERS received.
Jan 11 09:46:10 DietPi dhclient[447]: No working leases in persistent database - sleeping.
Jan 11 09:49:45 DietPi dbus-daemon[1144]: [session uid=0 pid=1144] Activating service name='org.xfce.Xfconf' requested by ':1.12' (uid=0 pid=1273 comm="xfce4-panel")
Jan 11 09:49:45 DietPi dbus-daemon[1144]: [session uid=0 pid=1144] Successfully activated service 'org.xfce.Xfconf'
Jan 11 09:51:05 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 6
Jan 11 09:51:05 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:51:05 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:51:11 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 12
Jan 11 09:51:11 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:51:11 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:51:23 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 13
Jan 11 09:51:23 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:51:23 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:51:30 DietPi dropbear[4315]: [4315] Jan 11 09:51:30 Child connection from 192.168.1.171:26842
Jan 11 09:51:30 DietPi dropbear[4315]: [4315] Jan 11 09:51:30 Failed loading /etc/dropbear/dropbear_dss_host_key
Jan 11 09:51:36 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 11
Jan 11 09:51:36 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:51:36 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:51:36 DietPi dropbear[4315]: [4315] Jan 11 09:51:36 Password auth succeeded for 'dietpi' from 192.168.1.171:26842
Jan 11 09:51:36 DietPi dropbear[4352]: [4352] Jan 11 09:51:36 Child connection from 192.168.1.171:26843
Jan 11 09:51:36 DietPi dropbear[4352]: [4352] Jan 11 09:51:36 Failed loading /etc/dropbear/dropbear_dss_host_key
Jan 11 09:51:36 DietPi dropbear[4352]: [4352] Jan 11 09:51:36 Password auth succeeded for 'dietpi' from 192.168.1.171:26843
Jan 11 09:51:47 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 12
Jan 11 09:51:47 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:51:47 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:51:59 DietPi dhclient[447]: DHCPDISCOVER on eth1 to 255.255.255.255 port 67 interval 7
Jan 11 09:51:59 DietPi dhclient[447]: send_packet: Network is down
Jan 11 09:51:59 DietPi dhclient[447]: dhclient.c:2600: Failed to send 300 byte long packet over eth1 interface.
Jan 11 09:52:06 DietPi dhclient[447]: No DHCPOFFERS received.
Jan 11 09:52:06 DietPi dhclient[447]: No working leases in persistent database - sleeping.
Jan 11 09:52:12 DietPi sudo[4801]:   dietpi : TTY=pts/2 ; PWD=/home/dietpi ; USER=root ; COMMAND=/usr/bin/journalctl
Jan 11 09:52:12 DietPi sudo[4801]: pam_unix(sudo:session): session opened for user root(uid=0) by dietpi(uid=1000)
Jan 11 09:52:12 DietPi sudo[4801]: pam_unix(sudo:session): session closed for user root
Jan 11 09:53:14 DietPi sudo[5251]:   dietpi : TTY=pts/2 ; PWD=/home/dietpi ; USER=root ; COMMAND=/usr/bin/journalctl
Jan 11 09:53:14 DietPi sudo[5251]: pam_unix(sudo:session): session opened for user root(uid=0) by dietpi(uid=1000)
Jan 11 09:53:14 DietPi sudo[5251]: pam_unix(sudo:session): session closed for user root
Jan 11 09:53:31 DietPi systemd[1]: Starting systemd-tmpfiles-clean.service - Cleanup of Temporary Directories...
 Subject: A start job for unit systemd-tmpfiles-clean.service has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-tmpfiles-clean.service has begun execution.
 
 The job identifier is 664.
Jan 11 09:53:31 DietPi systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit systemd-tmpfiles-clean.service has successfully entered the 'dead' state.
Jan 11 09:53:31 DietPi systemd[1]: Finished systemd-tmpfiles-clean.service - Cleanup of Temporary Directories.
 Subject: A start job for unit systemd-tmpfiles-clean.service has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit systemd-tmpfiles-clean.service has finished successfully.
 
 The job identifier is 664.
Jan 11 09:53:31 DietPi systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dclean.service.mount: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit run-credentials-systemd\x2dtmpfiles\x2dclean.service.mount has successfully entered the 'dead' state.
Jan 11 09:53:32 DietPi sudo[5360]:   dietpi : TTY=pts/2 ; PWD=/home/dietpi ; USER=root ; COMMAND=/boot/dietpi/dietpi-config
Jan 11 09:53:32 DietPi sudo[5360]: pam_unix(sudo:session): session opened for user root(uid=0) by dietpi(uid=1000)
Jan 11 09:53:48 DietPi systemd[1]: Reloading.
Jan 11 09:53:49 DietPi systemd[1]: Stopping [email protected] - ifup for eth0...
 Subject: A stop job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A stop job for unit [email protected] has begun execution.
 
 The job identifier is 669.
Jan 11 09:53:49 DietPi dhclient[5618]: Killed old client process
Jan 11 09:53:49 DietPi ifdown[5618]: Killed old client process
Jan 11 09:53:50 DietPi dhclient[5618]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:53:50 DietPi ifdown[5618]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:53:50 DietPi ifdown[5618]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:53:50 DietPi ifdown[5618]: All rights reserved.
Jan 11 09:53:50 DietPi ifdown[5618]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:53:50 DietPi dhclient[5618]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:53:50 DietPi dhclient[5618]: All rights reserved.
Jan 11 09:53:50 DietPi dhclient[5618]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:53:50 DietPi dhclient[5618]: 
Jan 11 09:53:50 DietPi dhclient[5618]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:50 DietPi ifdown[5618]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:50 DietPi ifdown[5618]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:50 DietPi ifdown[5618]: Sending on   Socket/fallback
Jan 11 09:53:50 DietPi dhclient[5618]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:50 DietPi dhclient[5618]: Sending on   Socket/fallback
Jan 11 09:53:50 DietPi dhclient[5618]: DHCPRELEASE of 192.168.1.109 on eth0 to 192.168.1.254 port 67
Jan 11 09:53:50 DietPi ifdown[5618]: DHCPRELEASE of 192.168.1.109 on eth0 to 192.168.1.254 port 67
Jan 11 09:53:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Jan 11 09:53:50 DietPi systemd[1]: [email protected]: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit [email protected] has successfully entered the 'dead' state.
Jan 11 09:53:50 DietPi systemd[1]: Stopped [email protected] - ifup for eth0.
 Subject: A stop job for unit [email protected] has finished
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A stop job for unit [email protected] has finished.
 
 The job identifier is 669 and the job result is done.
Jan 11 09:53:50 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
 Subject: A start job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has begun execution.
 
 The job identifier is 669.
Jan 11 09:53:50 DietPi dhclient[5651]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:53:50 DietPi ifup[5651]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:53:50 DietPi ifup[5651]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:53:50 DietPi ifup[5651]: All rights reserved.
Jan 11 09:53:50 DietPi ifup[5651]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:53:50 DietPi dhclient[5651]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:53:50 DietPi dhclient[5651]: All rights reserved.
Jan 11 09:53:50 DietPi dhclient[5651]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:53:50 DietPi dhclient[5651]: 
Jan 11 09:53:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 11 09:53:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Jan 11 09:53:50 DietPi kernel: dwmac4: Master AXI performs any burst length
Jan 11 09:53:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Jan 11 09:53:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Jan 11 09:53:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Jan 11 09:53:50 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
Jan 11 09:53:51 DietPi dhclient[5651]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:51 DietPi ifup[5651]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:51 DietPi ifup[5651]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:51 DietPi ifup[5651]: Sending on   Socket/fallback
Jan 11 09:53:51 DietPi ifup[5651]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
Jan 11 09:53:51 DietPi dhclient[5651]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:53:51 DietPi dhclient[5651]: Sending on   Socket/fallback
Jan 11 09:53:51 DietPi dhclient[5651]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
Jan 11 09:53:54 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Jan 11 09:53:54 DietPi NetworkManager[409]: <info>  [1736585634.0488] device (eth0): carrier: link connected
Jan 11 09:53:57 DietPi dhclient[5651]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
Jan 11 09:53:57 DietPi ifup[5651]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
Jan 11 09:53:57 DietPi ifup[5651]: DHCPOFFER of 192.168.1.109 from 192.168.1.254
Jan 11 09:53:57 DietPi ifup[5651]: DHCPREQUEST for 192.168.1.109 on eth0 to 255.255.255.255 port 67
Jan 11 09:53:57 DietPi dhclient[5651]: DHCPOFFER of 192.168.1.109 from 192.168.1.254
Jan 11 09:53:57 DietPi ifup[5651]: DHCPACK of 192.168.1.109 from 192.168.1.254
Jan 11 09:53:57 DietPi dhclient[5651]: DHCPREQUEST for 192.168.1.109 on eth0 to 255.255.255.255 port 67
Jan 11 09:53:57 DietPi dhclient[5651]: DHCPACK of 192.168.1.109 from 192.168.1.254
Jan 11 09:53:57 DietPi dhclient[5651]: bound to 192.168.1.109 -- renewal in 20465 seconds.
Jan 11 09:53:57 DietPi ifup[5651]: bound to 192.168.1.109 -- renewal in 20465 seconds.
Jan 11 09:53:58 DietPi systemd[1]: Finished [email protected] - ifup for eth0.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 669.
Jan 11 09:53:58 DietPi dhclient[5737]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:53:58 DietPi dhclient[5737]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:53:58 DietPi dhclient[5737]: All rights reserved.
Jan 11 09:53:58 DietPi dhclient[5737]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:53:58 DietPi dhclient[5737]: 
Jan 11 09:53:58 DietPi dhclient[5737]: Failed to get interface index: No such device
Jan 11 09:53:58 DietPi dhclient[5737]: 
Jan 11 09:53:58 DietPi dhclient[5737]: If you think you have received this message due to a bug rather
Jan 11 09:53:58 DietPi dhclient[5737]: than a configuration issue please read the section on submitting
Jan 11 09:53:58 DietPi dhclient[5737]: bugs on either our web page at www.isc.org or in the README file
Jan 11 09:53:58 DietPi dhclient[5737]: before submitting a bug.  These pages explain the proper
Jan 11 09:53:58 DietPi dhclient[5737]: process and the information we find helpful for debugging.
Jan 11 09:53:58 DietPi dhclient[5737]: 
Jan 11 09:53:58 DietPi dhclient[5737]: exiting.
Jan 11 09:54:06 DietPi kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jan 11 09:54:06 DietPi kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jan 11 09:54:06 DietPi kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Jan 11 09:54:11 DietPi systemd[1]: Reloading.
Jan 11 09:54:12 DietPi systemd[1]: Stopping [email protected] - ifup for eth0...
 Subject: A stop job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A stop job for unit [email protected] has begun execution.
 
 The job identifier is 676.
Jan 11 09:54:12 DietPi dhclient[6067]: Killed old client process
Jan 11 09:54:12 DietPi ifdown[6067]: Killed old client process
Jan 11 09:54:13 DietPi dhclient[6067]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:54:13 DietPi ifdown[6067]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:54:13 DietPi ifdown[6067]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:54:13 DietPi ifdown[6067]: All rights reserved.
Jan 11 09:54:13 DietPi ifdown[6067]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:54:13 DietPi dhclient[6067]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:54:13 DietPi dhclient[6067]: All rights reserved.
Jan 11 09:54:13 DietPi dhclient[6067]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:54:13 DietPi dhclient[6067]: 
Jan 11 09:54:13 DietPi dhclient[6067]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:13 DietPi ifdown[6067]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:13 DietPi ifdown[6067]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:13 DietPi ifdown[6067]: Sending on   Socket/fallback
Jan 11 09:54:13 DietPi dhclient[6067]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:13 DietPi dhclient[6067]: Sending on   Socket/fallback
Jan 11 09:54:13 DietPi dhclient[6067]: DHCPRELEASE of 192.168.1.109 on eth0 to 192.168.1.254 port 67
Jan 11 09:54:13 DietPi ifdown[6067]: DHCPRELEASE of 192.168.1.109 on eth0 to 192.168.1.254 port 67
Jan 11 09:54:13 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
Jan 11 09:54:13 DietPi systemd[1]: [email protected]: Deactivated successfully.
 Subject: Unit succeeded
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 The unit [email protected] has successfully entered the 'dead' state.
Jan 11 09:54:13 DietPi systemd[1]: Stopped [email protected] - ifup for eth0.
 Subject: A stop job for unit [email protected] has finished
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A stop job for unit [email protected] has finished.
 
 The job identifier is 676 and the job result is done.
Jan 11 09:54:13 DietPi systemd[1]: Starting [email protected] - ifup for eth0...
 Subject: A start job for unit [email protected] has begun execution
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has begun execution.
 
 The job identifier is 676.
Jan 11 09:54:13 DietPi dhclient[6106]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:54:13 DietPi ifup[6106]: Internet Systems Consortium DHCP Client 4.4.3-P1
Jan 11 09:54:13 DietPi ifup[6106]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:54:13 DietPi ifup[6106]: All rights reserved.
Jan 11 09:54:13 DietPi ifup[6106]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:54:13 DietPi dhclient[6106]: Copyright 2004-2022 Internet Systems Consortium.
Jan 11 09:54:13 DietPi dhclient[6106]: All rights reserved.
Jan 11 09:54:13 DietPi dhclient[6106]: For info, please visit https://www.isc.org/software/dhcp/
Jan 11 09:54:13 DietPi dhclient[6106]: 
Jan 11 09:54:14 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
Jan 11 09:54:14 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
Jan 11 09:54:14 DietPi kernel: dwmac4: Master AXI performs any burst length
Jan 11 09:54:14 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
Jan 11 09:54:14 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
Jan 11 09:54:14 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
Jan 11 09:54:14 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii-id link mode
Jan 11 09:54:14 DietPi dhclient[6106]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:14 DietPi ifup[6106]: Listening on LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:14 DietPi ifup[6106]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:14 DietPi ifup[6106]: Sending on   Socket/fallback
Jan 11 09:54:14 DietPi dhclient[6106]: Sending on   LPF/eth0/e2:e1:76:03:12:f8
Jan 11 09:54:14 DietPi ifup[6106]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8
Jan 11 09:54:14 DietPi dhclient[6106]: Sending on   Socket/fallback
Jan 11 09:54:14 DietPi dhclient[6106]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8
Jan 11 09:54:17 DietPi kernel: rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
Jan 11 09:54:17 DietPi NetworkManager[409]: <info>  [1736585657.3129] device (eth0): carrier: link connected
Jan 11 09:54:22 DietPi dhclient[6106]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
Jan 11 09:54:22 DietPi ifup[6106]: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
Jan 11 09:54:22 DietPi ifup[6106]: DHCPOFFER of 192.168.1.109 from 192.168.1.254
Jan 11 09:54:22 DietPi ifup[6106]: DHCPREQUEST for 192.168.1.109 on eth0 to 255.255.255.255 port 67
Jan 11 09:54:22 DietPi ifup[6106]: DHCPACK of 192.168.1.109 from 192.168.1.254
Jan 11 09:54:22 DietPi dhclient[6106]: DHCPOFFER of 192.168.1.109 from 192.168.1.254
Jan 11 09:54:22 DietPi dhclient[6106]: DHCPREQUEST for 192.168.1.109 on eth0 to 255.255.255.255 port 67
Jan 11 09:54:22 DietPi dhclient[6106]: DHCPACK of 192.168.1.109 from 192.168.1.254
Jan 11 09:54:22 DietPi dhclient[6106]: bound to 192.168.1.109 -- renewal in 18279 seconds.
Jan 11 09:54:22 DietPi ifup[6106]: bound to 192.168.1.109 -- renewal in 18279 seconds.
Jan 11 09:54:22 DietPi systemd[1]: Finished [email protected] - ifup for eth0.
 Subject: A start job for unit [email protected] has finished successfully
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished successfully.
 
 The job identifier is 676.
Jan 11 09:54:22 DietPi systemd[1]: Unnecessary job was removed for sys-subsystem-net-devices-wlan0.device - /sys/subsystem/net/devices/wlan0.
 Subject: A start job for unit sys-subsystem-net-devices-wlan0.device has failed
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit sys-subsystem-net-devices-wlan0.device has finished with a failure.
 
 The job identifier is 685 and the job result is collected.
Jan 11 09:54:22 DietPi systemd[1]: [email protected]: Bound to unit sys-subsystem-net-devices-wlan0.device, but unit isn't active.
Jan 11 09:54:22 DietPi systemd[1]: Dependency failed for [email protected] - ifup for wlan0.
 Subject: A start job for unit [email protected] has failed
 Defined-By: systemd
 Support: https://www.debian.org/support
 
 A start job for unit [email protected] has finished with a failure.
 
 The job identifier is 682 and the job result is dependency.
Jan 11 09:54:22 DietPi systemd[1]: [email protected]: Job [email protected]/start failed with result 'dependency'.
Jan 11 09:54:29 DietPi sudo[5360]: pam_unix(sudo:session): session closed for user root
Jan 11 09:54:37 DietPi sudo[6409]:   dietpi : TTY=pts/2 ; PWD=/home/dietpi ; USER=root ; COMMAND=/usr/bin/journalctl -xe
Jan 11 09:54:37 DietPi sudo[6409]: pam_unix(sudo:session): session opened for user root(uid=0) by dietpi(uid=1000)
dietpi@DietPi:~$

@MichaIng
Copy link
Owner

image and dtb are inverted ;)

This doesn't matter. 123{foo,bar}456 is a syntax to add two arguments 123foo456 and 123bar456. And the order of download and dpkg install does not matter.

Okay, does the ROCK 3B also use this sprdwl_ng driver for its onboard WiFi? Or maybe another 3rd party driver which I removed together with the patches. On Orange Pi 3B it did not work either (to bring up Ethernet), so the Armbian patches can be ruled out. I'll try now to patch some parts from the vendor device tree into the mainline device tree.

@MichaIng
Copy link
Owner

I did a new build, with Armbian patches re-applied + another patch which changes the PHY mode and applies RX/TX delays in the MAC. This is true as well in the vendor kernel. Let's see whether it is the part which fixes the 2nd Ethernet port. Same procedure to apply:

cd /tmp
wget https://dietpi.com/downloads/binaries/testing/linux-{dtb,image}-current-rockchip64.deb
dpkg -i linux-{dtb,image}-current-rockchip64.deb
reboot

@MidG971
Copy link
Author

MidG971 commented Jan 13, 2025

I did a new build, with Armbian patches re-applied + another patch which changes the PHY mode and applies RX/TX delays in the MAC. This is true as well in the vendor kernel. Let's see whether it is the part which fixes the 2nd Ethernet port. Same procedure to apply:

cd /tmp
wget https://dietpi.com/downloads/binaries/testing/linux-{dtb,image}-current-rockchip64.deb
dpkg -i linux-{dtb,image}-current-rockchip64.deb
reboot

Hello, will try at lunch break 😉

@MidG971
Copy link
Author

MidG971 commented Jan 13, 2025

Still the same :

root@DietPi:~# dmesg
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.000000] Linux version 6.12.9-current-rockchip64 (build@armbian) (aarch64-linux-gn                                                                                                u-gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #1 S                                                                                                MP PREEMPT Thu Jan  9 12:33:55 UTC 2025
[    0.000000] KASLR disabled due to lack of seed
[    0.000000] Machine model: Radxa ROCK 3B
[    0.000000] efi: UEFI not found.
[    0.000000] NUMA: Faking a node at [mem 0x0000000000200000-0x00000001ffffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x1fefde540-0x1fefe0cbf]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000200000-0x00000000efffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[    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.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 34 pages/cpu s98968 r8192 d32104 u139264
[    0.000000] pcpu-alloc: s98968 r8192 d32104 u139264 alloc=34*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: Virtualization Host Extensions
[    0.000000] CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 24                                                                                                41009
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: root=UUID=463087c8-1d8f-4075-b7b1-4b86c641e99e rootf                                                                                                stype=ext4 rootwait console=ttyS2,1500000 console=tty1 consoleblank=0 coherent_pool=2M u                                                                                                sb-storage.quirks= net.ifnames=0 androidboot.fwver=ddr-v1.21-2d653b3476,bl31-v1.44,uboot                                                                                                -rmbian-201-10/09/2024
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linea                                                                                                r)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] Fallback order for Node 0: 0
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2031104
[    0.000000] Policy zone: Normal
[    0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: mapped [mem 0x00000000e4000000-0x00000000e8000000] (64MB                                                                                                )
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
[    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=4
[    0.000000] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_                                                                                                cpu_ids=4.
[    0.000000] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu                                                                                                _task_cpu_ids=4.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 320 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: MBI range [296:319]
[    0.000000] GICv3: Using MBI frame 0x00000000fd410000
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[    0.000000] ITS: No ITS available, not enabling LPIs
[    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: 0x588fe                                                                                                9dc0, max_idle_ns: 440795202592 ns
[    0.000001] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097                                                                                                ns
[    0.001332] Console: colour dummy device 80x25
[    0.001353] printk: legacy console [tty1] enabled
[    0.002277] Calibrating delay loop (skipped), value calculated using timer frequency.                                                                                                . 48.00 BogoMIPS (lpj=96000)
[    0.002325] pid_max: default: 32768 minimum: 301
[    0.002453] LSM: initializing lsm=capability,yama,apparmor
[    0.002566] Yama: becoming mindful.
[    0.002906] AppArmor: AppArmor initialized
[    0.003098] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.003175] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linea                                                                                                r)
[    0.028286] rcu: Hierarchical SRCU implementation.
[    0.028335] rcu:     Max phase no-delay instances is 1000.
[    0.028843] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode le                                                                                                vel
[    0.032645] EFI services will not be available.
[    0.035762] smp: Bringing up secondary CPUs ...
[    0.043941] Detected VIPT I-cache on CPU1
[    0.044046] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[    0.044106] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    0.052147] Detected VIPT I-cache on CPU2
[    0.052247] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[    0.052300] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    0.060194] Detected VIPT I-cache on CPU3
[    0.060295] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[    0.060345] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    0.060536] smp: Brought up 1 node, 4 CPUs
[    0.060686] SMP: Total of 4 processors activated.
[    0.060705] CPU: All CPU(s) started at EL2
[    0.060724] CPU features: detected: 32-bit EL0 Support
[    0.060742] CPU features: detected: 32-bit EL1 Support
[    0.060762] CPU features: detected: Data cache clean to the PoU not required for I/D                                                                                                 coherence
[    0.060789] CPU features: detected: Common not Private translations
[    0.060808] CPU features: detected: CRC32 instructions
[    0.060833] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.060853] CPU features: detected: LSE atomic instructions
[    0.060872] CPU features: detected: Privileged Access Never
[    0.060891] CPU features: detected: RAS Extension Support
[    0.060912] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.061008] alternatives: applying system-wide alternatives
[    0.065818] Memory: 7714000K/8124416K available (16384K kernel code, 2914K rwdata, 11                                                                                                072K rodata, 5120K init, 786K bss, 274284K reserved, 131072K cma-reserved)
[    0.068722] devtmpfs: initialized
[    0.092278] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_n                                                                                                s: 7645041785100000 ns
[    0.092368] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.096597] 23648 pages in range for non-PLT usage
[    0.096626] 515168 pages in range for PLT usage
[    0.097036] pinctrl core: initialized pinctrl subsystem
[    0.097919] DMI not present or invalid.
[    0.102815] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.104924] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.106266] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.107422] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocatio                                                                                                ns
[    0.107540] audit: initializing netlink subsys (disabled)
[    0.107906] audit: type=2000 audit(0.104:1): state=initialized audit_enabled=0 res=1
[    0.111341] thermal_sys: Registered thermal governor 'fair_share'
[    0.111360] thermal_sys: Registered thermal governor 'bang_bang'
[    0.111391] thermal_sys: Registered thermal governor 'step_wise'
[    0.111413] thermal_sys: Registered thermal governor 'user_space'
[    0.111545] cpuidle: using governor menu
[    0.111928] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.112177] ASID allocator initialised with 65536 entries
[    0.112570] Serial: AMBA PL011 UART driver
[    0.129074] /vop@fe040000: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.129222] /hdmi@fe0a0000: Fixed dependency cycle(s) with /vop@fe040000
[    0.134760] /pcie@fe260000: Fixed dependency cycle(s) with /pcie@fe260000/legacy-inte                                                                                                rrupt-controller
[    0.155711] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic                                                                                                 allocation.
[    0.156363] rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
[    0.156863] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic                                                                                                 allocation.
[    0.157281] rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
[    0.157723] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic                                                                                                 allocation.
[    0.158150] rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
[    0.158838] gpio gpiochip3: Static allocation of GPIO base is deprecated, use dynamic                                                                                                 allocation.
[    0.159250] rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
[    0.159709] gpio gpiochip4: Static allocation of GPIO base is deprecated, use dynamic                                                                                                 allocation.
[    0.160118] rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
[    0.164385] /pcie@fe280000: Fixed dependency cycle(s) with /pcie@fe280000/legacy-inte                                                                                                rrupt-controller
[    0.165868] /hdmi@fe0a0000: Fixed dependency cycle(s) with /hdmi-con
[    0.166004] /hdmi-con: Fixed dependency cycle(s) with /hdmi@fe0a0000
[    0.172063] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.172111] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.172136] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.172158] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.172181] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.172202] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.172225] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.172246] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.174329] cryptd: max_cpu_qlen set to 1000
[    0.243175] raid6: neonx8   gen()  1405 MB/s
[    0.311397] raid6: neonx4   gen()  1430 MB/s
[    0.379555] raid6: neonx2   gen()  1318 MB/s
[    0.447704] raid6: neonx1   gen()  1068 MB/s
[    0.515847] raid6: int64x8  gen()   910 MB/s
[    0.583977] raid6: int64x4  gen()  1046 MB/s
[    0.652110] raid6: int64x2  gen()   934 MB/s
[    0.720253] raid6: int64x1  gen()   691 MB/s
[    0.720282] raid6: using algorithm neonx4 gen() 1430 MB/s
[    0.788362] raid6: .... xor() 1102 MB/s, rmw enabled
[    0.788394] raid6: using neon recovery algorithm
[    0.789853] iommu: Default domain type: Translated
[    0.789889] iommu: DMA domain TLB invalidation policy: strict mode
[    0.790881] SCSI subsystem initialized
[    0.791226] libata version 3.00 loaded.
[    0.791603] usbcore: registered new interface driver usbfs
[    0.791678] usbcore: registered new interface driver hub
[    0.791748] usbcore: registered new device driver usb
[    0.792512] pps_core: LinuxPPS API ver. 1 registered
[    0.792542] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <gio                                                                                                [email protected]>
[    0.792592] PTP clock support registered
[    0.792666] EDAC MC: Ver: 3.0.0
[    0.793231] scmi_core: SCMI protocol bus registered
[    0.794870] NetLabel: Initializing
[    0.794900] NetLabel:  domain hash size = 128
[    0.794920] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.795038] NetLabel:  unlabeled traffic allowed by default
[    0.795334] vgaarb: loaded
[    0.796048] clocksource: Switched to clocksource arch_sys_counter
[    0.800992] VFS: Disk quotas dquot_6.6.0
[    0.801086] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.801929] AppArmor: AppArmor Filesystem Enabled
[    0.817389] NET: Registered PF_INET protocol family
[    0.818095] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.893003] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes,                                                                                                 linear)
[    0.893295] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.893514] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear                                                                                                )
[    0.894697] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.896728] TCP: Hash tables configured (established 65536 bind 65536)
[    0.897010] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.897241] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.897700] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.897770] NET: Registered PF_XDP protocol family
[    0.897809] PCI: CLS 0 bytes, default 64
[    0.898229] Trying to unpack rootfs image as initramfs...
[    0.904234] kvm [1]: nv: 554 coarse grained trap handlers
[    0.904896] kvm [1]: IPA Size Limit: 40 bits
[    0.904991] kvm [1]: GICv3: no GICV resource entry
[    0.905015] kvm [1]: disabling GICv2 emulation
[    0.905075] kvm [1]: GIC system register CPU interface enabled
[    0.905133] kvm [1]: vgic interrupt IRQ9
[    0.905207] kvm [1]: VHE mode initialized successfully
[    0.908716] Initialise system trusted keyrings
[    0.908849] Key type blacklist registered
[    0.909303] workingset: timestamp_bits=44 max_order=21 bucket_order=0
[    0.909432] zbud: loaded
[    0.910376] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.911273] fuse: init (API version 7.41)
[    0.914191] integrity: Platform Keyring initialized
[    0.988594] xor: measuring software checksum speed
[    0.990558]    8regs           :  1721 MB/sec
[    0.992745]    32regs          :  1527 MB/sec
[    0.994693]    arm64_neon      :  1725 MB/sec
[    0.994720] xor: using function: arm64_neon (1725 MB/sec)
[    0.994754] Key type asymmetric registered
[    0.994776] Asymmetric key parser 'x509' registered
[    0.994965] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.995469] io scheduler mq-deadline registered
[    0.995528] io scheduler kyber registered
[    0.995628] io scheduler bfq registered
[    1.002594] rockchip-naneng-combphy fe830000.phy: error -ENOENT: failed to get phy re                                                                                                set
[    1.002656] rockchip-naneng-combphy fe830000.phy: probe with driver rockchip-naneng-c                                                                                                ombphy failed with error -2
[    1.003112] rockchip-naneng-combphy fe840000.phy: error -ENOENT: failed to get phy re                                                                                                set
[    1.003153] rockchip-naneng-combphy fe840000.phy: probe with driver rockchip-naneng-c                                                                                                ombphy failed with error -2
[    1.003911] rockchip-naneng-combphy fe820000.phy: error -ENOENT: failed to get phy re                                                                                                set
[    1.003970] rockchip-naneng-combphy fe820000.phy: probe with driver rockchip-naneng-c                                                                                                ombphy failed with error -2
[    1.963523] Freeing initrd memory: 15016K
[    1.966429] ledtrig-cpu: registered to indicate activity on CPUs
[    1.974267] dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.974325] dma-pl330 fe530000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num                                                                                                _Peri-32 Num_Events-16
[    1.978055] dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.978113] dma-pl330 fe550000.dma-controller:       DBUFF-128x8bytes Num_Chans-8 Num                                                                                                _Peri-32 Num_Events-16
[    1.981693] Serial: 8250/16550 driver, 8 ports, IRQ sharing disabled
[    1.987347] printk: legacy console [ttyS2] disabled
[    1.987896] fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 25, base_baud = 1500000)                                                                                                 is a 16550A
[    1.988266] printk: legacy console [ttyS2] enabled
[    2.112888] Serial: AMBA driver
[    2.126206] loop: module loaded
[    2.128565] Key type psk registered
[    2.134910] thunder_xcv, ver 1.0
[    2.135284] thunder_bgx, ver 1.0
[    2.135640] nicpf, ver 1.0
[    2.140252] usbcore: registered new interface driver usb-storage
[    2.143497] mousedev: PS/2 mouse device common for all mice
[    2.144782] i2c_dev: i2c /dev entries driver
[    2.147865] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[    2.163199] rtc-hym8563 5-0051: registered as rtc0
[    2.164720] rtc-hym8563 5-0051: setting system clock to 2025-01-13T11:44:22 UTC (1736                                                                                                768662)
[    2.173183] sdhci: Secure Digital Host Controller Interface driver
[    2.173775] sdhci: Copyright(c) Pierre Ossman
[    2.174215] Synopsys Designware Multimedia Card Interface Driver
[    2.175845] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.179063] arm-scmi arm-scmi.1.auto: Using scmi_smc_transport
[    2.179620] arm-scmi arm-scmi.1.auto: SCMI max-rx-timeout: 30ms
[    2.180409] scmi_protocol scmi_dev.1: Enabled polling mode TX channel - prot_id:16
[    2.181495] arm-scmi arm-scmi.1.auto: SCMI Notifications - Core Enabled.
[    2.182173] arm-scmi arm-scmi.1.auto: SCMI Protocol v2.0 'rockchip:' Firmware version                                                                                                 0x0
[    2.185031] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.186003] hid: raw HID events driver (C) Jiri Kosina
[    2.186603] usbcore: registered new interface driver usbhid
[    2.187119] usbhid: USB HID core driver
[    2.189236] rockchip-dfi fe230000.dfi: dfi initialized, dram type: 0x8, channels: 1
[    2.192088] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) c                                                                                                ounters available
[    2.194830] NET: Registered PF_INET6 protocol family
[    2.254175] Segment Routing with IPv6
[    2.254651] In-situ OAM (IOAM) with IPv6
[    2.255146] NET: Registered PF_PACKET protocol family
[    2.255849] 8021q: 802.1Q VLAN Support v1.8
[    2.256359] Key type dns_resolver registered
[    2.269966] registered taskstats version 1
[    2.270852] Loading compiled-in X.509 certificates
[    2.289231] zswap: loaded using pool zstd/z3fold
[    2.290067] Demotion targets for Node 0: null
[    2.290926] Key type .fscrypt registered
[    2.291303] Key type fscrypt-provisioning registered
[    2.296230] Btrfs loaded, zoned=yes, fsverity=yes
[    2.296960] Key type encrypted registered
[    2.297357] AppArmor: AppArmor sha256 policy hashing enabled
[    2.344111] ehci-platform fd800000.usb: EHCI Host Controller
[    2.344151] ohci-platform fd840000.usb: Generic Platform OHCI controller
[    2.344690] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
[    2.345292] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 2
[    2.346180] ehci-platform fd800000.usb: irq 38, io mem 0xfd800000
[    2.346826] ohci-platform fd840000.usb: irq 39, io mem 0xfd840000
[    2.360073] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[    2.361013] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice=                                                                                                 6.12
[    2.361775] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.362435] usb usb1: Product: EHCI Host Controller
[    2.362884] usb usb1: Manufacturer: Linux 6.12.9-current-rockchip64 ehci_hcd
[    2.363523] usb usb1: SerialNumber: fd800000.usb
[    2.364765] hub 1-0:1.0: USB hub found
[    2.365181] hub 1-0:1.0: 1 port detected
[    2.404412] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice=                                                                                                 6.12
[    2.405192] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.405856] usb usb2: Product: Generic Platform OHCI controller
[    2.406397] usb usb2: Manufacturer: Linux 6.12.9-current-rockchip64 ohci_hcd
[    2.407036] usb usb2: SerialNumber: fd840000.usb
[    2.408303] hub 2-0:1.0: USB hub found
[    2.408727] hub 2-0:1.0: 1 port detected
[    2.451069] dwmmc_rockchip fe2b0000.mmc: IDMAC supports 32-bit address mode.
[    2.451785] dwmmc_rockchip fe2b0000.mmc: Using internal DMA controller.
[    2.452446] dwmmc_rockchip fe2b0000.mmc: Version ID is 270a
[    2.453035] dwmmc_rockchip fe2b0000.mmc: DW MMC controller at irq 65,32 bit host data                                                                                                 width,256 deep fifo
[    2.468015] WCN: marlin_init entry!
[    2.469066] of_cfs_init
[    2.469354] of_cfs_init: OK
[    2.471458] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 3                                                                                                75000HZ div = 0)
[    2.484210] mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
[    2.556482] clk: Disabling unused clocks
[    2.558673] PM: genpd: Disabling unused power domains
[    2.561877] Freeing unused kernel memory: 5120K
[    2.562546] Run /init as init process
[    2.562897]   with arguments:
[    2.562908]     /init
[    2.562917]   with environment:
[    2.562926]     HOME=/
[    2.562934]     TERM=linux
[    2.601342] mmc0: new HS200 MMC card at address 0001
[    2.603010] mmcblk0: mmc0:0001 A3A561 57.6 GiB
[    2.610319]  mmcblk0: p1
[    2.611515] mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB
[    2.614371] mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB
[    2.616305] usb 1-1: new high-speed USB device number 2 using ehci-platform
[    2.617155] mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (243:0)
[    2.764926] usb 1-1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice=                                                                                                 1.11
[    2.765705] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    2.766355] usb 1-1: Product: USB 2.0 Hub
[    2.767693] hub 1-1:1.0: USB hub found
[    2.768319] hub 1-1:1.0: 4 ports detected
[    3.304175] usb 1-1.1: new low-speed USB device number 3 using ehci-platform
[    3.402191] rk808-rtc rk808-rtc.5.auto: registered as rtc1
[    3.418745] rockchip-vop2 fe040000.vop: Adding to iommu group 0
[    3.434138] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    3.434749] rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
[    3.438800] rockchip-drm display-subsystem: bound fe040000.vop (ops vop2_component_op                                                                                                s [rockchipdrm])
[    3.439039] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    3.440452] rk_gmac-dwmac fe010000.ethernet: TX delay(0x47).
[    3.440992] rk_gmac-dwmac fe010000.ethernet: RX delay(0x28).
[    3.441542] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    3.442170] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    3.447757] rk_gmac-dwmac fe010000.ethernet: init for RGMII
[    3.450884] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HD                                                                                                CP (DWC HDMI 2.0 TX PHY)
[    3.452388] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.453078] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[    3.453561] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    3.454243] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    3.454922] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    3.455559] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    3.457031] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[    3.458417] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops dw_hdmi_rockchip                                                                                                _ops [rockchipdrm])
[    3.466818] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    3.467361] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Tim                                                                                                er
[    3.468192] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.468859] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    3.469413] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[    3.472578] [drm] Initialized rockchip 1.0.0 for display-subsystem on minor 0
[    3.526488] usb 1-1.1: New USB device found, idVendor=1a2c, idProduct=2124, bcdDevice                                                                                                = 1.10
[    3.527330] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.528016] usb 1-1.1: Product: USB Keyboard
[    3.528499] usb 1-1.1: Manufacturer: SEM
[    3.535673] input: SEM USB Keyboard as /devices/platform/fd800000.usb/usb1/1-1/1-1.1/                                                                                                1-1.1:1.0/0003:1A2C:2124.0001/input/input0
[    3.577219] phy phy-fe8c0000.phy.3: lane number 0, val 1
[    3.578020] rockchip-dw-pcie 3c0800000.pcie: host bridge /pcie@fe280000 ranges:
[    3.578770] rockchip-dw-pcie 3c0800000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0                                                                                                x00f0100000
[    3.581165] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x00f0200000..0x00f1ffffff -> 0                                                                                                x00f0200000
[    3.582022] rockchip-dw-pcie 3c0800000.pcie:      MEM 0x0380000000..0x03bfffffff -> 0                                                                                                x0040000000
[    3.593109] rockchip-dw-pcie 3c0800000.pcie: iATU: unroll T, 8 ob, 8 ib, align 64K, l                                                                                                imit 8G
[    3.618776] rk_gmac-dwmac fe2a0000.ethernet: IRQ eth_lpi not found
[    3.619447] rk_gmac-dwmac fe2a0000.ethernet: IRQ sfty not found
[    3.622478] rk_gmac-dwmac fe2a0000.ethernet: clock input or output? (input).
[    3.623256] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
[    3.623967] rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
[    3.624996] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
[    3.625733] rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
[    3.626369] rk_gmac-dwmac fe2a0000.ethernet: integrated PHY? (no).
[    3.627047] rk_gmac-dwmac fe2a0000.ethernet: clock input from PHY
[    3.632669] rk_gmac-dwmac fe2a0000.ethernet: init for RGMII_ID
[    3.637818] rk_gmac-dwmac fe2a0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    3.638550] rk_gmac-dwmac fe2a0000.ethernet:         DWMAC4/5
[    3.639064] rk_gmac-dwmac fe2a0000.ethernet: DMA HW capability register supported
[    3.639780] rk_gmac-dwmac fe2a0000.ethernet: RX Checksum Offload Engine supported
[    3.640551] rk_gmac-dwmac fe2a0000.ethernet: TX Checksum insertion supported
[    3.641208] rk_gmac-dwmac fe2a0000.ethernet: Wake-Up On Lan supported
[    3.641922] rk_gmac-dwmac fe2a0000.ethernet: TSO supported
[    3.642446] rk_gmac-dwmac fe2a0000.ethernet: Enable RX Mitigation via HW Watchdog Tim                                                                                                er
[    3.643183] rk_gmac-dwmac fe2a0000.ethernet: Enabled RFS Flow TC (entries=10)
[    3.643839] rk_gmac-dwmac fe2a0000.ethernet: TSO feature enabled
[    3.644505] rk_gmac-dwmac fe2a0000.ethernet: Using 32/32 bits DMA host/device width
[    3.649909] mdio_bus stmmac-0: MDIO device at address 1 is missing.
[    3.684890] hid-generic 0003:1A2C:2124.0001: input,hidraw0: USB HID v1.10 Keyboard [S                                                                                                EM USB Keyboard] on usb-fd800000.usb-1.1/input0
[    3.689312] input: SEM USB Keyboard Consumer Control as /devices/platform/fd800000.us                                                                                                b/usb1/1-1/1-1.1/1-1.1:1.1/0003:1A2C:2124.0002/input/input1
[    3.696278] Console: switching to colour frame buffer device 240x67
[    3.744905] input: SEM USB Keyboard System Control as /devices/platform/fd800000.usb/                                                                                                usb1/1-1/1-1.1/1-1.1:1.1/0003:1A2C:2124.0002/input/input2
[    3.746492] hid-generic 0003:1A2C:2124.0002: input,hidraw1: USB HID v1.10 Device [SEM                                                                                                 USB Keyboard] on usb-fd800000.usb-1.1/input1
[    3.758439] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer dev                                                                                                ice
[    3.937919] EXT4-fs (mmcblk0p1): mounted filesystem 463087c8-1d8f-4075-b7b1-4b86c641e                                                                                                99e ro with ordered data mode. Quota mode: none.
[    4.372368] systemd[1]: Inserted module 'autofs4'
[    4.421712] systemd[1]: systemd 252.33-1~deb12u1 running in system mode (+PAM +AUDIT                                                                                                 +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFU                                                                                                TILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +Q                                                                                                RENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT defa                                                                                                ult-hierarchy=unified)
[    4.425360] systemd[1]: Detected architecture arm64.
[    4.432273] systemd[1]: Hostname set to <DietPi>.
[    4.595088] dw-apb-uart fe660000.serial: forbid DMA for kernel console
[    4.660137] rockchip-dw-pcie 3c0800000.pcie: Phy link never came up
[    4.661566] rockchip-dw-pcie 3c0800000.pcie: PCI host bridge to bus 0002:00
[    4.662344] pci_bus 0002:00: root bus resource [bus 00-0f]
[    4.662935] pci_bus 0002:00: root bus resource [io  0x0000-0xfffff] (bus address [0xf                                                                                                0100000-0xf01fffff])
[    4.663923] pci_bus 0002:00: root bus resource [mem 0xf0200000-0xf1ffffff]
[    4.664891] pci_bus 0002:00: root bus resource [mem 0x380000000-0x3bfffffff] (bus add                                                                                                ress [0x40000000-0x7fffffff])
[    4.666064] pci 0002:00:00.0: [1d87:3566] type 01 class 0x060400 PCIe Root Port
[    4.666853] pci 0002:00:00.0: BAR 0 [mem 0x00000000-0x3fffffff]
[    4.667485] pci 0002:00:00.0: BAR 1 [mem 0x00000000-0x3fffffff]
[    4.668194] pci 0002:00:00.0: ROM [mem 0x00000000-0x0000ffff pref]
[    4.668854] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    4.669419] pci 0002:00:00.0:   bridge window [io  0x0000-0x0fff]
[    4.670059] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff]
[    4.670775] pci 0002:00:00.0:   bridge window [mem 0x00000000-0x000fffff 64bit pref]
[    4.671672] pci 0002:00:00.0: supports D1 D2
[    4.672176] pci 0002:00:00.0: PME# supported from D0 D1 D3hot
[    4.691063] pci_bus 0002:01: busn_res: can not insert [bus 01-ff] under [bus 00-0f] (                                                                                                conflicts with (null) [bus 00-0f])
[    4.698354] pci 0002:00:00.0: BAR 0 [mem 0x380000000-0x3bfffffff]: assigned
[    4.704648] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: can't assign; no space
[    4.710842] pci 0002:00:00.0: BAR 1 [mem size 0x40000000]: failed to assign
[    4.717251] pci 0002:00:00.0: ROM [mem 0xf0200000-0xf020ffff pref]: assigned
[    4.723659] pci 0002:00:00.0: PCI bridge to [bus 01-ff]
[    4.729947] pci_bus 0002:00: Some PCI device resources are unassigned, try booting wi                                                                                                th pci=realloc
[    4.736533] pci_bus 0002:00: resource 4 [io  0x0000-0xfffff]
[    4.742695] pci_bus 0002:00: resource 5 [mem 0xf0200000-0xf1ffffff]
[    4.749120] pci_bus 0002:00: resource 6 [mem 0x380000000-0x3bfffffff]
[    4.758335] pcieport 0002:00:00.0: PME: Signaling with IRQ 75
[    4.765429] pcieport 0002:00:00.0: AER: enabled with IRQ 75
[    5.167441] systemd[1]: Queued start job for default target graphical.target.
[    5.206926] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[    5.222713] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[    5.238367] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/se                                                                                                rial-getty.
[    5.253719] systemd[1]: Created slice user.slice - User and Session Slice.
[    5.267259] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password                                                                                                 Requests to Console Directory Watch.
[    5.281317] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Req                                                                                                uests to Wall Directory Watch.
[    5.295935] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrar                                                                                                y Executable File Formats File System Automount Point.
[    5.309719] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
[    5.322719] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[    5.335755] systemd[1]: Reached target integritysetup.target - Local Integrity Protec                                                                                                ted Volumes.
[    5.349056] systemd[1]: Reached target paths.target - Path Units.
[    5.361976] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[    5.375090] systemd[1]: Reached target slices.target - Slice Units.
[    5.387931] systemd[1]: Reached target swap.target - Swaps.
[    5.400698] systemd[1]: Reached target veritysetup.target - Local Verity Protected Vo                                                                                                lumes.
[    5.419756] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communicati                                                                                                on Socket.
[    5.433197] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility N                                                                                                amed Pipe.
[    5.447689] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit So                                                                                                cket.
[    5.461751] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket                                                                                                 (/dev/log).
[    5.476182] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[    5.495899] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Sock                                                                                                et.
[    5.510225] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket                                                                                                .
[    5.560599] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    5.583971] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System..                                                                                                .
[    5.605307] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[    5.626442] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System.                                                                                                ..
[    5.653997] systemd[1]: Starting fake-hwclock.service - Restore / save the current cl                                                                                                ock...
[    5.681572] systemd[1]: Starting keyboard-setup.service - Set the console keyboard la                                                                                                yout...
[    5.707367] systemd[1]: Starting kmod-static-nodes.service - Create List of Static De                                                                                                vice Nodes...
[    5.731222] systemd[1]: Starting [email protected] - Load Kernel Module confi                                                                                                gfs...
[    5.754957] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod.                                                                                                ..
[    5.778391] systemd[1]: Starting [email protected] - Load Kernel Module drm...
[    5.788565] device-mapper: uevent: version 1.0.3
[    5.792437] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lis                                                                                                ts.linux.dev
[    5.841040] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi                                                                                                _pstore...
[    5.864506] systemd[1]: Starting [email protected] - Load Kernel Module fuse...
[    5.887535] systemd[1]: Starting [email protected] - Load Kernel Module loop...
[    5.903545] systemd[1]: systemd-fsck-root.service - File System Check on Root Device                                                                                                 was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsc                                                                                                k-root).
[    5.937095] systemd[1]: Starting systemd-journald.service - Journal Service...
[    5.962669] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules..                                                                                                .
[    5.986391] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel                                                                                                 File Systems...
[    6.009984] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Dev                                                                                                ices...
[    6.039720] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    6.057361] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[    6.074325] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[    6.090914] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[    6.104221] EXT4-fs (mmcblk0p1): re-mounted 463087c8-1d8f-4075-b7b1-4b86c641e99e r/w.                                                                                                 Quota mode: none.
[    6.125286] systemd[1]: Finished fake-hwclock.service - Restore / save the current cl                                                                                                ock.
[    6.143964] systemd[1]: Finished keyboard-setup.service - Set the console keyboard la                                                                                                yout.
[    6.161996] systemd[1]: Finished kmod-static-nodes.service - Create List of Static De                                                                                                vice Nodes.
[    6.179770] systemd[1]: [email protected]: Deactivated successfully.
[    6.188786] systemd[1]: Finished [email protected] - Load Kernel Module confi                                                                                                gfs.
[    6.206969] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[    6.215843] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[    6.233798] systemd[1]: [email protected]: Deactivated successfully.
[    6.242638] systemd[1]: Finished [email protected] - Load Kernel Module drm.
[    6.260575] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[    6.269383] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi                                                                                                _pstore.
[    6.287252] systemd[1]: [email protected]: Deactivated successfully.
[    6.295968] systemd[1]: Finished [email protected] - Load Kernel Module fuse.
[    6.313878] systemd[1]: [email protected]: Deactivated successfully.
[    6.323089] systemd[1]: Finished [email protected] - Load Kernel Module loop.
[    6.340184] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[    6.356367] systemd[1]: Started systemd-journald.service - Journal Service.
[    6.961568] systemd-journald[230]: Received client request to flush runtime journal.
[    8.548789] mc: Linux media interface: v0.10
[    8.704218] panfrost fde60000.gpu: clock rate = 594000000
[    8.704255] panfrost fde60000.gpu: bus_clock rate = 500000000
[    8.714363] panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
[    8.714383] panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,0000                                                                                                0400
[    8.714391] panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x                                                                                                00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
[    8.714399] panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
[    8.725764] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-                                                                                                pwrkey.4.auto/input/input3
[    8.818655] videodev: Linux video capture interface: v2.00
[    8.893067] [drm] Initialized panfrost 1.2.0 for fde60000.gpu on minor 1
[    8.899541] random: crng init done
[    8.903087] rk2-crypto fe380000.crypto: will run requests pump with realtime priority
[    8.903155] rk2-crypto fe380000.crypto: Registers crypto algos
[    8.903163] rk2-crypto fe380000.crypto: Register ecb(aes) as ecb-aes-rk2
[    8.903220] rk2-crypto fe380000.crypto: Register cbc(aes) as cbc-aes-rk2
[    8.903237] rk2-crypto fe380000.crypto: Register xts(aes) as xts-aes-rk2
[    8.903250] rk2-crypto fe380000.crypto: Register md5 as rk2-md5 3
[    8.903265] rk2-crypto fe380000.crypto: Register sha1 as rk2-sha1 4
[    8.903280] rk2-crypto fe380000.crypto: Register sha256 as rk2-sha256 5
[    8.903294] rk2-crypto fe380000.crypto: Register sha384 as rk2-sha384 6
[    8.903308] rk2-crypto fe380000.crypto: Register sha512 as rk2-sha512 7
[    8.903321] rk2-crypto fe380000.crypto: Register sm3 as rk2-sm3 8
[    8.962422] rockchip-rga fdeb0000.rga: HW Version: 0x03.02
[    8.988587] rockchip-rga fdeb0000.rga: Registered rockchip-rga as /dev/video0
[    9.018098] rockchip_vdec2: module is from the staging directory, the quality is unkn                                                                                                own, you have been warned.
[    9.047336] Registered IR keymap rc-empty
[    9.047472] rc rc0: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0
[    9.049502] hantro-vpu fdea0000.video-codec: Adding to iommu group 1
[    9.054224] rc rc0: lirc_dev: driver gpio_ir_recv registered at minor = 0, raw IR rec                                                                                                eiver, no transmitter
[    9.073187] input: gpio_ir_recv as /devices/platform/ir-receiver/rc/rc0/input4
[    9.073206] hantro-vpu fdea0000.video-codec: registered rockchip,rk3328-vpu-dec as /d                                                                                                ev/video2
[    9.135958] hantro-vpu fdee0000.video-codec: Adding to iommu group 2
[    9.175085] hantro-vpu fdee0000.video-codec: registered rockchip,rk3568-vepu-enc as /                                                                                                dev/video3
[    9.663295] rk_gmac-dwmac fe2a0000.ethernet eth1: Register MEM_TYPE_PAGE_POOL RxQ-0
[    9.664461] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY                                                                                                 (error: -19)
[    9.669679] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[    9.756166] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:01] driver [RTL8211F                                                                                                 Gigabit Ethernet] (irq=POLL)
[    9.766233] dwmac4: Master AXI performs any burst length
[    9.766271] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[    9.766299] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp s                                                                                                upported
[    9.766662] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[    9.767011] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
[   12.845565] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 100Mbps/Full - flow co                                                                                                ntrol off
[   19.433586] platform fcc00000.usb: deferred probe pending: platform: supplier fe82000                                                                                                0.phy not ready
[   19.433632] platform fd000000.usb: deferred probe pending: platform: supplier fe83000                                                                                                0.phy not ready
[   19.433658] platform 3c0000000.pcie: deferred probe pending: platform: supplier fe840                                                                                                000.phy not ready
[   33.768833] vdd_npu: disabling

@MidG971
Copy link
Author

MidG971 commented Jan 13, 2025

I forgot, wifi is still broken.

@MichaIng
Copy link
Owner

Thanks for testing. Very weird with the WiFi, as Armbian patches are all back in. The 6.12.7 kernel you used before I uploaded the one with removed patches, had WiFi, right? 🤔
Thing is, on Orange Pi 3B the same happend. I however checked the logs and all patches were indeed applied. So no idea what changed between the 6.12.7 build and 6.12.9 now. Coincidence that it broke at Armbian or upstream?

No related patch changes at Armbian: https://github.com/armbian/build/commits/main/patch/kernel/archive/rockchip64-6.12
At upstream device tree has not changed either.

... ah, I see now in case of ROCK 3B it is an Intel WiFi chip with iwlwifi driver, hence all mainlined anyway. No idea why the module is suddenly not loading anymore (automatically). What happens if you try manualy?

modprobe iwlwifi
ip l

@MichaIng
Copy link
Owner

MichaIng commented Jan 14, 2025

Next build ready to test, this time with the clock rate explicitly defined like in vendor kernel: MichaIng/build@59f048
If this does not work either, I'll switch the PHY node to phy@0 and move the resets back into the MAC, like in vendor kernel.

To test, as always:

cd /tmp
wget https://dietpi.com/downloads/binaries/testing/linux-{dtb,image}-current-rockchip64.deb
dpkg -i linux-{dtb,image}-current-rockchip64.deb
reboot

@Kwiboo
Copy link

Kwiboo commented Jan 14, 2025

Use mainline U-Boot on any board with rtl8211f Ethernet PHYs for mainline Linux, also make sure you use a build for your board or you will have Ethernet issue in Linux, i.e use an ROCK 3A image for 3B and you will only have one Ethernet port working, or use vendor U-Boot on Orange Pi 3B and you may have Ethernet PHY issue in Linux.

Please see https://patchwork.kernel.org/project/linux-rockchip/patch/[email protected]/#26173827 for some details on the rtl8211f phy issue.

Currently I know of these workarounds:
a) reset PHY before OS, i.e. use mainline U-Boot
b) use a ethernet-phy-id001c.c916 compatible for the onboard RTL8211F
PHY instead of the generic ethernet-phy-ieee802.3-c22 compatible
c) use deprecated snps,reset- props
d) use reset props on mdiobus level

@Kwiboo
Copy link

Kwiboo commented Jan 14, 2025

So no idea what changed between the 6.12.7 build and 6.12.9 now. Coincidence that it broke at Armbian or upstream?

v6.1.123, v6.6.69 and v6.12.8 picked up a patch that broke some PCIe, SATA and USB on Rockchip RK356x, see https://lore.kernel.org/all/[email protected]/

EDIT: the patch was backported to v6.12.8 not v6.12.9

@MichaIng
Copy link
Owner

MichaIng commented Jan 14, 2025

Hey @Kwiboo thanks for chiming in.

a) Mainline U-Boot is used already, so that alone does not seem to help. Though it is a U-Boot for ROCK 3A, so probably it does not reset the 2nd adapter. In that case, it seems we need to properly add ROCK 3B support to the Armbian build system. However, we have the very same issue on an Orange Pi 3B with a very different Ethernet adapter, and a matching U-Boot build. It broke just after switching from a patched in vendor device tree to new mainline device tree, where RX/TX delays and resets have been moved to the PHY/mdio node.

b) Sounds like another good attempt, which however would not work on the Orange Pi 3B.

c) Switching to "deprecated" snps,reset is what I wanted to test as well, if other things fail.

d) This is how mainline Linux does it already: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dts#n525
But the deassert delay is shorter. Hence aligning these reset delays with the vendor device tree, still using this "modern" method, is what I wanted to try next.

v6.6.69 and v6.12.9 picked up a patch that broke some PCIe, SATA and USB on Rockchip RK356x

Maybe this broke onboard WiFi as well then.

EDIT: I read through the comments of the patch request, and it is indeed very educating:

Not being able to find the PHY has nothing to do with RGMII delays.
If the RGMII delays are wrong, packets will not be
received/transmitted, or they will be corrupt and thrown away with
checksum errors. But the PHY will be found and you can attach to it.

So we know that the RX/TX and most likely rgmii-id are not the problem. Looks like only the resets are. On the Orange Pi 3B, mainline U-Boot 2024.10 is used, with the specific device tree, which contains the code to reset the PHY on the v2.1 revision: https://github.com/u-boot/u-boot/blob/master/board/xunlong/orangepi-3b-rk3566/orangepi-3b-rk3566.c
But it still has the issue. So it seems like, the assumption that U-Boot alone must to the reset and then all is fine, seems to be wrong for this board at least, maybe also for the ROCK 3B. Apart of this, it would be good to not rely on a particular U-Boot, even if it works.

@MidG971
Do you have time and mood to still test the current build, even that it most likely won't fix the issue, or should I apply the raised reset delays already?

@Kwiboo
Just in case you understand it better: I missed the clock_in_out input/output thing. In Orange Pi 3B vendor device tree, it is "input" with "rgmii", RX/TX delays and reset defined in the MAC node the legacy way. In the ROCK 3B vendor kernel, it is "output" with those. I understood from the comments in the patchwork, that vendor kernel devs often do not understand themselves, how things work, resulting in such weird/contradicting stuff, and I know it from other parts of their images, where I have know knowledge. But did I get it right, that, when assigning assigned-clock-rates in the GMAC, clock_in_out needs to be output? At least the Orange Pi 3B device tree then would be prove, that the clock is not the issue, and really only the resets are to have a look at.

@MidG971
Copy link
Author

MidG971 commented Jan 14, 2025

Hey @Kwiboo thanks for chiming in.

a) Mainline U-Boot is used already, so that alone does not seem to help. Though it is a U-Boot for ROCK 3A, so probably it does not reset the 2nd adapter. In that case, it seems we need to properly add ROCK 3B support to the Armbian build system. However, we have the very same issue on an Orange Pi 3B with a very different Ethernet adapter, and a matching U-Boot build. It broke just after switching from a patched in vendor device tree to new mainline device tree, where RX/TX delays and resets have been moved to the PHY/mdio node.

b) Sounds like another good attempt, which however would not work on the Orange Pi 3B.

c) Switching to "deprecated" snps,reset is what I wanted to test as well, if other things fail.

d) This is how mainline Linux does it already: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/boot/dts/rockchip/rk3568-rock-3b.dts#n525
But the deassert delay is shorter. Hence aligning these reset delays with the vendor device tree, still using this "modern" method, is what I wanted to try next.

v6.6.69 and v6.12.9 picked up a patch that broke some PCIe, SATA and USB on Rockchip RK356x

Maybe this broke onboard WiFi as well then.

EDIT: I read through the comments of the patch request, and it is indeed very educating:

Not being able to find the PHY has nothing to do with RGMII delays.
If the RGMII delays are wrong, packets will not be
received/transmitted, or they will be corrupt and thrown away with
checksum errors. But the PHY will be found and you can attach to it.

So we know that the RX/TX and most likely rgmii-id are not the problem. Looks like only the resets are. On the Orange Pi 3B, mainline U-Boot 2024.10 is used, with the specific device tree, which contains the code to reset the PHY on the v2.1 revision: https://github.com/u-boot/u-boot/blob/master/board/xunlong/orangepi-3b-rk3566/orangepi-3b-rk3566.c
But it still has the issue. So it seems like, the assumption that U-Boot alone must to the reset and then all is fine, seems to be wrong for this board at least, maybe also for the ROCK 3B. Apart of this, it would be good to not rely on a particular U-Boot, even if it works.

@MidG971
Do you have time and mood to still test the current build, even that it most likely won't fix the issue, or should I apply the raised reset delays already?

@Kwiboo
Just in case you understand it better: I missed the clock_in_out input/output thing. In Orange Pi 3B vendor device tree, it is "input" with "rgmii", RX/TX delays and reset defined in the MAC node the legacy way. In the ROCK 3B vendor kernel, it is "output" with those. I understood from the comments in the patchwork, that vendor kernel devs often do not understand themselves, how things work, resulting in such weird/contradicting stuff, and I know it from other parts of their images, where I have know knowledge. But did I get it right, that, when assigning assigned-clock-rates in the GMAC, clock_in_out needs to be output? At least the Orange Pi 3B device tree then would be prove, that the clock is not the issue, and really only the resets are to have a look at.

Always in the mood to help , do not hesitate 😎

@Kwiboo
Copy link

Kwiboo commented Jan 14, 2025

Though it is a U-Boot for ROCK 3A, so probably it does not reset the 2nd adapter.

Correct, because the device tree used by U-Boot in such case does not have information about the 2nd adapter, the 2nd phy is never reset and Linux will not be able to find it, unless one of the mentioned workarounds is applied.

However, we have the very same issue on an Orange Pi 3B with a very different Ethernet adapter, and a matching U-Boot build.

This issue is probably because part of the vendor U-Boot still exists in SPI flash or eMMC and is being used to load mainline U-Boot proper, when the vendor U-Boot SPL part is used to load mainline U-Boot proper, it will load the default FIT configuration that does not have any Ethernet PHY nodes enabled, when mainline U-Boot SPL is used the full revision detection code should work and fdtfile and correct Model: line will be printed, can be observed with debug UART, Model: should end with a version, i.e. v1.1 or v2.1, when no version is printed, it may cause issues for Linux.

b) Sounds like another good attempt, which however would not work on the Orange Pi 3B.

As mentioned above, as long as mainline U-Boot SPL was used to load mainline U-Boot proper it should work. Output from serial when booting affected boards would be helpful to see if there is any other issue on boards in the wild.

c) Switching to "deprecated" snps,reset is what I wanted to test as well, if other things fail.

Using the deprecated snps,reset or just changing the phy compatible from ethernet-phy-ieee802.3-c22 to ethernet-phy-id001c.c916 should work on a board using a RTL8211F Ethernet PHY.

But the deassert delay is shorter. Hence aligning these reset delays with the vendor device tree, still using this "modern" method, is what I wanted to try next.

I mainlined both the Orange Pi 3B and ROCK 3B to Linux and U-Boot. Have both opi3b (v1.1.1 and v2.1) and rock-3b (commercial and industrial) boards that I tested booting into Linux on. Ethernet was working when I tested everything during mainlining process using pure mainline U-Boot and mainline linux-next at the time.
The datasheet for the RTL8211F Ethernet PHY mention minimum held low for 10ms and wait 30-76 (depending on datasheet revision) ms until reading registers after reset, so using 15-20 ms with 50-80+ ms should be enough to reset the PHY.

Maybe this broke onboard WiFi as well then.

Most likely, error messages should be seen in dmesg and cat /sys/kernel/debug/devices_deferred on affected boards.

But it still has the issue. So it seems like, the assumption that U-Boot alone must to the reset and then all is fine, seems to be wrong for this board at least, maybe also for the ROCK 3B. Apart of this, it would be good to not rely on a particular U-Boot, even if it works.

For the ROCK 3B, changing the phy compatible from ethernet-phy-ieee802.3-c22 to ethernet-phy-id001c.c916 should probably work and be okay for mainline as we know the boards have the RTL8211F PHY.

Just in case you understand it better: I missed the clock_in_out input/output thing. In Orange Pi 3B vendor device tree, it is "input" with "rgmii", RX/TX delays and reset defined in the MAC node the legacy way. In the ROCK 3B vendor kernel, it is "output" with those. I understood from the comments in the patchwork, that vendor kernel devs often do not understand themselves, how things work, resulting in such weird/contradicting stuff, and I know it from other parts of their images, where I have know knowledge. But did I get it right, that, when assigning assigned-clock-rates in the GMAC, clock_in_out needs to be output? At least the Orange Pi 3B device tree then would be prove, that the clock is not the issue, and really only the resets are to have a look at.

To correctly describe the hardware the clock_in_out should probably be changed, I did not pay too much attention when creating the mainlined device trees. In practice it does not have any impact, the clock rate is default and input/output does not affect too much in gmac driver. I run basic iperf3 test using the mainlined DT on each ethernet port and did not see any issue on my board revisions.

@MidG971
Copy link
Author

MidG971 commented Jan 14, 2025

Thanks for testing. Very weird with the WiFi, as Armbian patches are all back in. The 6.12.7 kernel you used before I uploaded the one with removed patches, had WiFi, right? 🤔 Thing is, on Orange Pi 3B the same happend. I however checked the logs and all patches were indeed applied. So no idea what changed between the 6.12.7 build and 6.12.9 now. Coincidence that it broke at Armbian or upstream?

No related patch changes at Armbian: https://github.com/armbian/build/commits/main/patch/kernel/archive/rockchip64-6.12 At upstream device tree has not changed either.

... ah, I see now in case of ROCK 3B it is an Intel WiFi chip with iwlwifi driver, hence all mainlined anyway. No idea why the module is suddenly not loading anymore (automatically). What happens if you try manualy?

modprobe iwlwifi
ip l

Still the same, wifi broken

@MidG971
Copy link
Author

MidG971 commented Jan 14, 2025

here's some info I found, it might be useful

@MichaIng
Copy link
Owner

@Kwiboo

This issue is probably because part of the vendor U-Boot still exists in SPI flash or eMMC and is being used to load mainline U-Boot proper, when the vendor U-Boot SPL part is used to load mainline U-Boot proper

Our images are full drive images, which includes the bootloader bits. And it is booting from eMMC, hence should not use the SPI bootloader. But I asked the user to flash the SPI bootloader, just to be sure. Downside is, that I cannot test the resets from kernel anymore then, which I want to have in place as well, to not depend booting from MMC or mainline SPI bootloader.

Using the deprecated snps,reset

Does it need to be the deprecated method in the GMAC? Does it work differently when using the same reset delays in the PHY/mdio node?

The datasheet for the RTL8211F Ethernet PHY mention minimum held low for 10ms and wait 30-76 (depending on datasheet revision) ms until reading registers after reset, so using 15-20 ms with 50-80+ ms should be enough to reset the PHY.

In mainline Linux, the dessert delay is 50ms. Maybe too short in at least some individual cases?
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v1.1.dts?h=linux-6.12.y

Most likely, error messages should be seen in dmesg and cat /sys/kernel/debug/devices_deferred on affected boards.

It is above, but I do not even see an attempt for the driver to be loader (iwlwifi): #7327 (comment)

@MidG971
Can you filter it by errors:

dmesg -l 0,1,2,3

and modprobe iwlwifi does not return any error, it is shown in lsmod then, but ip l does not show the adapter at all? It is weird, because all that changed was mainline Linux 6.12.7 to 6.12.9.

For the ROCK 3B, changing the phy compatible from ethernet-phy-ieee802.3-c22 to ethernet-phy-id001c.c916 should probably work and be okay for mainline as we know the boards have the RTL8211F PHY.

Oh you are right

eth1: PHY [stmmac-0:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)

I was not aware of that, as a different WiFi driver is used. Then it makes even more sense that this two boards suffer from the same issue. And indeed switching to ethernet-phy-id001c.c916 is then a better next attempt. Else raising "modern" reset delays, else reverting to legacy snps method.

here's some info I found, it might be useful

Interesting indeed. I would usually trust the values found in mainline or even vendor kernels more than test results from a particular board (which I do not even own in this case), but at least we know now how they are/can be derived 🙂.

@MichaIng
Copy link
Owner

Build with the compatible PHY adjusted to ethernet-phy-id001c.c916 is running: https://github.com/MichaIng/DietPi/actions/runs/12779430484

Once done, it can be found again in the testing dir.

@MidG971
Copy link
Author

MidG971 commented Jan 15, 2025

@MidG971 Can you filter it by errors:

dmesg -l 0,1,2,3

and modprobe iwlwifi does not return any error, it is shown in lsmod then, but ip l does not show the adapter at all? It is weird, because all that changed was mainline Linux 6.12.7 to 6.12.9.

That's before your latest build :

root@DietPi:~# dmesg -l 0,1,2,3
[    1.007176] rockchip-naneng-combphy fe830000.phy: error -ENOENT: failed to get phy reset
[    1.007239] rockchip-naneng-combphy fe830000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    1.007762] rockchip-naneng-combphy fe840000.phy: error -ENOENT: failed to get phy reset
[    1.007824] rockchip-naneng-combphy fe840000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    1.008627] rockchip-naneng-combphy fe820000.phy: error -ENOENT: failed to get phy reset
[    1.008678] rockchip-naneng-combphy fe820000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    2.164292] rtc-hym8563 5-0051: hctosys: unable to read the hardware clock
[    3.922403] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
[    3.923073] rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
[    3.923731] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
[    3.923761] rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
[    3.945745] mdio_bus stmmac-0: MDIO device at address 1 is missing.
[    9.512191] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[   50.534341] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)


root@DietPi:~# modprobe iwlwifi
root@DietPi:~# lsmod
Module                  Size  Used by
iwlwifi               290816  0
cfg80211              815104  1 iwlwifi
rfkill                 24576  2 cfg80211
snd_soc_hdmi_codec     20480  1
snd_soc_simple_card    20480  0
crct10dif_ce           12288  1
display_connector      16384  0
snd_soc_simple_card_utils    24576  1 snd_soc_simple_card
gpio_ir_recv           12288  0
rc_core                45056  2 gpio_ir_recv
snd_soc_rk817          40960  1
snd_soc_rockchip_i2s_tdm    20480  4
snd_soc_core          204800  5 snd_soc_rockchip_i2s_tdm,snd_soc_hdmi_codec,snd_soc_rk817,snd_soc_simple_card_utils,snd_soc_simple_card
rk_crypto2             36864  0
snd_compress           24576  1 snd_soc_core
rockchip_vdec2         28672  0
sm3_generic            12288  1 rk_crypto2
rockchip_rng           12288  0
snd_pcm_dmaengine      12288  1 snd_soc_core
sm3                    20480  1 sm3_generic
hantro_vpu            249856  0
snd_pcm               106496  5 snd_soc_hdmi_codec,snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_pcm_dmaengine
v4l2_vp9               20480  1 hantro_vpu
v4l2_jpeg              12288  1 hantro_vpu
rng_core               16384  1 rockchip_rng
v4l2_h264              16384  2 hantro_vpu,rockchip_vdec2
snd_timer              36864  1 snd_pcm
snd                    77824  5 snd_soc_hdmi_codec,snd_timer,snd_compress,snd_soc_core,snd_pcm
rockchip_rga           20480  0
rk817_charger          20480  0
videobuf2_dma_contig    20480  2 hantro_vpu,rockchip_vdec2
dw_hdmi_i2s_audio      12288  0
videobuf2_dma_sg       16384  1 rockchip_rga
dw_hdmi_cec            12288  0
soundcore              12288  1 snd
v4l2_mem2mem           24576  3 hantro_vpu,rockchip_rga,rockchip_vdec2
videobuf2_memops       16384  2 videobuf2_dma_contig,videobuf2_dma_sg
videobuf2_v4l2         20480  4 hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
panfrost               73728  5
videodev              237568  5 videobuf2_v4l2,hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
gpu_sched              36864  1 panfrost
rk805_pwrkey           12288  0
videobuf2_common       53248  8 videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,videobuf2_dma_sg,rockchip_vdec2,v4l2_mem2mem,videobuf2_memops
mc                     53248  6 videodev,videobuf2_v4l2,hantro_vpu,videobuf2_common,rockchip_vdec2,v4l2_mem2mem
drm_shmem_helper       20480  1 panfrost
cpufreq_dt             16384  0
binfmt_misc            20480  1
dm_mod                126976  0
ip_tables              28672  0
x_tables               36864  1 ip_tables
autofs4                45056  2
realtek                36864  1
phy_rockchip_snps_pcie3    16384  1
dwmac_rk               28672  0
rockchipdrm           176128  7
spi_rockchip_sfc       16384  0
drm_dma_helper         16384  1 rockchipdrm
stmmac_platform        20480  1 dwmac_rk
dw_hdmi_qp             20480  1 rockchipdrm
stmmac                241664  3 stmmac_platform,dwmac_rk
dw_hdmi                45056  2 dw_hdmi_i2s_audio,rockchipdrm
pcs_xpcs               24576  1 stmmac
cec                    45056  2 dw_hdmi_cec,dw_hdmi
dw_mipi_dsi            16384  1 rockchipdrm
rtc_rk808              16384  0
analogix_dp            40960  1 rockchipdrm
drm_display_helper    131072  4 rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm_kms_helper        122880  9 dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm                   442368  21 gpu_sched,drm_kms_helper,dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,panfrost,analogix_dp,dw_hdmi_qp
drm_panel_orientation_quirks    28672  1 drm
root@DietPi:~# ip l
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
    link/ether e2:e1:76:03:12:f8 brd ff:ff:ff:ff:ff:ff
3: eth1: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
    link/ether e2:e1:76:03:12:f9 brd ff:ff:ff:ff:ff:ff
root@DietPi:~#


@MichaIng
Copy link
Owner

Update: On the Orange Pi 3B, indeed the SPI bootloader was used, even that the eMMC contained one. Erasing the SPI flash fixed Ethernet there. However, if the changed compatible PHY fixes it on ROCK 3B even without proper mainline U-Boot, I'll keep that change as well.

@MidG971
Now that the WiFi driver was loaded, does dmesg -l 0,1,2,3 show any new errors?

@MidG971
Copy link
Author

MidG971 commented Jan 15, 2025

Update: On the Orange Pi 3B, indeed the SPI bootloader was used, even that the eMMC contained one. Erasing the SPI flash fixed Ethernet there. However, if the changed compatible PHY fixes it on ROCK 3B even without proper mainline U-Boot, I'll keep that change as well.

@MidG971 Now that the WiFi driver was loaded, does dmesg -l 0,1,2,3 show any new errors?

root@DietPi:~# dmesg -l 0,1,2,3
[    1.007176] rockchip-naneng-combphy fe830000.phy: error -ENOENT: failed to get phy reset
[    1.007239] rockchip-naneng-combphy fe830000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    1.007762] rockchip-naneng-combphy fe840000.phy: error -ENOENT: failed to get phy reset
[    1.007824] rockchip-naneng-combphy fe840000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    1.008627] rockchip-naneng-combphy fe820000.phy: error -ENOENT: failed to get phy reset
[    1.008678] rockchip-naneng-combphy fe820000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    2.164292] rtc-hym8563 5-0051: hctosys: unable to read the hardware clock
[    3.922403] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
[    3.923073] rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
[    3.923731] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
[    3.923761] rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
[    3.945745] mdio_bus stmmac-0: MDIO device at address 1 is missing.
[    9.512191] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[   50.534341] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)

in a minute i'll test the build + plug my serial cable

@MichaIng
Copy link
Owner

Weird. As if it was the wrong driver. But it was definitely used before: #7327 (comment)

Are there other messages from this driver?

dmesg | grep iwlwifi

in a minute i'll test the build + plug my serial cable

Wait before https://github.com/MichaIng/DietPi/actions/runs/12779430484 is done, to test with the changed compatible PHY directly.

@MichaIng
Copy link
Owner

Okay, build is done now.

@MidG971
Copy link
Author

MidG971 commented Jan 15, 2025

Here we go , for now I cant make my serial cable work, I'll keep you posted about that.

So :

root@DietPi:~# dmesg -l 0,1,2,3
[    1.002655] rockchip-naneng-combphy fe830000.phy: error -ENOENT: failed to get phy reset
[    1.002716] rockchip-naneng-combphy fe830000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    1.003177] rockchip-naneng-combphy fe840000.phy: error -ENOENT: failed to get phy reset
[    1.003218] rockchip-naneng-combphy fe840000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    1.003971] rockchip-naneng-combphy fe820000.phy: error -ENOENT: failed to get phy reset
[    1.004103] rockchip-naneng-combphy fe820000.phy: probe with driver rockchip-naneng-combphy failed with error -2
[    3.783479] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: tx_delay.
[    3.784190] rk_gmac-dwmac fe2a0000.ethernet: set tx_delay to 0x30
[    3.784772] rk_gmac-dwmac fe2a0000.ethernet: Can not read property: rx_delay.
[    3.785424] rk_gmac-dwmac fe2a0000.ethernet: set rx_delay to 0x10
[    3.819973] mdio_bus stmmac-0: MDIO device at address 1 is missing.
[    9.390446] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)
[   71.337453] rk_gmac-dwmac fe2a0000.ethernet eth1: __stmmac_open: Cannot attach to PHY (error: -19)


root@DietPi:~# lsmod
Module                  Size  Used by
rfkill                 24576  1
snd_soc_hdmi_codec     20480  1
snd_soc_simple_card    20480  0
snd_soc_rk817          40960  1
snd_soc_simple_card_utils    24576  1 snd_soc_simple_card
snd_soc_rockchip_i2s_tdm    20480  4
snd_soc_core          204800  5 snd_soc_rockchip_i2s_tdm,snd_soc_hdmi_codec,snd_soc_rk817,snd_soc_simple_card_utils,snd_soc_simple_card
snd_compress           24576  1 snd_soc_core
crct10dif_ce           12288  1
display_connector      16384  0
snd_pcm_dmaengine      12288  1 snd_soc_core
snd_pcm               106496  5 snd_soc_hdmi_codec,snd_compress,snd_soc_simple_card_utils,snd_soc_core,snd_pcm_dmaengine
gpio_ir_recv           12288  0
rc_core                45056  2 gpio_ir_recv
rk805_pwrkey           12288  0
rk817_charger          20480  0
snd_timer              36864  1 snd_pcm
snd                    77824  5 snd_soc_hdmi_codec,snd_timer,snd_compress,snd_soc_core,snd_pcm
soundcore              12288  1 snd
hantro_vpu            249856  0
rockchip_vdec2         28672  0
rockchip_rng           12288  0
rng_core               16384  1 rockchip_rng
v4l2_vp9               20480  1 hantro_vpu
rockchip_rga           20480  0
v4l2_jpeg              12288  1 hantro_vpu
v4l2_h264              16384  2 hantro_vpu,rockchip_vdec2
rk_crypto2             36864  0
videobuf2_dma_contig    20480  2 hantro_vpu,rockchip_vdec2
v4l2_mem2mem           24576  3 hantro_vpu,rockchip_rga,rockchip_vdec2
videobuf2_dma_sg       16384  1 rockchip_rga
sm3_generic            12288  1 rk_crypto2
videobuf2_memops       16384  2 videobuf2_dma_contig,videobuf2_dma_sg
videobuf2_v4l2         20480  4 hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
sm3                    20480  1 sm3_generic
videodev              237568  5 videobuf2_v4l2,hantro_vpu,rockchip_rga,rockchip_vdec2,v4l2_mem2mem
panfrost               73728  5
videobuf2_common       53248  8 videobuf2_dma_contig,videobuf2_v4l2,hantro_vpu,rockchip_rga,videobuf2_dma_sg,rockchip_vdec2,v4l2_mem2mem,videobuf2_memops
mc                     53248  6 videodev,videobuf2_v4l2,hantro_vpu,videobuf2_common,rockchip_vdec2,v4l2_mem2mem
gpu_sched              36864  1 panfrost
drm_shmem_helper       20480  1 panfrost
dw_hdmi_i2s_audio      12288  0
dw_hdmi_cec            12288  0
cpufreq_dt             16384  0
binfmt_misc            20480  1
dm_mod                126976  0
ip_tables              28672  0
x_tables               36864  1 ip_tables
autofs4                45056  2
phy_rockchip_snps_pcie3    16384  1
rockchipdrm           176128  7
realtek                36864  1
drm_dma_helper         16384  1 rockchipdrm
dw_hdmi_qp             20480  1 rockchipdrm
spi_rockchip_sfc       16384  0
dw_hdmi                45056  2 dw_hdmi_i2s_audio,rockchipdrm
dwmac_rk               28672  0
stmmac_platform        20480  1 dwmac_rk
cec                    45056  2 dw_hdmi_cec,dw_hdmi
rtc_rk808              16384  0
dw_mipi_dsi            16384  1 rockchipdrm
analogix_dp            40960  1 rockchipdrm
stmmac                241664  3 stmmac_platform,dwmac_rk
pcs_xpcs               24576  1 stmmac
drm_display_helper    131072  4 rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm_kms_helper        122880  9 dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,analogix_dp,dw_hdmi_qp
drm                   442368  21 gpu_sched,drm_kms_helper,dw_mipi_dsi,drm_dma_helper,display_connector,drm_shmem_helper,drm_display_helper,rockchipdrm,dw_hdmi,panfrost,analogix_dp,dw_hdmi_qp
drm_panel_orientation_quirks    28672  1 drm

@MichaIng
Copy link
Owner

This is with the kernel build from just now, hence ethernet-phy-id001c.c916 did not help, and WiFi still broken?

For WiFi, I think about hardcoding Linux source to 6.12.8, until this has been fixed.

@MidG971
Copy link
Author

MidG971 commented Jan 15, 2025

This is with the kernel build from just now, hence ethernet-phy-id001c.c916 did not help, and WiFi still broken?

For WiFi, I think about hardcoding Linux source to 6.12.8, until this has been fixed.

Yes WiFi still broken

@Kwiboo
Copy link

Kwiboo commented Jan 15, 2025

Our images are full drive images, which includes the bootloader bits. And it is booting from eMMC, hence should not use the SPI bootloader.

Rockchip BootROM will typically load first stage (TPL + SPL) from SPI/NAND > eMMC > SD > USB (maskrom). Mainline U-Boot SPL will try to load next stage (TF-A, OP-TEE and U-Boot proper) from same boot media as first stage, however vendor U-Boot SPL may try to load next stage from eMMC/SD before falling back to same boot media. U-Boot proper will typically follow the boot_targets order (SD, eMMC, NVMe/SATA, USB, Ethernet) when loading an OS.
So typically if vendor U-Boot SPL exists in SPI flash, it will take priority over anything that exist on eMMC/SD, and if mainline U-Boot SPL exists in SPI flash it will load next stage from SPI flash. Not to be mistaken from what media an OS is booted from.

Does it need to be the deprecated method in the GMAC? Does it work differently when using the same reset delays in the PHY/mdio node?

Please see my summary at https://lore.kernel.org/r/[email protected]/ the driver will handle reseting the phy at different times during the driver probe depending on where the props are defined. However, defining them at phy node will reflect the hardware more closely and DT should describe the hardware not be configuration for software.

In mainline Linux, the dessert delay is 50ms. Maybe too short in at least some individual cases?

As described in the link above the how the Linux phy driver do gpio reset is likely not correct, at least not during the time of writing 2023, so it does not really matter for Linux. And for U-Boot there will still be more than 50ms until registers are read after a reset, so 50ms should be enough for most cases. I should however post a Linux patch to adjust and use 80ms instead of 50ms to be on safe side.

It is above, but I do not even see an attempt for the driver to be loader iwlwifi.

Without fully working PCIe or USB the wifi/bt adapter is probably not being detected.

It is weird, because all that changed was mainline Linux 6.12.7 to 6.12.9.
For WiFi, I think about hardcoding Linux source to 6.12.8, until this has been fixed.

The offending patch was added in v6.1.123+, v6.6.69+ and v6.12.8+ (not in v6.12.9 as I mentioned earlier).

And indeed switching to ethernet-phy-id001c.c916 is then a better next attempt.
the changed compatible PHY fixes it on ROCK 3B even without proper mainline U-Boot

Keep in mind that use of ethernet-phy-id001c.c916 replace the dynamic lookup of the phy id and force use of RTL8211F, so only use that for boards/phys that is guaranteed to use such PHY, or adjust the 001c.c916 to match the correct phy id.
On Radxa ROCK 3B I am pretty sure that RTL8211F will be used as long as there is a supply for that PHY.
However, for the Orange Pi 3B the v1.1 and v2.1 use different PHYs and Orange Pi has a track record for changing BOM so I would recommend using the dynamic lookup and not hard-code the phy id into the compatible.

@MichaIng
Copy link
Owner

I should however post a Linux patch to adjust and use 80ms instead of 50ms to be on safe side.

I will try the same for a next build.

Without fully working PCIe or USB the wifi/bt adapter is probably not being detected.

Jep I thought the same, that it is just related to this issue. Hence for now will downgrade to Linux 6.12.7 until we see a fix.

The offending patch was added in v6.1.123+, v6.6.69+ and v6.12.8+ (not in v6.12.9 as I mentioned earlier).

I guessed so, this the first build with 6.12.8 had WiFi broken, I just thought it was related to the fact that the driver for Orange Pi 3B onboard WiFi is a out-of-tree driver, added by Armbian patches, which I removed (although not the WiFi driver patches, only the kernel family specific kernel patches) to test whether some incompatibility with them caused the Ethernet issue. But the fact that the ROCK 3B was suffering from the same problem, using a driver from mainline kernel, rendered this unlikely.

However, for the Orange Pi 3B the v1.1 and v2.1 use different PHYs and Orange Pi has a track record for changing BOM so I would recommend using the dynamic lookup and not hard-code the phy id into the compatible.

Though the patch applied for the v1.1 device tree only, and for gmac1 + mdio1 only, which have no hardware part on v2.1. So that patch simply had no effect on v2.1, even if that wrong device tree is used. However, since it did not help, I'll remove part anyway, having the diff as small as possible.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
External bug 🐞 For bugs which are not caused by DietPi. Image request 💾 ROCK 3B
Projects
None yet
Development

No branches or pull requests

4 participants