Genio 1200 Evaluation MT8395平台安装ubuntu

官网教程:

Getting Started with Genio 1200 Evaluation Kit --- Ubuntu on Genio documentation

Windows PC工具:

Setup Tool Environment (Windows) --- IoT Yocto documentation

镜像下载地址:

Install Ubuntu on MediaTek Genio | Ubuntu

刷机步骤:

下载镜像

制造镜像包

复制代码
tar -xvf {UBUNTU_IMAGE}.tar.xz
tar --strip-components=1 -xvf {BOOT_FIRMWARE}.tar.gz -C {UBUNTU_IMAGE}/
cd baoshan-{UBUNTU_IMAGE}

修改镜像配置

由于H0871设备是4GB内存,镜像默认配置8GB内存,刷机后会报错 pte not found。

复制代码
NOTICE: MT8195 mcupm_init
NOTICE: mtk_init_mcu: Loaded (and reset) mcupm.bin: (122544 bytes)
NOTICE: MT8195 sspm_init
NOTICE: mtk_init_mcu: Loaded (and reset) sspm.bin: (137348 bytes)
NOTICE: MT8195 spm_boot_init
NOTICE: [APUSYS] apusys_init +
NOTICE: [APUSYS] apusys_init -
...
<debug_uart>
U-Boot 2022.10-gf7a807b03b (Dec 23 2024 - 11:06:43 +0000)
CPU: MediaTek MT8395
DRAM: 8 GiB
pte not found
resetting ...
System reset not supported on this platform
### ERROR ### Please RESET the board ###

配置修改Bootloader环境:

Modify Bootloader --- Ubuntu on Genio documentation

使用aws海外的ubuntu 22.04服务器配置:

构建 Genio EVK 板

重新打包现有的 FIP 映像

Arm Juno development platform --- Das U-Boot unknown version documentation

复制代码
# 1. 提取u-boot源代码
cd ~/iot-yocto/build
MACHINE=genio-1200-evk devtool modify u-boot
# 2. 进入u-boot源代码目录
cd workspace/sources/u-boot
# 3. 查找并修改内存配置
find . -name "*genio*" -o -name "*mt8395*" | grep -E "\.(dts|dtsi|h)$"
# 4. 修改相关文件中的内存配置
# 例如在设备树中:
# memory@40000000 {
#     device_type = "memory";
#     reg = <0 0x40000000 0 0x100000000>; // 4GB
# };
# 修改为使用 1 0x00000000 来表示4GB
sed -i 's/reg = <0 0x40000000 0 0x100000000>;/reg = <0 0x40000000 1 0x00000000>;/' arch/arm/dts/genio-1200-evk.dts
sed -i 's/reg = <0 0x40000000 0 0x100000000>;/reg = <0 0x40000000 1 0x00000000>;/' arch/arm/dts/genio-1200-evk-ufs.dts
# 5. 提交修改
git add .
git commit -m "Fix memory configuration for 4GB variant"
# 6. 重新构建u-boot
cd ~/iot-yocto/build
MACHINE=genio-1200-evk bitbake u-boot
# 7. 重新构建trusted-firmware-a以生成新的fip.bin
MACHINE=genio-1200-evk bitbake trusted-firmware-a
# 进入trusted-firmware-a目录
cd ~/iot-yocto/trusted-firmware-a
# 使用实际路径更新fip.bin
tools/fiptool/fiptool update \
  --nt-fw=/home/ubuntu/iot-yocto/build/tmp/deploy/images/genio-1200-evk/u-boot.bin \
  /home/ubuntu/iot-yocto/fip.bin
# 验证更新成功
tools/fiptool/fiptool info /home/ubuntu/iot-yocto/build/tmp/deploy/images/genio-1200-evk/fip.bin

改为4GB后的fip.bin合入刷机文件中

u-boot-initial-env 文件修改8G改为4G

复制代码
arch=arm
baudrate=921600
board=mt8195
board_name=mt8195
boot_a_script=load ${devtype} ${devnum}:${distro_bootpart} ${scriptaddr} ${prefix}${script}; source ${scriptaddr}
boot_efi_binary=load ${devtype} ${devnum}:${distro_bootpart} ${kernel_addr_r} efi/boot/bootaa64.efi; if fdt addr -q ${fdt_addr_r}; then bootefi ${kernel_addr_r} ${fdt_addr_r};else bootefi ${kernel_addr_r} ${fdtcontroladdr};fi
boot_efi_bootmgr=if fdt addr -q ${fdt_addr_r}; then bootefi bootmgr ${fdt_addr_r};else bootefi bootmgr;fi
boot_extlinux=sysboot ${devtype} ${devnum}:${distro_bootpart} any ${scriptaddr} ${prefix}${boot_syslinux_conf}
boot_net_usb_start=usb start
boot_prefixes=/ /boot/
boot_script_dhcp=boot.scr.uimg
boot_syslinux_conf=extlinux/extlinux.conf
bootcmd=run distro_bootcmd
bootcmd_embedded=bootembedded
bootcmd_mmc0=devnum=0; run mmc_boot
bootcmd_mmc1=devnum=1; run mmc_boot
bootcmd_usb0=devnum=0; run usb_boot
bootdelay=2
cpu=armv8
efi_dtb_prefixes=/ /dtb/ /dtb/current/
env_fdt_path=/config/environment
fdt_addr_r=0x44000000
fdt_resize=10240
fdtfile=genio-1200-evk.dtb
fdtoverlay_addr_r=0x44c00000
kernel_addr_r=0x49000000
load_efi_dtb=load ${devtype} ${devnum}:${distro_bootpart} ${fdt_addr_r} ${prefix}${efi_fdtfile}
loadaddr=0x4c000000
mmc_boot=if mmc dev ${devnum}; then devtype=mmc; run scan_dev_for_boot_part; fi
ramdisk_addr_r=0x46000000
scan_dev_for_boot=echo Scanning ${devtype} ${devnum}:${distro_bootpart}...; for prefix in ${boot_prefixes}; do run scan_dev_for_extlinux; run scan_dev_for_scripts; done;run scan_dev_for_efi;
scan_dev_for_boot_part=part list ${devtype} ${devnum} -bootable devplist; env exists devplist || setenv devplist 1; for distro_bootpart in ${devplist}; do if fstype ${devtype} ${devnum}:${distro_bootpart} bootfstype; then run scan_dev_for_boot; fi; done; setenv devplist
scan_dev_for_extlinux=if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${boot_syslinux_conf}; then echo Found ${prefix}${boot_syslinux_conf}; run boot_extlinux; echo SCRIPT FAILED: continuing...; fi
scan_dev_for_scripts=for script in ${core_boot_scripts}; do if test -e ${devtype} ${devnum}:${distro_bootpart} ${prefix}${script}; then echo Found U-Boot script ${prefix}${script}; run boot_a_script; echo SCRIPT FAILED: continuing...; sleep 3; reset; fi; done
scriptaddr=0x40000000
soc=mediatek
splashdevpart=0#bootassets
splashfile=logo.bmp
splashimage=0x4c000000
splashpos=m,m
splashsource=mmc_fs
usb_boot=usb start; if usb dev ${devnum}; then devtype=usb; run scan_dev_for_boot_part; fi
vendor=mediatek
dtb_path=/FIRMWARE/mediatek/genio-1200-evk/
efi_dtb_prefixes=${dtb_path} / /dtb/ /dtb/current/
check_fastboot_entry=setenv fastboot_entry 0
boot_conf=#conf-ddr-4g.dtbo
list_dtbo=ddr-4g.dtbo
storage=mmc
storage_dev=0
boot_scripts=fitImage
boot_targets=mmc0
bootargs=console=ttyS0,921600 console=tty1 mem=4G
core_boot_scripts=boot.scr.fit boot.scr
distro_bootcmd=for target in ${boot_targets}; do if test "${target}" != "embedded"; then dtbprobe ${storage} ${storage_dev} ${dtb_path}; fi; run bootcmd_${target}; done
scan_dev_for_efi=run boot_efi_bootmgr;if test -e ${devtype} ${devnum}:${distro_bootpart} efi/boot/bootaa64.efi; then echo Found EFI removable media binary efi/boot/bootaa64.efi; run boot_efi_binary; echo EFI LOAD FAILED: continuing...; fi
ethaddr=00:55:7b:b5:7d:f7

连接下载线

串口飞线

连接串口到PC

执行刷机命令

复制代码
genio-flash

强制下载按钮

先按住强制下载按钮,再通电

开始刷机等待刷机成功

复制代码
EFI stub: Booting Linux Kernel... EFI stub: EFI_RNG_PROTOCOL unavailable EFI stub: Using DTB from configuration table EFI stub: Exiting boot services... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050] [ 0.000000] Linux version 5.15.0-1037-mtk (buildd@bos03-arm64-100) (gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #44-Ubuntu SMP PREEMPT Fri Feb 21 03:10:36 UTC 2025 (Ubuntu 5.15.0-1037.44-mtk 5.15.168) [ 0.000000] Machine model: MediaTek Genio 1200 EVK-P1V2-EMMC [ 0.000000] efi: EFI v2.90 by Das U-Boot [ 0.000000] efi: ESRT=0xfe9c6040 RTPROP=0xfe9c8040 SMBIOS=0xfe9c4000 MOKvar=0xfe9b9000 MEMRESERVE=0xfe9aa040 [ 0.000000] secureboot: Secure boot disabled [ 0.000000] esrt: Reserving ESRT space from 0x00000000fe9c6040 to 0x00000000fe9c6118. [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000050000000, size 41 MiB [ 0.000000] OF: reserved mem: initialized node scp_mem_region, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000053000000, size 20 MiB [ 0.000000] OF: reserved mem: initialized node vpu-reserve-memory, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000060000000, size 17 MiB [ 0.000000] OF: reserved mem: initialized node snd_dma_mem_region, compatible id shared-dma-pool [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000062000000, size 20 MiB [ 0.000000] OF: reserved mem: initialized node apu-reserve-memory, compatible id shared-dma-pool [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x000000013fffffff] [ 0.000000] NUMA: NODE_DATA [mem 0x13f795140-0x13f797fff] [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000040000000-0x00000000ffffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal [mem 0x0000000100000000-0x000000013fffffff] [ 0.000000] Device empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x00000000431fffff] [ 0.000000] node 0: [mem 0x0000000043200000-0x0000000043dfffff] [ 0.000000] node 0: [mem 0x0000000043e00000-0x000000004fffffff] [ 0.000000] node 0: [mem 0x0000000050000000-0x00000000528fffff] [ 0.000000] node 0: [mem 0x0000000052900000-0x00000000545fffff] [ 0.000000] node 0: [mem 0x0000000054600000-0x00000000547fffff] [ 0.000000] node 0: [mem 0x0000000054800000-0x000000005fffffff] [ 0.000000] node 0: [mem 0x0000000060000000-0x00000000610fffff] [ 0.000000] node 0: [mem 0x0000000061100000-0x00000000fe9b8fff] [ 0.000000] node 0: [mem 0x00000000fe9b9000-0x00000000fe9b9fff] [ 0.000000] node 0: [mem 0x00000000fe9ba000-0x00000000fe9c3fff] [ 0.000000] node 0: [mem 0x00000000fe9c4000-0x00000000fe9c4fff] [ 0.000000] node 0: [mem 0x00000000fe9c5000-0x00000000fe9c7fff] [ 0.000000] node 0: [mem 0x00000000fe9c8000-0x00000000fe9c8fff] [ 0.000000] node 0: [mem 0x00000000fe9c9000-0x00000000fe9cbfff] [ 0.000000] node 0: [mem 0x00000000fe9cc000-0x00000000fe9cdfff] [ 0.000000] node 0: [mem 0x00000000fe9ce000-0x00000000fe9cefff] [ 0.000000] node 0: [mem 0x00000000fe9cf000-0x00000000fe9d2fff] [ 0.000000] node 0: [mem 0x00000000fe9d3000-0x00000000ffeeffff] [ 0.000000] node 0: [mem 0x00000000ffef0000-0x00000000ffefffff] [ 0.000000] node 0: [mem 0x00000000fff00000-0x000000013fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000013fffffff] [ 0.000000] cma: Reserved 32 MiB at 0x00000000fc800000 [ 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: Trusted OS migration not required [ 0.000000] psci: SMC Calling Convention v1.2 [ 0.000000] percpu: Embedded 31 pages/cpu s87448 r8192 d31336 u126976 [ 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: kernel page table isolation forced ON by KASLR [ 0.000000] CPU features: detected: Kernel page table isolation (KPTI) [ 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: patching kernel code [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1032192 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-1037-mtk root=LABEL=writable ro console=tty1 console=ttyAMA0 console=ttyS0,921600 console=tty1 vt.handoff=2 [ 0.000000] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-5.15.0-1037-mtk", will be passed to user space. [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:on, heap free:off [ 0.000000] software IO TLB: mapped [mem 0x00000000ed500000-0x00000000f1500000] (64MB) [ 0.000000] Memory: 3779260K/4194304K available (19200K kernel code, 5108K rwdata, 16524K rodata, 11200K init, 1178K bss, 382276K reserved, 32768K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 [ 0.000000] ftrace: allocating 62192 entries in 243 pages [ 0.000000] ftrace: allocated 243 pages with 6 groups [ 0.000000] trace event string verifier disabled [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU event tracing is enabled. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Rude variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 864 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] GICv3: Distributor has no Range Selector support [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GICv3: 16 PPIs implemented [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c040000 [ 0.000000] GICv3: GIC: PPI partition interrupt-partition-0[0] { /cpus/cpu@0[0] /cpus/cpu@100[1] /cpus/cpu@200[2] /cpus/cpu@300[3] } [ 0.000000] GICv3: GIC: PPI partition interrupt-partition-1[1] { /cpus/cpu@400[4] /cpus/cpu@500[5] /cpus/cpu@600[6] /cpus/cpu@700[7] } [ 0.000000] arch_timer: cp15 timer(s) running at 13.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns [ 0.000000] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns [ 0.001556] Console: colour dummy device 80x25 [ 0.002017] printk: console [tty1] enabled [ 0.002105] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=52000) [ 0.002122] pid_max: default: 32768 minimum: 301 [ 0.002255] LSM: Security Framework initializing [ 0.002293] landlock: Up and running. [ 0.002300] Yama: becoming mindful. [ 0.002377] AppArmor: AppArmor initialized [ 0.002531] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.002556] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.004599] rcu: Hierarchical SRCU implementation. [ 0.008414] Remapping and enabling EFI services. [ 0.009003] smp: Bringing up secondary CPUs ... [ 0.009606] Detected VIPT I-cache on CPU1 [ 0.009641] GICv3: CPU1: found redistributor 100 region 0:0x000000000c060000 [ 0.009672] CPU1: Bon 0:0x000000000c0a0000 [ 0.011771] CPU3: Booted secondary processor 0x0000000300 [0x412fd050] [ 0.012845] CPU features: detected: Spectre-v4 [ 0.012850] CPU features: detected: Spectre-BHB [ 0.012854] CPU features: detected: SSBS not fully self-synchronizing [ 0.012856] Detected PIPT I-cache on CPU4 [ 0.012874] GICv3: CPU4: found redistributor 400 region 0:0x000000000c0c0000 [ 0.012893] CPU4: Booted secondary processor 0x0000000400 [0x411fd410] [ 0.013872] Detected PIPT I-cache on CPU5 [ 0.013893] GICv3: CPU5: found redistributor 500 region 0:0x000000000c0e0000 [ 0.013911] CPU5: Booted secondary processor 0x0000000500 [0x411fd410] [ 0.014932] Detected PIPT I-cache on CPU6 [ 0.014953] GICv3: CPU6: found redistributor 600 region 0:0x000000000c100000 [ 0.014971] CPU6: Booted secondary processor 0x0000000600 [0x411fd410] [ 0.015983] Detected PIPT I-cache on CPU7 [ 0.016005] GICv3: CPU7: found redistributor 700 region 0:0x000000000c120000 [ 0.016022] CPU7: Booted secondary processor 0x0000000700 [0x411fd410] [ 0.016117] smp: Brought up 1 node, 8 CPUs [ 0.016347] SMP: Total of 8 processors activated. [ 0.016362] CPU features: detected: 32-bit EL0 Support [ 0.016375] CPU features: detected: Data cache clean to the PoU not required for I/D coherence [ 0.016394] CPU features: detected: Common not Private translations [ 0.016408] CPU features: detected: CRC32 instructions [ 0.016421] CPU features: detected: Data cache clean to Point of Persistence [ 0.016458] CPU features: detected: RCpc load-acquire (LDAPR) [ 0.016472] CPU features: detected: LSE atomic instructions [ 0.016486] CPU features: detected: Privileged Access Never [ 0.016499] CPU features: detected: RAS Extension Support [ 0.016513] CPU features: detected: Speculative Store Bypassing Safe (SSBS) [ 0.052083] CPU: All CPU(s) started at EL2 [ 0.054999] devtmpfs: initialized [ 0.063713] KASLR disabled due to lack of seed [ 0.063881] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.063915] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) [ 0.064378] pinctrl core: initialized pinctrl subsystem [ 0.064733] SMBIOS 3.0 present. [ 0.064744] DMI: Unknown Unknown Product/Unknown Product, BIOS 2022.10 10/01/2022 [ 0.065125] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.066689] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations [ 0.066869] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.067125] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.067174] audit: initializing netlink subsys (disabled) [ 0.067334] audit: type=2000 audit(0.064:1): state=initialized audit_enabled=0 res=1 [ 0.068248] thermal_sys: Registered thermal governor 'fair_share' [ 0.068254] thermal_sys: Registered thermal governor 'bang_bang' [ 0.068265] thermal_sys: Registered thermal governor 'step_wise' [ 0.068273] thermal_sys: Registered thermal governor 'user_space' [ 0.068280] thermal_sys: Registered thermal governor 'power_allocator' [ 0.068439] thermal thermal_zone1: power_allocator: sustainable_power will be estimated [ 0.068487] thermal thermal_zone2: power_allocator: sustainable_power will be estimated [ 0.068521] thermal thermal_zone3: power_allocator: sustainable_power will be estimated [ 0.068570] thermal thermal_zone4: power_allocator: sustainable_power will be estimated [ 0.068609] thermal thermal_zone5: power_allocator: sustainable_power will be estimated [ 0.068647] thermal thermal_zone6: power_allocator: sustainable_power will be estimated [ 0.068685] thermal thermal_zone7: power_allocator: sustainable_power will be estimated [ 0.068727] thermal thermal_zone8: power_allocator: sustainable_power will be estimated [ 0.068765] thermal thermal_zone9: power_allocator: sustainable_power will be estimated [ 0.068803] thermal thermal_zone10: power_allocator: sustainable_power will be estimated [ 0.068835] thermal thermal_zone11: power_allocator: sustainable_power will be estimated [ 0.068877] thermal thermal_zone12: power_allocator: sustainable_power will be estimated [ 0.068914] thermal thermal_zone13: power_allocator: sustainable_power will be estimated [ 0.068952] thermal thermal_zone14: power_allocator: sustainable_power will be estimated [ 0.068998] thermal thermal_zone15: power_allocator: sustainable_power will be estimated [ 0.069042] thermal thermal_zone16: power_allocator: sustainable_power will be estimated [ 0.069089] thermal thermal_zone17: power_allocator: sustainable_power will be estimated [ 0.069125] cpuidle: using governor ladder [ 0.069140] cpuidle: using governor menu [ 0.069259] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.069403] ASID allocator initialised with 32768 entries [ 0.070189] Serial: AMBA PL011 UART driver [ 0.115667] platform 1c300000.hdmi: Fixing up cyclic dependency with 1c112000.disp_dpi1 [ 0.123261] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.123273] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages [ 0.123278] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.123283] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages [ 0.128853] fbcon: Taking over console [ 0.128885] ACPI: Interpreter disabled. [ 0.130832] iommu: Default domain type: Translated [ 0.130846] iommu: DMA domain TLB invalidation policy: strict mode [ 0.131521] SCSI subsystem initialized [ 0.131721] vgaarb: loaded [ 0.131803] usbcore: registered new interface driver usbfs [ 0.131828] usbcore: registered new interface driver hub [ 0.131847] usbcore: registered new device driver usb [ 0.132231] pps_core: LinuxPPS API ver. 1 registered [ 0.132237] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.132246] PTP clock support registered [ 0.132520] EDAC MC: Ver: 3.0.0 [ 0.133301] Registered efivars operations [ 0.134763] Advanced Linux Sound Architecture Driver Initialized. [ 0.135059] NetLabel: Initializing [ 0.135066] NetLabel: domain hash size = 128 [ 0.135071] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.135112] NetLabel: unlabeled traffic allowed by default [ 0.135430] clocksource: Switched to clocksource arch_sys_counter [ 0.171037] VFS: Disk quotas dquot_6.6.0 [ 0.171086] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.171500] AppArmor: AppArmor Filesystem Enabled [ 0.171550] pnp: PnP ACPI: disabled [ 0.174956] NET: Registered PF_INET protocol family [ 0.175080] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.176435] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) [ 0.176487] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.176526] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.176628] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) [ 0.176704] TCP: Hash tables configured (established 32768 bind 32768) [ 0.176853] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear) [ 0.176903] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.176931] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.177056] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.177073] NET: Registered PF_XDP protocol family [ 0.177081] PCI: CLS 0 bytes, default 64 [ 0.177410] Trying to unpack rootfs image as initramfs... [ 0.186348] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available [ 0.186606] hw perfevents: enabled with armv8_cortex_a78 PMU driver, 7 counters available [ 0.187075] kvm [1]: IPA Size Limit: 40 bits [ 0.187093] kvm [1]: GICv3: no GICV resource entry [ 0.187098] kvm [1]: disabling GICv2 emulation [ 0.187115] kvm [1]: GIC system register CPU interface enabled [ 0.187269] kvm [1]: vgic interrupt IRQ18 [ 0.187446] kvm [1]: VHE mode initialized successfully [ 0.188359] Initialise system trusted keyrings [ 0.188402] Key type blacklist registered [ 0.188553] workingset: timestamp_bits=42 max_order=20 bucket_order=0 [ 0.191226] zbud: loaded [ 0.191996] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.192364] fuse: init (API version 7.34) [ 0.192693] integrity: Platform Keyring initialized [ 0.214237] Key type asymmetric registered [ 0.214247] Asymmetric key parser 'x509' registered [ 0.214295] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241) [ 0.214408] io scheduler mq-deadline registered [ 0.220199] mediatek-mipi-tx 11c80000.mipi-dphy0: can't get nvmem_cell_get, ignore it [ 0.264773] mt-pmic-pwrap 10024000.pwrap: there is not valid maps for state default [ 0.276846] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.278517] printk: console [ttyS0] disabled [ 0.298700] 11001100.serial: ttyS0 at MMIO 0x11001100 (irq = 288, base_baud = 1625000) is a ST16650V2 [ 0.494524] printk: console [ttyS0] enabled [ 0.515670] 11001200.serial: ttyS1 at MMIO 0x11001200 (irq = 289, base_baud = 1625000) is a ST16650V2 [ 0.518148] SuperH (H)SCI(F) driver initialized [ 0.519622] msm_serial: driver initialized [ 0.528331] loop: module loaded [ 0.542822] vcn33_2_bt: Bringing 3500000uV into 3300000-3300000uV [ 0.550203] SPI driver altr_a10sr has no spi_device_id for altr,a10sr [ 0.560931] tun: Universal TUN/TAP device driver, 1.6 [ 0.563159] PPP generic driver version 2.4.2 [ 0.564345] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.565182] ehci-pci: EHCI PCI platform driver [ 0.565772] ehci-orion: EHCI orion driver [ 0.566437] ehci-exynos: EHCI Exynos driver [ 0.567098] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 0.567901] ohci-pci: OHCI PCI platform driver [ 0.568480] ohci-exynos: OHCI Exynos driver [ 0.569145] uhci_hcd: USB Universal Host Controller Interface driver [ 0.570345] mousedev: PS/2 mouse device common for all mice [ 0.572021] mt6397-rtc mt6359-rtc: registered as rtc0 [ 0.572714] mt6397-rtc mt6359-rtc: setting system clock to 2010-01-01T00:01:46 UTC (1262304106) [ 0.574750] i2c_dev: i2c /dev entries driver [ 0.584518] mt6360-regulator mt6360-regulator.6.auto: assign downstream regulator desc [ 0.585814] mt6360,buck1: supplied by regulator-dummy [ 0.606369] mt6360,buck2: supplied by regulator-dummy [ 0.627031] mt6360,ldo6: supplied by mt6360,buck2 [ 0.636922] mt6360,ldo7: supplied by mt6360,buck2 [ 0.647866] mt6360,ldo1: supplied by regulator-dummy [ 0.658912] mt6360,ldo2: supplied by regulator-dummy [ 0.669326] mt6360,ldo3: supplied by regulator-dummy [ 0.679706] mt6360,ldo5: supplied by regulator-dummy [ 0.688876] platform mt6360-tcpc.7.auto: Fixing up cyclic dependency with 11201000.usb [ 0.692028] Goodix-TS 3-005d: supply VDDIO not found, using dummy regulator [ 0.791585] Goodix-TS 3-005d: i2c test failed attempt 1: -6 [ 0.819574] Goodix-TS 3-005d: i2c test failed attempt 2: -6 [ 0.847437] Goodix-TS 3-005d: I2C communication failure: -6 [ 0.851839] mt6360-chg mt6360-chg.4.auto: DMA mask not set [ 0.868426] mt6360-chg mt6360-chg.4.auto: assign downstream regulator desc [ 0.871393] mtk-soc-temp-lvts 1100b000.lvts: [lvts_cal] golden_temp = 60 [ 0.872268] mtk-soc-temp-lvts 1100b000.lvts: [lvts_cal] num:g_count:g_count_rc 0:35474:2452 1:35494:0 2:35422:2477 3:35437:0 4:35261:2462 5:35235:0 6:35218:0 7:35206:0 8:35353:2450 9:35294:0 10:35316:2448 11:35367:0 12:35435:2473 13:35418:0 14:35425:0 15:35174:2445 16:35130:0 [ 0.876991] mtk-soc-temp-lvts 1100b000.lvts: set_polling_speed 0, LVTSMONCTL1_0= 0x10000c,LVTSMONCTL2_0= 0x10001 [ 0.878275] mtk-soc-temp-lvts 1100b000.lvts: set_hw_filter 0, LVTSMSRCTL0_0= 0x492 [ 0.879228] mtk-soc-temp-lvts 1100b000.lvts: lvts0: read all 2 sensors in 1120 us, one in 444 us [ 0.880362] mtk-soc-temp-lvts 1100b000.lvts: set_polling_speed 1, LVTSMONCTL1_0= 0x10000c,LVTSMONCTL2_0= 0x10001 [ 0.881643] mtk-soc-temp-lvts 1100b000.lvts: set_hw_filter 1, LVTSMSRCTL0_0= 0x492 [ 0.882594] mtk-soc-temp-lvts 1100b000.lvts: lvts1: read all 2 sensors in 1120 us, one in 444 us [ 0.883728] mtk-soc-temp-lvts 1100b000.lvts: set_polling_speed 2, LVTSMONCTL1_0= 0x10000c,LVTSMONCTL2_0= 0x10001 [ 0.885008] mtk-soc-temp-lvts 1100b000.lvts: set_hw_filter 2, LVTSMSRCTL0_0= 0x492 [ 0.885960] mtk-soc-temp-lvts 1100b000.lvts: lvts2: read all 4 sensors in 2240 us, one in 444 us [ 0.887086] mtk-soc-temp-lvts 1100b000.lvts: set_polling_speed 3, LVTSMONCTL1_0= 0x10000c,LVTSMONCTL2_0= 0x10001 [ 0.888373] mtk-soc-temp-lvts 1100b000.lvts: set_hw_filter 3, LVTSMSRCTL0_0= 0x492 [ 0.889324] mtk-soc-temp-lvts 1100b000.lvts: lvts3: read all 2 sensors in 1120 us, one in 444 us [ 0.890452] mtk-soc-temp-lvts 1100b000.lvts: set_polling_speed 4, LVTSMONCTL1_0= 0x10000c,LVTSMONCTL2_0= 0x10001 [ 0.891738] mtk-soc-temp-lvts 1100b000.lvts: set_hw_filter 4, LVTSMSRCTL0_0= 0x492 [ 0.892690] mtk-soc-temp-lvts 1100b000.lvts: lvts4: read all 2 sensors in 1120 us, one in 444 us [ 0.893817] mtk-soc-temp-lvts 1100b000.lvts: set_polling_speed 5, LVTSMONCTL1_0= 0x10000c,LVTSMONCTL2_0= 0x10001 [ 0.895096] mtk-soc-temp-lvts 1100b000.lvts: set_hw_filter 5, LVTSMSRCTL0_0= 0x492 [ 0.896053] mtk-soc-temp-lvts 1100b000.lvts: lvts5: read all 3 sensors in 1680 us, one in 444 us [ 0.897180] mtk-soc-temp-lvts 1100b000.lvts: set_polling_speed 6, LVTSMONCTL1_0= 0x10000c,LVTSMONCTL2_0= 0x10001 [ 0.898459] mtk-soc-temp-lvts 1100b000.lvts: set_hw_filter 6, LVTSMSRCTL0_0= 0x492 [ 0.899410] mtk-soc-temp-lvts 1100b000.lvts: lvts6: read all 2 sensors in 1120 us, one in 444 us [ 0.900521] mtk-soc-temp-lvts 1100b000.lvts: set_tc_hw_reboot_threshold: LVTS0, the dominator sensing point= 1 [ 0.901781] mtk-soc-temp-lvts 1100b000.lvts: set_tc_hw_reboot_threshold: LVTS1, the dominator sensing point= 0 [ 0.903039] mtk-soc-temp-lvts 1100b000.lvts: set_tc_hw_reboot_threshold: LVTS2, the dominator sensing point= 0 [ 0.904301] mtk-soc-temp-lvts 1100b000.lvts: set_tc_hw_reboot_threshold: LVTS3, the dominator sensing point= 0 [ 0.905560] mtk-soc-temp-lvts 1100b000.lvts: set_tc_hw_reboot_threshold: LVTS4, the dominator sensing point= 1 [ 0.906818] mtk-soc-temp-lvts 1100b000.lvts: set_tc_hw_reboot_threshold: LVTS5, the dominator sensing point= 1 [ 0.908080] mtk-soc-temp-lvts 1100b000.lvts: set_tc_hw_reboot_threshold: LVTS6, the dominator sensing point= 0 [ 0.910596] mtk-wdt 10007000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 0.912150] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. [ 0.913762] device-mapper: uevent: version 1.0.3 [ 0.914491] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com [ 0.916332] cpu cpu0: supply cpu not found, using dummy regulator [ 0.917186] cpu cpu1: supply cpu not found, using dummy regulator [ 0.918018] cpu cpu2: supply cpu not found, using dummy regulator [ 0.918857] cpu cpu3: supply cpu not found, using dummy regulator [ 0.919710] cpu cpu4: supply cpu not found, using dummy regulator [ 0.920572] cpu cpu5: supply cpu not found, using dummy regulator [ 0.921397] cpu cpu6: supply cpu not found, using dummy regulator [ 0.922219] cpu cpu7: supply cpu not found, using dummy regulator [ 0.926258] cpu cpu0: EM: created perf domain [ 0.927167] cpu cpu4: EM: created perf domain [ 0.932641] mtk-msdc 11240000.mmc: supply dvfsrc-vcore not found, using dummy regulator [ 0.933918] ledtrig-cpu: registered to indicate activity on CPUs [ 0.934246] mtk-msdc 11230000.mmc: supply dvfsrc-vcore not found, using dummy regulator [ 0.935960] SMCCC: SOC_ID: ID = jep106:0426:8195 Revision = 0x00000000 [ 0.939291] mt6359-sound mt6359-sound: mt6359_parse_dt() failed to read dmic-mode, use default (0) [ 0.940962] drop_monitor: Initializing network drop monitor service [ 0.941962] NET: Registered PF_INET6 protocol family [ 1.035215] Freeing initrd memory: 66112K [ 1.062645] Segment Routing with IPv6 [ 1.063320] In-situ OAM (IOAM) with IPv6 [ 1.064050] NET: Registered PF_PACKET protocol family [ 1.065110] Key type dns_resolver registered [ 1.067753] registered taskstats version 1 [ 1.069208] Loading compiled-in X.509 certificates [ 1.073005] Loaded X.509 cert 'Build time autogenerated kernel key: e311b70717bf1c9e7777ce6ded9fefe0cf09aa77' [ 1.077621] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' [ 1.083349] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' [ 1.084666] blacklist: Loading compiled-in revocation X.509 certificates [ 1.085661] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' [ 1.086539] mtk-msdc 11230000.mmc: phase: [map:00000000fffffc0f] [maxlen:22] [final:21] [ 1.087037] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' [ 1.089383] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' [ 1.090870] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' [ 1.092310] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' [ 1.093190] mtk-msdc 11230000.mmc: phase: [map:00000000ffffff80] [maxlen:25] [final:19] [ 1.093787] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' [ 1.094683] mtk-msdc 11230000.mmc: Final PAD_DS_TUNE: 0x14c11 [ 1.096197] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' [ 1.097060] mmc0: new HS400 MMC card at address 0001 [ 1.098230] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' [ 1.101296] zswap: loaded using pool lzo/zbud [ 1.101332] mmcblk0: mmc0:0001 A3A561 57.6 GiB [ 1.104421] Key type .fscrypt registered [ 1.104951] Key type fscrypt-provisioning registered [ 1.107242] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 [ 1.109911] mmcblk0boot0: mmc0:0001 A3A561 4.00 MiB [ 1.112333] mmcblk0boot1: mmc0:0001 A3A561 4.00 MiB [ 1.114234] mmcblk0rpmb: mmc0:0001 A3A561 16.0 MiB, chardev (234:0) [ 1.135057] cryptd: max_cpu_qlen set to 1000 [ 1.153328] Key type encrypted registered [ 1.153872] AppArmor: AppArmor sha1 policy hashing enabled [ 1.154775] integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) [ 1.157285] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' [ 1.158767] ima: No TPM chip found, activating TPM-bypass! [ 1.159504] Loading compiled-in module X.509 certificates [ 1.162590] Loaded X.509 cert 'Build time autogenerated kernel key: e311b70717bf1c9e7777ce6ded9fefe0cf09aa77' [ 1.163884] ima: Allocated hash algorithm: sha1 [ 1.164489] ima: No architecture policies found [ 1.165178] evm: Initialising EVM extended attributes: [ 1.165834] evm: security.selinux [ 1.166261] evm: security.SMACK64 [ 1.166685] evm: security.SMACK64EXEC [ 1.167152] evm: security.SMACK64TRANSMUTE [ 1.167696] evm: security.SMACK64MMAP [ 1.168165] evm: security.apparmor [ 1.168600] evm: security.ima [ 1.168980] evm: security.capability [ 1.169434] evm: HMAC attrs: 0x1 [ 1.218547] mediatek-hdmi-phy 11d5f000.hdmi-phy: Using default TX DRV impedance: 4.2k/36 [ 1.235366] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/ovl@1c000000 [ 1.236684] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/rdma@1c002000 [ 1.237851] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/color@1c003000 [ 1.239021] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/ccorr@1c004000 [ 1.240226] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/aal@1c005000 [ 1.241368] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/gamma@1c006000 [ 1.242707] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/dsi0@1c008000 [ 1.244031] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/ovl@1c00a000 [ 1.245179] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/rdma@1c00c000 [ 1.246342] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/color@1c00d000 [ 1.247535] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/ccorr@1c00e000 [ 1.248698] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/aal@1c00f000 [ 1.249825] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/gamma@1c010000 [ 1.251083] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/merge0@1c014000 [ 1.252540] mediatek-drm mediatek-drm.9.auto: Adding component match for /soc/disp_dpi1@1c112000 [ 1.262128] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: type: 2, alias: 0 might not be part of ovl adaptor [ 1.263552] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: Skipping unknown component /soc/merge0@1c014000 [ 1.265813] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: type: 2, alias: 5 might not be part of ovl adaptor [ 1.267218] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: Skipping unknown component /soc/vpp-merge@1c110000 [ 1.271758] mediatek-drm mediatek-drm.11.auto: Adding component match for /soc/vpp-merge@1c110000 [ 1.280636] mtu3 11201000.usb: supply vbus not found, using dummy regulator [ 1.281552] mtu3 11201000.usb: dr_mode: 3, is_u3_dr: 1, drd: auto [ 1.282318] mtu3 11201000.usb: u2p_dis_msk: 0, u3p_dis_msk: 0 [ 1.283202] mtu3 11201000.usb: irq 346 [ 1.283684] mtu3 11201000.usb: IP version 0x1006(U3 IP) [ 1.284342] mtu3 11201000.usb: max_speed: super-speed-plus [ 1.285151] mtu3 11201000.usb: fifosz/epnum: Tx=0x4000/8, Rx=0x4000/8 [ 1.285974] mtu3 11201000.usb: dma mask: 36 bits [ 1.287261] xhci-mtk 11200000.xhci: supply vbus not found, using dummy regulator [ 1.288251] xhci-mtk 11200000.xhci: supply vusb33 not found, using dummy regulator [ 1.289231] xhci-mtk 11200000.xhci: backwards compatible for rxfifo_depth, might be overwritten [ 1.290370] xhci-mtk 11200000.xhci: xHCI Host Controller [ 1.291042] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 1 [ 1.292069] xhci-mtk 11200000.xhci: hcc params 0x01400f99 hci version 0x110 quirks 0x0000000020210010 [ 1.293242] xhci-mtk 11200000.xhci: irq 397, io mem 0x11200000 [ 1.294030] xhci-mtk 11200000.xhci: xHCI Host Controller [ 1.294700] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 2 [ 1.295646] xhci-mtk 11200000.xhci: Host supports USB 3.2 Enhanced SuperSpeed [ 1.296599] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.297637] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.298544] usb usb1: Product: xHCI Host Controller [ 1.299157] usb usb1: Manufacturer: Linux 5.15.0-1037-mtk xhci-hcd [ 1.299939] usb usb1: SerialNumber: 11200000.xhci [ 1.300961] hub 1-0:1.0: USB hub found [ 1.301451] hub 1-0:1.0: 1 port detected [ 1.302062] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.303114] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.304166] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.305072] usb usb2: Product: xHCI Host Controller [ 1.305685] usb usb2: Manufacturer: Linux 5.15.0-1037-mtk xhci-hcd [ 1.306461] usb usb2: SerialNumber: 11200000.xhci [ 1.307413] hub 2-0:1.0: USB hub found [ 1.307919] hub 2-0:1.0: 1 port detected [ 1.308528] mtu3 11201000.usb: xHCI platform device register success... [ 1.309850] mtu3 112a1000.usb: supply vbus not found, using dummy regulator [ 1.310760] mtu3 112a1000.usb: dr_mode: 3, is_u3_dr: 0, drd: auto [ 1.311537] mtu3 112a1000.usb: u2p_dis_msk: 0, u3p_dis_msk: 0 [ 1.312335] mtu3 112a1000.usb: irq 348 [ 1.312809] mtu3 112a1000.usb: IP version 0x1006(U2 IP) [ 1.313466] mtu3 112a1000.usb: max_speed: high-speed [ 1.314093] mtu3 112a1000.usb: fifosz/epnum: Tx=0x2000/8, Rx=0x2000/8 [ 1.314910] mtu3 112a1000.usb: dma mask: 36 bits [ 1.316148] xhci-mtk 112a0000.xhci: supply vbus not found, using dummy regulator [ 1.317196] xhci-mtk 112a0000.xhci: xHCI Host Controller [ 1.317868] xhci-mtk 112a0000.xhci: new USB bus registered, assigned bus number 3 [ 1.318856] xhci-mtk 112a0000.xhci: USB3 root hub has no ports [ 1.319600] xhci-mtk 112a0000.xhci: hcc params 0x01400f99 hci version 0x110 quirks 0x0000000020210010 [ 1.320771] xhci-mtk 112a0000.xhci: irq 398, io mem 0x112a0000 [ 1.321597] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.322635] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.323554] usb usb3: Product: xHCI Host Controller [ 1.324168] usb usb3: Manufacturer: Linux 5.15.0-1037-mtk xhci-hcd [ 1.324943] usb usb3: SerialNumber: 112a0000.xhci [ 1.325925] hub 3-0:1.0: USB hub found [ 1.326413] hub 3-0:1.0: 1 port detected [ 1.327279] mtu3 112a1000.usb: xHCI platform device register success... [ 1.328538] xhci-mtk 112b0000.xhci: supply vbus not found, using dummy regulator [ 1.329605] xhci-mtk 112b0000.xhci: uwk - reg:0x400, version:106 [ 1.330447] xhci-mtk 112b0000.xhci: xHCI Host Controller [ 1.331121] xhci-mtk 112b0000.xhci: new USB bus registered, assigned bus number 4 [ 1.332131] xhci-mtk 112b0000.xhci: USB3 root hub has no ports [ 1.332865] xhci-mtk 112b0000.xhci: hcc params 0x01400f99 hci version 0x110 quirks 0x0000000020210010 [ 1.334040] xhci-mtk 112b0000.xhci: irq 349, io mem 0x112b0000 [ 1.334860] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.335904] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.336811] usb usb4: Product: xHCI Host Controller [ 1.337423] usb usb4: Manufacturer: Linux 5.15.0-1037-mtk xhci-hcd [ 1.338197] usb usb4: SerialNumber: 112b0000.xhci [ 1.339129] hub 4-0:1.0: USB hub found [ 1.339632] hub 4-0:1.0: 1 port detected [ 1.353865] [drm] hdmi-audio-codec driver bound to HDMI [ 1.366457] mt8195-audio 10890000.mt8195-afe-pcm: mtk_afe_combine_sub_dai(), num of dai 29 [ 1.367606] mt8195-audio 10890000.mt8195-afe-pcm: No cache defaults, reading back from HW [ 1.377206] dmic-codec dmic-codec: ASoC: sink widget DMIC AIF overwritten [ 1.383805] mt8195-audio 10890000.mt8195-afe-pcm: mt8195_mt6359_mtkaif_calibration(), start [ 1.385655] mt8195-audio 10890000.mt8195-afe-pcm: mt8195_mt6359_mtkaif_calibration(), end, calibration ok 1 [ 1.390884] input: mt8395-evk HDMI Jack as /devices/platform/mt8195-sound/sound/card0/input0 [ 1.393130] mali 13000000.mali: Kernel DDK version r43p0-01eac0 [ 1.395415] mali 13000000.mali: Detected G-57 variant with GPU ID 90930010. Changing the ID to 90910010. [ 1.396680] mali 13000000.mali: GPU identified as 0x1 arch 9.0.9 r0p1 status 0 [ 1.397988] mali 13000000.mali: No priority control manager is configured [ 1.398887] mali 13000000.mali: No memory group manager is configured [ 1.400406] mali 13000000.mali: OPP 0 : opp_freq=880000000 core_mask=50045 [ 1.401277] mali 13000000.mali: OPP 1 : opp_freq=850000000 core_mask=50045 [ 1.402140] mali 13000000.mali: OPP 2 : opp_freq=820000000 core_mask=50045 [ 1.403003] mali 13000000.mali: OPP 3 : opp_freq=790000000 core_mask=50045 [ 1.403881] mali 13000000.mali: OPP 4 : opp_freq=760000000 core_mask=50045 [ 1.404743] mali 13000000.mali: OPP 5 : opp_freq=730000000 core_mask=50045 [ 1.405605] mali 13000000.mali: OPP 6 : opp_freq=700000000 core_mask=50045 [ 1.406468] mali 13000000.mali: OPP 7 : opp_freq=670000000 core_mask=50045 [ 1.407330] mali 13000000.mali: OPP 8 : opp_freq=640000000 core_mask=50045 [ 1.408196] mali 13000000.mali: OPP 9 : opp_freq=598000000 core_mask=50045 [ 1.409060] mali 13000000.mali: OPP 10 : opp_freq=556000000 core_mask=50045 [ 1.409933] mali 13000000.mali: OPP 11 : opp_freq=515000000 core_mask=50045 [ 1.410806] mali 13000000.mali: OPP 12 : opp_freq=473000000 core_mask=50045 [ 1.411682] mali 13000000.mali: OPP 13 : opp_freq=431000000 core_mask=50045 [ 1.412555] mali 13000000.mali: OPP 14 : opp_freq=410000000 core_mask=50045 [ 1.413428] mali 13000000.mali: OPP 15 : opp_freq=390000000 core_mask=50045 [ 1.415071] mali 13000000.mali: Probed as mali0 [ 1.417499] mtk-pcie 112f0000.pcie: host bridge /soc/pcie@112f0000 ranges: [ 1.418405] mtk-pcie 112f0000.pcie: IO 0x0020000000..0x00201fffff -> 0x0020000000 [ 1.419452] mtk-pcie 112f0000.pcie: MEM 0x0020200000..0x0023ffffff -> 0x0020200000 [ 1.527816] devfreq 13000000.mali: Couldn't update frequency transition information. [ 1.627671] mtk-pcie 112f0000.pcie: PCIe link down, ltssm reg val: 0x1 [ 1.628731] mtk-pcie: probe of 112f0000.pcie failed with error -110 [ 1.642928] mediatek-dpi 1c112000.disp_dpi1: Found bridge node: /soc/hdmi@1c300000 [ 1.651007] xhci-mtk 11290000.xhci: supply vbus not found, using dummy regulator [ 1.652240] xhci-mtk 11290000.xhci: backwards compatible for rxfifo_depth, might be overwritten [ 1.653354] xhci-mtk 11290000.xhci: uwk - reg:0x400, version:104 [ 1.654446] xhci-mtk 11290000.xhci: xHCI Host Controller [ 1.655131] xhci-mtk 11290000.xhci: new USB bus registered, assigned bus number 5 [ 1.656355] xhci-mtk 11290000.xhci: hcc params 0x01400f99 hci version 0x110 quirks 0x0000000020210010 [ 1.657570] xhci-mtk 11290000.xhci: irq 347, io mem 0x11290000 [ 1.658450] xhci-mtk 11290000.xhci: xHCI Host Controller [ 1.659129] xhci-mtk 11290000.xhci: new USB bus registered, assigned bus number 6 [ 1.660106] xhci-mtk 11290000.xhci: Host supports USB 3.2 Enhanced SuperSpeed [ 1.661141] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 [ 1.662189] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.663103] usb usb5: Product: xHCI Host Controller [ 1.663733] usb usb5: Manufacturer: Linux 5.15.0-1037-mtk xhci-hcd [ 1.664515] usb usb5: SerialNumber: 11290000.xhci [ 1.665648] hub 5-0:1.0: USB hub found [ 1.666150] hub 5-0:1.0: 1 port detected [ 1.666920] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.668049] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 [ 1.669097] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.670010] usb usb6: Product: xHCI Host Controller [ 1.670628] usb usb6: Manufacturer: Linux 5.15.0-1037-mtk xhci-hcd [ 1.671409] usb usb6: SerialNumber: 11290000.xhci [ 1.672502] hub 6-0:1.0: USB hub found [ 1.673004] hub 6-0:1.0: 1 port detected [ 1.689048] mtk-iommu 14018000.iommu: bound 1c019000.larb (ops mtk_smi_larb_component_ops) [ 1.690110] mtk-iommu 14018000.iommu: bound 1c103000.larb (ops mtk_smi_larb_component_ops) [ 1.691157] mtk-iommu 14018000.iommu: bound 14013000.larb (ops mtk_smi_larb_component_ops) [ 1.692237] mtk-iommu 14018000.iommu: bound 14f03000.larb (ops mtk_smi_larb_component_ops) [ 1.693285] mtk-iommu 14018000.iommu: bound 14e05000.larb (ops mtk_smi_larb_component_ops) [ 1.694332] mtk-iommu 14018000.iommu: bound 15340000.larb (ops mtk_smi_larb_component_ops) [ 1.695379] mtk-iommu 14018000.iommu: bound 16002000.larb (ops mtk_smi_larb_component_ops) [ 1.696439] mtk-iommu 14018000.iommu: bound 16012000.larb (ops mtk_smi_larb_component_ops) [ 1.697486] mtk-iommu 14018000.iommu: bound 17201000.larb (ops mtk_smi_larb_component_ops) [ 1.698534] mtk-iommu 14018000.iommu: bound 1b010000.larb (ops mtk_smi_larb_component_ops) [ 1.699594] mtk-iommu 14018000.iommu: bound 1803e000.larb (ops mtk_smi_larb_component_ops) [ 1.700642] mtk-iommu 14018000.iommu: bound 1800e000.larb (ops mtk_smi_larb_component_ops) [ 1.701689] mtk-iommu 14018000.iommu: bound 16142000.larb (ops mtk_smi_larb_component_ops) [ 1.702735] mtk-iommu 14018000.iommu: bound 16014000.larb (ops mtk_smi_larb_component_ops) [ 1.705137] mtk-iommu 1c01f000.iommu: bound 1c018000.larb (ops mtk_smi_larb_component_ops) [ 1.706184] mtk-iommu 1c01f000.iommu: bound 1c102000.larb (ops mtk_smi_larb_component_ops) [ 1.707223] mtk-iommu 1c01f000.iommu: bound 14f02000.larb (ops mtk_smi_larb_component_ops) [ 1.708274] mtk-iommu 1c01f000.iommu: bound 14e04000.larb (ops mtk_smi_larb_component_ops) [ 1.709312] mtk-iommu 1c01f000.iommu: bound 15001000.larb (ops mtk_smi_larb_component_ops) [ 1.710349] mtk-iommu 1c01f000.iommu: bound 15120000.larb (ops mtk_smi_larb_component_ops) [ 1.711386] mtk-iommu 1c01f000.iommu: bound 15230000.larb (ops mtk_smi_larb_component_ops) [ 1.712486] mtk-iommu 1c01f000.iommu: bound 16001000.larb (ops mtk_smi_larb_component_ops) [ 1.713524] mtk-iommu 1c01f000.iommu: bound 16013000.larb (ops mtk_smi_larb_component_ops) [ 1.714562] mtk-iommu 1c01f000.iommu: bound 1a010000.larb (ops mtk_smi_larb_component_ops) [ 1.715650] mtk-iommu 1c01f000.iommu: bound 1802e000.larb (ops mtk_smi_larb_component_ops) [ 1.716689] mtk-iommu 1c01f000.iommu: bound 1800d000.larb (ops mtk_smi_larb_component_ops) [ 1.717726] mtk-iommu 1c01f000.iommu: bound 16141000.larb (ops mtk_smi_larb_component_ops) [ 1.718762] mtk-iommu 1c01f000.iommu: bound 16015000.larb (ops mtk_smi_larb_component_ops) [ 1.720039] mediatek-disp-ovl 1c000000.ovl: Adding to iommu group 0 [ 1.721249] mediatek-disp-ovl 1c00a000.ovl: Adding to iommu group 0 [ 1.722269] mediatek-disp-rdma 1c002000.rdma: Adding to iommu group 0 [ 1.723288] mediatek-disp-rdma 1c00c000.rdma: Adding to iommu group 0 [ 1.724327] mediatek-disp-ethdr 1c114000.hdr-engine: Adding to iommu group 0 [ 1.725511] mediatek-mdp-rdma 1c104000.rdma: Adding to iommu group 0 [ 1.726511] mediatek-mdp-rdma 1c105000.rdma: Adding to iommu group 0 [ 1.727511] mediatek-mdp-rdma 1c106000.rdma: Adding to iommu group 0 [ 1.728488] mediatek-mdp-rdma 1c107000.rdma: Adding to iommu group 0 [ 1.729481] mediatek-mdp-rdma 1c108000.rdma: Adding to iommu group 0 [ 1.730456] mediatek-mdp-rdma 1c109000.rdma: Adding to iommu group 0 [ 1.731526] mediatek-mdp-rdma 1c10a000.rdma: Adding to iommu group 0 [ 1.732505] mediatek-mdp-rdma 1c10b000.rdma: Adding to iommu group 0 [ 1.733329] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c104000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.734749] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c105000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.736182] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c106000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.737600] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c107000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.739016] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c108000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.740438] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c109000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.741855] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c10a000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.743271] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c10b000.rdma (ops mtk_mdp_rdma_component_ops) [ 1.744692] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c10c000.vpp-merge (ops mtk_disp_merge_component_ops) [ 1.746187] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c10d000.vpp-merge (ops mtk_disp_merge_component_ops) [ 1.747750] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c10e000.vpp-merge (ops mtk_disp_merge_component_ops) [ 1.749244] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c10f000.vpp-merge (ops mtk_disp_merge_component_ops) [ 1.750737] mediatek-disp-ovl-adaptor mediatek-disp-ovl-adaptor.12.auto: bound 1c114000.hdr-engine (ops mtk_ethdr_component_ops) [ 1.753904] clk: Disabling unused clocks [ 1.754984] ALSA device list: [ 1.755363] #0: Unknown-UnknownProduct- [ 1.758671] Freeing unused kernel memory: 11200K [ 1.766951] Checked W+X mappings: passed, no W+X pages found [ 1.767684] Run /init as init process [ 2.210059] pwm-backlight backlight-lcd1: supply power not found, using dummy regulator [ 2.210366] input: gpio-keys as /devices/platform/gpio-keys/input/input1 [ 2.261454] pwm-backlight backlight-lcd1: supply power not found, using dummy regulator [ 2.292666] input: mtk-pmic-keys as /devices/platform/soc/10024000.pwrap/10024000.pwrap:pmic/mtk-pmic-keys/input/input2 [ 2.298608] mtk_rng 1020f000.rng: registered RNG driver [ 2.298983] random: crng init done [ 2.303920] pwm-backlight backlight-lcd1: supply power not found, using dummy regulator [ 2.315706] pwm-backlight backlight-lcd1: supply power not found, using dummy regulator [ 2.320206] pwm-backlight backlight-lcd1: supply power not found, using dummy regulator [ 2.332250] dwmac-mediatek 11021000.ethernet: IRQ eth_wake_irq not found [ 2.333101] dwmac-mediatek 11021000.ethernet: IRQ eth_lpi not found [ 2.333980] dwmac-mediatek 11021000.ethernet: Cannot get CSR clock [ 2.334882] dwmac-mediatek 11021000.ethernet: User ID: 0x11, Synopsys ID: 0x51 [ 2.335830] dwmac-mediatek 11021000.ethernet: DWMAC4/5 [ 2.336488] dwmac-mediatek 11021000.ethernet: DMA HW capability register supported [ 2.337437] dwmac-mediatek 11021000.ethernet: RX Checksum Offload Engine supported [ 2.338385] dwmac-mediatek 11021000.ethernet: TX Checksum insertion supported [ 2.339691] dwmac-mediatek 11021000.ethernet: Wake-Up On Lan supported [ 2.340572] dwmac-mediatek 11021000.ethernet: TSO supported [ 2.341277] dwmac-mediatek 11021000.ethernet: Enabled L3L4 Flow TC (entries=4) [ 2.342184] dwmac-mediatek 11021000.ethernet: Enabled RFS Flow TC (entries=8) [ 2.343079] dwmac-mediatek 11021000.ethernet: Using 35 bits DMA width [ 2.460866] pwm-backlight backlight-lcd1: supply power not found, using dummy regulator [ 3.783422] raid6: neonx8 gen() 8612 MB/s [ 3.851424] raid6: neonx8 xor() 8107 MB/s [ 3.919510] raid6: neonx4 gen() 10291 MB/s [ 3.987513] raid6: neonx4 xor() 7681 MB/s [ 4.055526] raid6: neonx2 gen() 9282 MB/s [ 4.123421] raid6: neonx2 xor() 7594 MB/s [ 4.191420] raid6: neonx1 gen() 9636 MB/s [ 4.259421] raid6: neonx1 xor() 8693 MB/s [ 4.327420] raid6: int64x8 gen() 7131 MB/s [ 4.395423] raid6: int64x8 xor() 3870 MB/s [ 4.463423] raid6: int64x4 gen() 6970 MB/s [ 4.531421] raid6: int64x4 xor() 3816 MB/s [ 4.599421] raid6: int64x2 gen() 5798 MB/s [ 4.667421] raid6: int64x2 xor() 3169 MB/s [ 4.735420] raid6: int64x1 gen() 4605 MB/s [ 4.803514] raid6: int64x1 xor() 2560 MB/s [ 4.804060] raid6: using algorithm neonx4 gen() 10291 MB/s [ 4.804758] raid6: .... xor() 7681 MB/s, rmw enabled [ 4.805387] raid6: using neon recovery algorithm [ 4.811788] xor: measuring software checksum speed [ 4.813167] 8regs : 4335 MB/sec [ 4.814350] 32regs : 5239 MB/sec [ 4.815476] arm64_neon : 5726 MB/sec [ 4.816030] xor: using function: arm64_neon (5726 MB/sec) [ 4.817798] async_tx: api initialized (async) [ 4.952851] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes [ 5.098724] EXT4-fs (mmcblk0p9): INFO: recovery required on readonly filesystem [ 5.099692] EXT4-fs (mmcblk0p9): write access will be enabled during recovery [ 5.191278] EXT4-fs (mmcblk0p9): recovery complete [ 5.192382] EXT4-fs (mmcblk0p9): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. [ 5.591174] systemd[1]: System time before build time, advancing clock. [ 5.613243] systemd[1]: Inserted module 'autofs4' [ 5.652651] systemd[1]: systemd 249.11-0ubuntu3.12 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 5.658144] systemd[1]: Detected architecture arm64. [ 5.661009] systemd[1]: Hostname set to <mtk-genio>. [ 6.056015] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway. [ 6.144115] systemd[1]: /lib/systemd/system/snapd.service:23: Unknown key name 'RestartMode' in section 'Service', ignoring. [ 6.243539] systemd[1]: Queued start job for default target Graphical Interface. [ 6.246284] systemd[1]: Created slice Slice /system/modprobe. [ 6.247768] systemd[1]: Created slice Slice /system/serial-getty. [ 6.249002] systemd[1]: Created slice Slice /system/systemd-fsck. [ 6.250105] systemd[1]: Created slice User and Session Slice. [ 6.250981] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.252304] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 6.253631] systemd[1]: Reached target Slice Units. [ 6.254306] systemd[1]: Reached target Mounting snaps. [ 6.255007] systemd[1]: Reached target Swaps. [ 6.255665] systemd[1]: Reached target Local Verity Protected Volumes. [ 6.256634] systemd[1]: Listening on Device-mapper event daemon FIFOs. [ 6.257675] systemd[1]: Listening on LVM2 poll daemon socket. [ 6.258638] systemd[1]: Listening on multipathd control socket. [ 6.259640] systemd[1]: Listening on Syslog Socket. [ 6.260461] systemd[1]: Listening on fsck to fsckd communication Socket. [ 6.261448] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 6.262613] systemd[1]: Listening on Journal Audit Socket. [ 6.263528] systemd[1]: Listening on Journal Socket (/dev/log). [ 6.264530] systemd[1]: Listening on Journal Socket. [ 6.265454] systemd[1]: Listening on udev Control Socket. [ 6.266330] systemd[1]: Listening on udev Kernel Socket. [ 6.268340] systemd[1]: Mounting Huge Pages File System... [ 6.270363] systemd[1]: Mounting POSIX Message Queue File System... [ 6.272546] systemd[1]: Mounting Kernel Debug File System... [ 6.274624] systemd[1]: Mounting Kernel Trace File System... [ 6.278010] systemd[1]: Starting Journal Service... [ 6.280542] systemd[1]: Starting Set the console keyboard layout... [ 6.282731] systemd[1]: Starting Create List of Static Device Nodes... [ 6.284801] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... [ 6.286262] systemd[1]: Condition check resulted in LXD - agent being skipped. [ 6.288808] systemd[1]: Starting Load Kernel Module configfs... [ 6.291090] systemd[1]: Starting Load Kernel Module drm... [ 6.293862] systemd[1]: Starting Load Kernel Module efi_pstore... [ 6.296419] systemd[1]: Starting Load Kernel Module fuse... [ 6.299970] systemd[1]: Starting File System Check on Root Device... [ 6.306916] systemd[1]: Starting Load Kernel Modules... [ 6.309084] systemd[1]: Starting Coldplug All udev Devices... [ 6.311868] systemd[1]: Mounted Huge Pages File System. [ 6.312776] systemd[1]: Mounted POSIX Message Queue File System. [ 6.313726] systemd[1]: Mounted Kernel Debug File System. [ 6.314582] systemd[1]: Mounted Kernel Trace File System. [ 6.315850] systemd[1]: Finished Create List of Static Device Nodes. [ 6.317186] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 6.318438] systemd[1]: Finished Load Kernel Module configfs. [ 6.319615] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 6.320817] systemd[1]: Finished Load Kernel Module drm. [ 6.321929] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. [ 6.323187] systemd[1]: Finished Load Kernel Module efi_pstore. [ 6.324406] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 6.325580] systemd[1]: Finished Load Kernel Module fuse. [ 6.327647] systemd[1]: Mounting FUSE Control File System... [ 6.329723] systemd[1]: Mounting Kernel Configuration File System... [ 6.331335] misc dma_buf_te: dma_buf_te ready [ 6.331931] systemd[1]: Started File System Check Daemon to report status. [ 6.334234] systemd[1]: Finished File System Check on Root Device. [ 6.336293] systemd[1]: Finished Load Kernel Modules. [ 6.337233] systemd[1]: Mounted FUSE Control File System. [ 6.338108] systemd[1]: Mounted Kernel Configuration File System. [ 6.340195] systemd[1]: Starting Remount Root and Kernel File Systems... [ 6.342300] systemd[1]: Starting Apply Kernel Variables... [ 6.347036] systemd[1]: Started Journal Service. [ 6.353116] EXT4-fs (mmcblk0p9): re-mounted. Opts: discard,errors=remount-ro. Quota mode: none. [ 8.538814] mcp251xfd spi0.0 (unnamed net_device) (uninitialized): Failed to detect MCP2518FD (osc=0x00000000). [ 13.902240] RTL8211F Gigabit Ethernet stmmac-0:01: phy_poll_reset failed: -110 [ 13.907606] dwmac-mediatek 11021000.ethernet eth0: no phy found [ 13.912832] dwmac-mediatek 11021000.ethernet eth0: stmmac_open: Cannot attach to PHY (error: -19) [ 14.543298] RTL8211F Gigabit Ethernet stmmac-0:01: phy_poll_reset failed: -110 [ 14.547185] dwmac-mediatek 11021000.ethernet eth0: no phy found [ 14.550784] dwmac-mediatek 11021000.ethernet eth0: stmmac_open: Cannot attach to PHY (error: -19) [ 15.200645] RTL8211F Gigabit Ethernet stmmac-0:01: phy_poll_reset failed: -110 [ 15.207683] dwmac-mediatek 11021000.ethernet eth0: no phy found [ 15.215809] dwmac-mediatek 11021000.ethernet eth0: stmmac_open: Cannot attach to PHY (error: -19) [ 15.873975] RTL8211F Gigabit Ethernet stmmac-0:01: phy_poll_reset failed: -110 [ 15.880452] dwmac-mediatek 11021000.ethernet eth0: no phy found [ 15.886315] dwmac-mediatek 11021000.ethernet eth0: stmmac_open: Cannot attach to PHY (error: -19) [ 16.553779] RTL8211F Gigabit Ethernet stmmac-0:01: phy_poll_reset failed: -110 [ 16.565853] dwmac-mediatek 11021000.ethernet eth0: no phy found [ 16.577531] dwmac-mediatek 11021000.ethernet eth0: stmmac_open: Cannot attach to PHY (error: -19) Ubuntu 22.04.5 LTS 
mtk-genio ttyS0 mtk-genio login: 
相关推荐
好奇的菜鸟8 小时前
如何在 Ubuntu 24.04 (Noble) 上使用阿里源
linux·运维·ubuntu
好奇的菜鸟11 小时前
如何在Ubuntu上检查MySQL是否启动并放开3306端口
mysql·ubuntu·adb
ZPC821014 小时前
ubuntu 6.8.0 安装xenomai3.3
linux·运维·ubuntu
电脑能手15 小时前
遇到该问题:kex_exchange_identification: read: Connection reset`的解决办法
linux·ubuntu·ssh
snoopyfly~15 小时前
Ubuntu 24.04 安装配置 Redis 7.0 开机自启
linux·redis·ubuntu
精英的英15 小时前
在Ubuntu 24.04主机上创建Ubuntu 14.04编译环境的完整指南
linux·运维·ubuntu
奇妙之二进制16 小时前
计算机科学导论(10)什么是BIOS
ubuntu·计算机基础
岁月玲珑16 小时前
【如何判断Linux系统是Ubuntu还是CentOS】
linux·ubuntu·centos
Kevin不想说话9261917 小时前
Ubuntu 24.04 安装搜狗输入法完整教程
ubuntu
矩阵老炮21 小时前
Ubuntu20.4编译AOSP源码实践
ubuntu·aosp