Skip to content

Instantly share code, notes, and snippets.

@mbohun
Last active August 7, 2026 19:57
Show Gist options
  • Select an option

  • Save mbohun/10dab097eb0cbf9b11f175a8fc622b81 to your computer and use it in GitHub Desktop.

Select an option

Save mbohun/10dab097eb0cbf9b11f175a8fc622b81 to your computer and use it in GitHub Desktop.
Motorola Edge 30, motorola-dubai, postmarketOS

INSTALLING postmarketOS on Motorola Edge 30

dmesg -T

mbohun@orangepi5pro:~$ dmesg -T
...
[Wed Jul 22 20:47:23 2026] usb 1-1: new high-speed USB device number 3 using xhci-hcd
[Wed Jul 22 20:47:23 2026] usb 1-1: New USB device found, idVendor=22b8, idProduct=2e81, bcdDevice= 5.04
[Wed Jul 22 20:47:23 2026] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[Wed Jul 22 20:47:23 2026] usb 1-1: Product: motorola edge 30
[Wed Jul 22 20:47:23 2026] usb 1-1: Manufacturer: motorola
[Wed Jul 22 20:47:23 2026] usb 1-1: SerialNumber: ZY22G4PPWC

prerequirements

  • check if you have adb and fastboot installed
mbohun@orangepi5pro:~$ sudo apt install android-sdk-platform-tools-common
mbohun@orangepi5pro:~$ cd /etc/udev/rules.d/
mbohun@orangepi5pro:~$ sudo cp /lib/udev/rules.d/51-android.rules .
mbohun@orangepi5pro:~$ ls -lahF

# 0x22b8 is Motorola 
mbohun@orangepi5pro:~$ grep 22b8 51-android.rules 
mbohun@orangepi5pro:~$ sudo chmod a+r /etc/udev/rules.d/51-android.rules
mbohun@orangepi5pro:~$ sudo udevadm control --reload-rules
mbohun@orangepi5pro:~$ sudo udevadm trigger

adb --version

mbohun@orangepi5pro:~$ adb --version
Android Debug Bridge version 1.0.41
Version 34.0.4-debian
Installed as /usr/lib/android-sdk/platform-tools/adb
Running on Linux 6.1.115-vendor-rk35xx (aarch64)

adb devices

mbohun@orangepi5pro:~$ adb devices
List of devices attached
ZY22G4PPWC      device

fastboot

mbohun@orangepi5pro:~$ fastboot --version
fastboot version 34.0.4-debian
Installed as /usr/lib/android-sdk/platform-tools/fastboot

fastboot devices

mbohun@orangepi5pro:~$ fastboot devices
ZY22G4PPWC       fastboot

fastboot oem get_unlock_data

mbohun@orangepi5pro:~$ fastboot oem get_unlock_data
(bootloader) Unlock data:
(bootloader) 3A__REMOVED_REMOVED_REMOVED__50
(bootloader) 50__REMOVED_REMOVED_REMOVED__35
(bootloader) 4B__REMOVED_REMOVED_REMOVED__A7
(bootloader) 9B__REMOVED_REMOVED_REMOVED__#5
(bootloader) 65__REMOVED_REMOVED_REMOVED__00
OKAY [  0.028s]
Finished. Total time: 0.028s

fastboot oem unlock $UNLOCK_CODE

mbohun@orangepi5pro:~$ fastboot oem unlock $UNLOCK_CODE
(bootloader) Already unlocked
FAILED (remote: '')
fastboot: error: Command failed

UNLOCKED

  • The unlocked bootloader is showing "Panel" info, this is required by pmboostrap
  • My "Panel" is: csot

pmbootstrap

pmbootstrap init

mbohun@orangepi5pro:~$ pmbootstrap init

pmbootstrap install

mbohun@orangepi5pro:~$ pmbootstrap install

Disable AVB

mbohun@orangepi5pro:~$ pmbootstrap flasher flash_vbmeta
[22:44:17] (native) flash vbmeta.img with verity disabled flag
[22:44:18] (native) install android-tools
Sending 'vbmeta_b' (4 KB)                          OKAY [  0.001s]
Writing 'vbmeta_b'                                 (bootloader) WARNING: vbmeta_b anti rollback downgrade, 0 vs 21
OKAY [  0.114s]
Finished. Total time: 0.121s
[22:44:20] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
[22:44:20] DONE!

Erase Android-specific DTB Overlays

  • NOTE: "You can't just fastboot erase dtbo because of Motorola's creative decisions :) Instead, create a blank file and flash it:"
mbohun@orangepi5pro:~$ dd if=/dev/zero of=blank.dtbo.img bs=25165824 count=1
1+0 records in
1+0 records out
25165824 bytes (25 MB, 24 MiB) copied, 0.0529354 s, 475 MB/s

mbohun@orangepi5pro:~$ fastboot flash dtbo blank.dtbo.img
Sending 'dtbo_b' (24576 KB)                        OKAY [  0.743s]
Writing 'dtbo_b'                                   OKAY [  0.070s]
Finished. Total time: 0.819s
mbohun@orangepi5pro:~$ 

pmbootstrap flasher flash_kernel

mbohun@orangepi5pro:~$ pmbootstrap flasher flash_kernel
[22:54:00] (rootfs_motorola-dubai) install device-motorola-dubai device-motorola-dubai-kernel-csot
[22:54:01] (rootfs_motorola-dubai) install postmarketos-mkinitfs
[22:54:02] (rootfs_motorola-dubai) mkinitfs
[22:54:11] (native) flash kernel postmarketos-qcom-sc7280
[22:54:11] (native) install android-tools
Sending 'boot_b' (27928 KB)                        OKAY [  0.701s]
Writing 'boot_b'                                   OKAY [  0.056s]
Finished. Total time: 0.804s
[22:54:13] You will get an IP automatically assigned to your USB interface shortly.
[22:54:13] Then you can connect to your device using ssh after pmOS has booted:
[22:54:13] ssh user@172.16.42.1
[22:54:13] NOTE: If you enabled full disk encryption, you should make sure that Unl0kr has been properly configured for your device
[22:54:13] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
[22:54:13] DONE!

pmbootstrap flasher flash_rootfs WORKAROUND

⚠️ THIS WORKAROUND part is for pmbootstrap flasher flash_rootfs ONLY !!!

  • ⚠️ DON'T run any other pmbootstrap commands while in the fastboot mode; this is only to run pmbootstrap flasher flash_rootfs from the fastboot mode!

As of "now" (2026-07-23) you can't simply run pmbootstrap flasher flash_rootfs.

The following steps are describing a workaround:

  1. Change the active slot. There are two slots: a and b. Use fastboot getvar current-slot to get the currently active slot, and then change the active slot to the other one:
    • if the current active slot is a, change it to b
    • if the current active slot is b, change it to a

example:

mbohun@orangepi5pro:~$ fastboot getvar current-slot
current-slot: a
Finished. Total time: 0.000s
mbohun@orangepi5pro:~$ 
mbohun@orangepi5pro:~$ fastboot set_active b                                                                                                                                                                                                        
Setting current slot to 'b'                        OKAY [  0.295s]
Finished. Total time: 0.295s
  1. Download and flash the following LineageOS files:
mbohun@orangepi5pro:~$ fastboot flash boot boot.img                                                                          Sending 'boot_b' (98304 KB)                        OKAY [  3.633s]
Writing 'boot_b'                                   OKAY [  1.627s]
Finished. Total time: 5.264s

mbohun@orangepi5pro:~/LineageOS/test$ fastboot flash dtbo dtbo.img
Sending 'dtbo_b' (24576 KB)                        OKAY [  5.701s]
Writing 'dtbo_b'                                   OKAY [  0.157s]
Finished. Total time: 6.012s

mbohun@orangepi5pro:~/LineageOS/test$ fastboot flash vendor_boot vendor_boot.img
Sending 'vendor_boot_b' (98304 KB)                 OKAY [  3.097s]
Writing 'vendor_boot_b'                            OKAY [  0.281s]
Finished. Total time: 3.380s
  1. REBOOT to fastboot:
mbohun@orangepi5pro:~/LineageOS/test$ fastboot reboot fastboot

  1. Now while in fastboot (resume the pmOS installation and) flash the postmarketOS rootfs:
mbohun@orangepi5pro:~$ pmbootstrap flasher flash_rootfs
[18:54:45] (native) flash rootfs image
[18:54:46] (native) install android-tools
[sudo] password for mbohun: 
Warning: skip copying userdata image avb footer due to sparse image.
Sending sparse 'userdata' 1/9 (258224 KB)          OKAY [  7.912s]
Writing 'userdata'                                 OKAY [  2.565s]
Sending sparse 'userdata' 2/9 (260615 KB)          OKAY [  7.597s]
Writing 'userdata'                                 OKAY [  2.124s]
Sending sparse 'userdata' 3/9 (236806 KB)          OKAY [  6.634s]
Writing 'userdata'                                 OKAY [  1.555s]
Sending sparse 'userdata' 4/9 (237517 KB)          OKAY [  6.167s]
Writing 'userdata'                                 OKAY [  0.552s]
Sending sparse 'userdata' 5/9 (255818 KB)          OKAY [  6.829s]
Writing 'userdata'                                 OKAY [  0.993s]
Sending sparse 'userdata' 6/9 (261909 KB)          OKAY [  6.869s]
Writing 'userdata'                                 OKAY [  0.903s]
Sending sparse 'userdata' 7/9 (257196 KB)          OKAY [  6.933s]
Writing 'userdata'                                 OKAY [  1.695s]
Sending sparse 'userdata' 8/9 (262014 KB)          OKAY [  7.198s]
Writing 'userdata'                                 OKAY [  2.549s]
Sending sparse 'userdata' 9/9 (79459 KB)           OKAY [  2.104s]
Writing 'userdata'                                 OKAY [  0.553s]
Finished. Total time: 74.839s
[18:56:18] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
[18:56:18] DONE!
mbohun@orangepi5pro:~$ 
  1. Set active slot back to what was it set to before this WORKAROUND:
mbohun@orangepi5pro:~$ fastboot set_active a                                                                                                                                                                                                        
Setting current slot to 'a'                        OKAY [  0.295s]
Finished. Total time: 0.295s

pmbootstrap shutdown

  • In fastboot mode:
mbohun@orangepi5pro:~$ pmbootstrap shutdown
[sudo] password for mbohun: 
[14:45:17] DONE!
  1. REBOOT
mbohun@orangepi5pro:~$ fastboot reboot
Rebooting                                          OKAY [  0.000s]
Finished. Total time: 0.151s

REFERENCES:

@mbohun

mbohun commented Jul 22, 2026

Copy link
Copy Markdown
Author
mbohun@orangepi5pro:~$ pmbootstrap init
[22:07:33] Location of the 'work' path. Multiple chroots (native, device arch, device rootfs) will be created in there.
[22:07:33] Work path [/home/mbohun/.local/var/pmbootstrap]: 
[22:07:38] Location of the 'pmaports' path, containing package definitions.
[22:07:38] pmaports path [/home/mbohun/.local/var/pmbootstrap/cache_git/pmaports]: 
[22:07:39] Choose the postmarketOS release channel.
[22:07:39] Available (14):
[22:07:39] * edge: Rolling release / Most devices / Occasional breakage: https://postmarketos.org/edge
[22:07:39] * v26.06: Latest release / Recommended for best stability
[22:07:39] * v25.12: Old release (supported until 2026-07-31)
[22:07:39] Channel [edge]: 
[22:07:41] NOTE: pmaports is on main branch, copying git hooks.
[22:07:41] Choose your target device vendor (either an existing one, or a new one for porting).
[22:07:41] Available vendors (107): acer, alcatel, amazon, amediatech, amlogic, apple, ark, arrow, asus, ayaneo, ayn, bananapi, barnesnoble, beelink, blackberry, bq, clockworkpi, cubietech, cutiepi, dell, dongshanpi, epson, essential, fairphone, finepower, fly, fxtec, generic, goclever, google, gp, hisense, hp, htc, huawei, inet, infocus, jolla, khadas, klipad, kobo, lark, leeco, lenovo, lg, librecomputer, linksys, lynx, mangopi, medion, meizu, microsoft, mnt, mobvoi, motorola, nextbit, nobby, nokia, nothing, nvidia, odroid, oneplus, oppo, ouya, pine64, planet, pocketbook, postmarketos, powkiddy, purism, qcom, qemu, qualcomm, radxa, raspberry, realme, rockchip, samsung, semc, sharp, shift, sipeed, solidrun, sony, sourceparts, sqfmi, starway, surftab, t2m, thundercomm, tokio, tolino, trekstor, valve, vernee, vivo, volla, wd, wexler, wiko, wileyfox, xiaomi, xunlong, yu, zhihe, zte, zuk
[22:07:41] Vendor [qemu]: motorola
[22:07:53] Devices are categorised as follows, from best to worst:
* Main: ports where mostly everything works.
* Community: often mostly usable, but may lack important functionality.
* Testing: anything from "just boots in some sense" to almost fully functioning ports.
* Downstream: ports that use a downstream kernel — very limited functionality. Not recommended.

Available devices by codename (1): dubai (testing)
[22:07:53] Device codename: dubai
[22:08:01] Which kernel do you want to use with your device?
[22:08:01] Available kernels (2):
[22:08:01] * csot: CSOT Panel. To know which panel your device uses, boot the device in fastboot mode after unlocking bootloader and read the 'Panel' string
[22:08:01] * tianma: Tianma Panel. To know which panel your device uses, boot the device in fastboot mode after unlocking bootloader and read the 'Panel' string
[22:08:01] Kernel [csot]: 
[22:08:34] Username [user]: 
[22:08:39] Available providers for postmarketos-base-ui-audio-backend (2):
[22:08:39] * pulseaudio: Use pulseaudio as the audio backend. (default)
[22:08:39] * pipewire: Use pipewire as the audio backend. (but may not work with all devices)
[22:08:39] Provider [default]: 
[22:09:10] Available providers for postmarketos-base-ui-wifi (2):
[22:09:10] * wpa_supplicant: Use wpa_supplicant as the WiFi backend. (default)
[22:09:10] * iwd: Use iwd as the WiFi backend (but may not work with all devices)
[22:09:10] Provider [default]: 
[22:09:18] Available providers for postmarketos-usb-moded-default-profile (2):
[22:09:18] * developer: Make 'developer mode' the default usb-moded profile (always enables usb networking) (default)
[22:09:18] * charging: Make 'charging mode' the default usb-moded profile (usb networking must be manually enabled)
[22:09:18] Provider [default]: 
[22:09:46] Available user interfaces (30): 
[22:09:46] * none: Bare minimum OS image for testing and manual customization. The "console" UI should be selected if a graphical UI is not desired.
[22:09:46] * buffyboard: Plain framebuffer console with modern touchscreen keyboard support
[22:09:46] * cage: (Wayland) Kiosk WM
[22:09:46] * console: Console environment, with no graphical/touch UI
[22:09:46] * cosmic: COSMIC Desktop Environment from System76
[22:09:46] * fbkeyboard: Plain framebuffer console with touchscreen keyboard support
[22:09:46] * gnome: (Wayland) Gnome Shell
[22:09:46] * gnome-mobile: (Wayland) Gnome Shell patched to adapt better to phones (Experimental)
[22:09:46] * i3wm: (X11) Tiling WM (keyboard required)
[22:09:46] * kodi: (GBM) 10-foot UI useful on TV's
[22:09:46] * lomiri: (Wayland) The convergent desktop environment (Experimental)
[22:09:46] * lxqt: (X11) Lightweight Qt Desktop Environment (stylus recommended)
[22:09:46] * mate: (X11) MATE Desktop Environment, fork of GNOME2 (stylus recommended)
[22:09:46] * moonlight: (Wayland) Open Source PC client for NVIDIA GameStream, as used by the NVIDIA Shield
[22:09:46] * niri: (Wayland) A scrollable-tiling compositor (DOES NOT RUN WITHOUT HW ACCELERATION!)
[22:09:46] * openbox: (X11) A highly configurable and lightweight X11 window manager (keyboard required)
[22:09:46] * os-installer: UI for installing postmarketOS
[22:09:46] * phosh: (Wayland) Mobile UI using GNOME components and apps
[22:09:46] * plasma-bigscreen: (Wayland) 10-feet variant of Plasma, made for big screen TVs
[22:09:46] * plasma-desktop: (Wayland) KDE Desktop Environment (works well with tablets)
[22:09:46] * plasma-mobile: (Wayland) Mobile variant of KDE Plasma
[22:09:46] * retroarch: RetroArch in KMS mode
[22:09:46] * shelli: Plain console with touchscreen gesture support
[22:09:46] * sway: (Wayland) Tiling WM, drop-in replacement for i3wm
[22:09:46] * sxmo-de-dwm: Simple Mobile: Mobile environment based on SXMO and running on dwm
[22:09:46] * sxmo-de-i3: Simple Mobile: Mobile environment based on SXMO and running on i3
[22:09:46] * sxmo-de-river: Simple Mobile: Mobile environment based on SXMO and running on river
[22:09:46] * sxmo-de-sway: Simple Mobile: Mobile environment based on SXMO and running on sway
[22:09:46] * weston: (Wayland) Reference compositor (demo, not a phone interface)
[22:09:46] * windowmaker: (X11) Window manager inspired by the NeXTSTEP user interface (stylus recommended)
[22:09:46] * xfce4: (X11) Lightweight desktop (stylus recommended)
[22:09:46] User interface [console]: phosh
[22:11:06] Based on your UI selection, 'default' will result in choosing systemd.
[22:11:06] Which service manager should be used? (default/openrc/systemd) [default]: 
[22:11:21] Additional options: extra free space: 0 MB, boot partition size: 512 MB, parallel jobs: 8, ccache per arch: 5G, sudo timer: False, mirror: http://mirror.postmarketos.org/postmarketos/
[22:11:21] Change them? (y/n) [n]: 
[22:12:04] Additional packages that will be installed to rootfs. Specify them in a comma separated list (e.g.: vim,file) or "none"
[22:12:04] Extra packages [none]: 
[22:12:26] Your host timezone: Europe/Prague
[22:12:26] Use this timezone instead of GMT? (y/n) [y]: 
[22:12:40] Choose your preferred locale, like e.g. en_US. Only UTF-8 is supported, it gets appended automatically. Use tab-completion if needed.
[22:12:40] Locale [en_US]: 
[22:12:44] Device hostname (short form, e.g. 'foo') [motorola-dubai]: 
[22:12:51] SSH public keys found (1):
[22:12:51] * /home/mbohun/.ssh/id_ed25519.pub
[22:12:51] See https://postmarketos.org/ssh-key-glob for more information.
[22:12:51] Would you like to copy these public keys to the device? (y/n) [n]: 
[22:13:12] After pmaports are changed, the binary packages may be outdated. If you want to install postmarketOS without changes, reply 'n' for a faster installation.
[22:13:12] Build outdated packages during 'pmbootstrap install'? (y/n) [y]: n
[22:13:46] Zap existing chroots to apply configuration? (y/n) [y]: 
[sudo] password for mbohun: 
[22:14:03] DONE!
mbohun@orangepi5pro:~$ 

@mbohun

mbohun commented Jul 22, 2026

Copy link
Copy Markdown
Author
mbohun@orangepi5pro:~$ pmbootstrap install
Choose a password for the user 'user': 
Confirm password for 'user': 
[22:32:12] *** (1/4) PREPARE NATIVE CHROOT ***
[sudo] password for mbohun: 
[22:32:26] Update package index for aarch64 (5 file(s))
[22:32:28] Download http://dl-cdn.alpinelinux.org/alpine/edge/main/aarch64/apk-tools-static-3.0.6-r0.apk
[22:32:29] (native) Creating chroot
[22:32:35] (native) install cryptsetup util-linux parted
[22:32:38] *** (2/4) CREATE DEVICE ROOTFS ("motorola-dubai") ***
[22:32:39] (rootfs_motorola-dubai) Creating chroot
[22:32:49] (rootfs_motorola-dubai) install postmarketos-base-systemd
[22:33:12] (rootfs_motorola-dubai) install postmarketos-base device-motorola-dubai postmarketos-ui-phosh device-motorola-dubai-kernel-csot postmarketos-base-nofde sudo-rs phosh-mobile-settings phosh-tour cups decibels firefox-esr flatpak fprintd g4music gnome-calculator gnome-calendar gnome-clocks gnome-console gnome-contacts gnome-maps gnome-text-editor gnome-user-share gnome-weather gst-libav gst-plugins-bad gst-plugins-good gst-plugins-rs-dav1d gvfs-full loupe nautilus papers rygel showtime snapshot tuned-ppd font-droid font-droid-nonlatin font-twemoji lang font-droid font-droid-nonlatin font-twemoji lang calls chatty lpa-gtk mobile-config-firefox postmarketos-tweaks-setting-definitions ttyescape vvmd
[22:36:25] (rootfs_motorola-dubai) install postmarketos-mkinitfs
[22:36:26] (rootfs_motorola-dubai) mkinitfs
[22:36:33]  *** SET LOGIN PASSWORD FOR: 'user' ***
[22:36:33] NOTE: No valid keymap specified for device
[22:36:37] *** (3/4) PREPARE INSTALL BLOCKDEVICE ***
[22:36:38] (native) create motorola-dubai.img (3174M)
[22:36:38] (native) mount /dev/install (motorola-dubai.img)
[22:36:39] (native) partition /dev/install (boot: 512M)
[22:36:39] Mounting partitions of /dev/loop9 inside the chroot
[22:36:39] (native) install e2fsprogs
[22:36:40] (native) format /dev/installp2 (pmOS_root, ext4)
[22:36:40] (native) mount /dev/installp2 to /mnt/install
[22:36:41] (native) install dosfstools
[22:36:41] (native) format /dev/installp1 (pmOS_boot, fat32)
[22:36:43] (native) create /etc/fstab
[22:36:43] (rootfs_motorola-dubai) mkinitfs
[22:36:49] *** (4/4) FILL INSTALL BLOCKDEVICE ***
[22:36:49] (native) copy rootfs_motorola-dubai to /mnt/install/
[22:38:15] (native) make sparse rootfs
[22:38:15] (native) install android-tools
[22:39:36] 
[22:39:36] *** FLASHING INFORMATION ***
[22:39:36] Run the following to flash your installation to the target device:
[22:39:36] * pmbootstrap flasher flash_rootfs
[22:39:36]   Flashes the generated rootfs image to your device:
[22:39:36]   /home/mbohun/.local/var/pmbootstrap/chroot_native/home/pmos/rootfs/motorola-dubai.img
[22:39:36]   (NOTE: This file has a partition table, which contains /boot and / subpartitions. That way we don't need to change the partition layout on your device.)
[22:39:36] * pmbootstrap flasher flash_vbmeta
[22:39:36]   Flashes vbmeta image with verification disabled flag.
[22:39:36] * pmbootstrap flasher flash_dtbo
[22:39:36]   Flashes dtbo image.
[22:39:36] * pmbootstrap flasher flash_kernel
[22:39:36]   Flashes the kernel + initramfs to your device:
[22:39:36]   /home/mbohun/.local/var/pmbootstrap/chroot_rootfs_motorola-dubai/boot
[22:39:36]   (NOTE: fastboot also supports booting the kernel/initramfs directly without flashing. Use 'pmbootstrap flasher boot' to do that.)
[22:39:36] * If the above steps do not work, you can also create symlinks to the generated files with 'pmbootstrap export' and flash outside of pmbootstrap.
[22:39:36] 
[22:39:36] *** SSH DAEMON INFORMATION ***
[22:39:36] SSH daemon is enabled (disable with --no-sshd).
[22:39:36] Login as 'user' with the password given during installation.
[22:39:36] 
[22:39:36] *** FIREWALL INFORMATION ***
[22:39:36] Firewall is enabled, but will not work (no support in kernel config for nftables).
[22:39:36] If/when the kernel supports it in the future, it will work automatically.
[22:39:36] For more information: https://postmarketos.org/firewall
[22:39:36] 
[22:39:36] NOTE: chroot is still active (use 'pmbootstrap shutdown' as necessary)
[22:39:36] DONE!
mbohun@orangepi5pro:~$

@mbohun

mbohun commented Jul 22, 2026

Copy link
Copy Markdown
Author

FIRST boot after successfully installed pmOS on Motorola Edge 30

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.000000] Linux version 7.1.2 (pmos@build) (Alpine clang version 22.1.8, LLD 22.1.8) #1-postmarketos-qcom-sc7280 SMP PREEMPT Mon Jul 13 21:02:06 UTC 
[    0.000000] KASLR enabled
[    0.000000] random: crng init done
[    0.000000] Machine model: Motorola Edge 30 (CSOT)
[    0.000000] efi: UEFI not found.
[    0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader!
[    0.000000] Reserved memory: created CMA memory pool at 0x0000000278000000, size 128 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x0000000278000000..0x000000027fffffff (131072 KiB) map reusable linux,cma
[    0.000000] OF: reserved mem: 0x00000000004cd000..0x00000000004cdfff (4 KiB) nomap non-reusable wlan-ce@4cd000
[    0.000000] OF: reserved mem: 0x0000000080000000..0x00000000805fffff (6144 KiB) nomap non-reusable hyp@80000000
[    0.000000] OF: reserved mem: 0x0000000080600000..0x00000000807fffff (2048 KiB) nomap non-reusable xbl@80600000
[    0.000000] OF: reserved mem: 0x0000000080800000..0x000000008085ffff (384 KiB) nomap non-reusable aop@80800000
[    0.000000] OF: reserved mem: 0x0000000080860000..0x000000008087ffff (128 KiB) nomap non-reusable aop-cmd-db@80860000
[    0.000000] OF: reserved mem: 0x0000000080884000..0x0000000080893fff (64 KiB) nomap non-reusable xbl-uefi-res@80880000
[    0.000000] OF: reserved mem: 0x00000000808ff000..0x00000000808fffff (4 KiB) nomap non-reusable sec-apps@808ff000
[    0.000000] OF: reserved mem: 0x0000000080900000..0x0000000080afffff (2048 KiB) nomap non-reusable smem@80900000
[    0.000000] OF: reserved mem: 0x0000000080b00000..0x0000000080bfffff (1024 KiB) nomap non-reusable cpucp@80b00000
[    0.000000] OF: reserved mem: 0x0000000080c00000..0x00000000817fffff (12288 KiB) nomap non-reusable wlan-fw@80c00000
[    0.000000] OF: reserved mem: 0x0000000086700000..0x0000000088efffff (40960 KiB) nomap non-reusable adsp@86700000
[    0.000000] OF: reserved mem: 0x000000008b200000..0x000000008b6fffff (5120 KiB) nomap non-reusable video@8b200000
[    0.000000] OF: reserved mem: 0x0000000088f00000..0x000000008acfffff (30720 KiB) nomap non-reusable cdsp@88f00000
[    0.000000] OF: reserved mem: 0x000000008b700000..0x000000008b70ffff (64 KiB) nomap non-reusable ipa-fw@8b700000
[    0.000000] OF: reserved mem: 0x000000008b71a000..0x000000008b71bfff (8 KiB) nomap non-reusable zap@8b71a000
[    0.000000] OF: reserved mem: 0x000000008b800000..0x000000009adfffff (251904 KiB) nomap non-reusable mpss@8b800000
[    0.000000] OF: reserved mem: 0x000000009ae00000..0x000000009c6fffff (25600 KiB) nomap non-reusable wpss@9ae00000
[    0.000000] OF: reserved mem: 0x000000009c900000..0x000000009cb7ffff (2560 KiB) nomap non-reusable rmtfs@9c900000
[    0.000000] OF: reserved mem: 0x000000009cb80000..0x000000009d37ffff (8192 KiB) nomap non-reusable adsp-rpc-remote-heap@9cb80000
[    0.000000] OF: reserved mem: 0x00000000ae000000..0x00000000ae0bffff (768 KiB) map non-reusable ramoops@ae000000
[    0.000000] OF: reserved mem: 0x00000000c0000000..0x00000000c50fffff (82944 KiB) nomap non-reusable removed@c0000000
[    0.000000] OF: reserved mem: 0x00000000e1000000..0x00000000e19e33ff (10125 KiB) nomap non-reusable framebuffer@e1000000
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x000000027fffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x277023c00-0x2770263ff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: MIGRATE_INFO_TYPE not supported.
[    0.000000] psci: SMC Calling Convention v1.0
[    0.000000] psci: OSI mode supported.
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000027fffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x000000008087ffff]
[    0.000000]   node   0: [mem 0x0000000080880000-0x0000000080883fff]
[    0.000000]   node   0: [mem 0x0000000080884000-0x0000000080893fff]
[    0.000000]   node   0: [mem 0x0000000080894000-0x00000000808fefff]
[    0.000000]   node   0: [mem 0x00000000808ff000-0x00000000817fffff]
[    0.000000]   node   0: [mem 0x0000000081800000-0x00000000866fffff]
[    0.000000]   node   0: [mem 0x0000000086700000-0x000000008acfffff]
[    0.000000]   node   0: [mem 0x000000008ad00000-0x000000008b1fffff]
[    0.000000]   node   0: [mem 0x000000008b200000-0x000000008b70ffff]
[    0.000000]   node   0: [mem 0x000000008b710000-0x000000008b719fff]
[    0.000000]   node   0: [mem 0x000000008b71a000-0x000000008b71bfff]
[    0.000000]   node   0: [mem 0x000000008b71c000-0x000000008b7fffff]
[    0.000000]   node   0: [mem 0x000000008b800000-0x000000009c6fffff]
[    0.000000]   node   0: [mem 0x000000009c700000-0x000000009c8fffff]
[    0.000000]   node   0: [mem 0x000000009c900000-0x000000009d37ffff]
[    0.000000]   node   0: [mem 0x000000009d380000-0x00000000b96fffff]
[    0.000000]   node   0: [mem 0x00000000c0000000-0x00000000c50fffff]
[    0.000000]   node   0: [mem 0x00000000c5100000-0x00000000e0ffffff]
[    0.000000]   node   0: [mem 0x00000000e1000000-0x00000000e19e2fff]
[    0.000000]   node   0: [mem 0x00000000e19e4000-0x000000027fffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000027fffffff]
[    0.000000] On node 0, zone DMA: 26880 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.000000] percpu: Embedded 35 pages/cpu s103256 r8192 d31912 u143360
[    0.000000] pcpu-alloc: s103256 r8192 d31912 u143360 alloc=35*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GICv3 CPU interface
[    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: Broken broadcast TLBI completion
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: quiet splash plymouth.ignore-serial-consoles plymouth.prefer-fbcon pmos_boot_uuid=9D9D-92CA pmos_root_uuid=cbe8b95d-9eb1-4420-98cb-c4ddddb5c92d pmos_rootfsopts=defaults quiet androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.bootdevice=1d84000.ufshc androidboot.fstab_suffix=default androidboot.boot_devices=soc/1d84000.ufshc androidboot.serialno=ZY22G4PPWC androidboot.device=dubai androidboot.revision=pvt androidboot.hwrev=0xC000 androidboot.radio=ROW androidboot.powerup_reason=0x00004000 androidboot.bootreason=reboot msm_poweroff.download_mode=0 wifimacaddr=68:87:1C:E9:6D:60,68:87:1C:E9:6D:61 androidboot.btmacaddr=68:87:1C:E9:6D:5F androidboot.bootloader=MBM-3.0-dubai_g-1efa3bc7d46-240320 androidboot.carrier=reteu androidboot.hardware.sku=XT2203-1 androidboot.mode=normal androidboot.baseband=msm msm_drm.dsi_display0=qcom,mdss_dsi_mot_csot_nt37701_655_1080x2400_dsc_cmd_v1:timing1: androidboot.slot_suffix=_b rootwait ro init=/init androidboot.force_normal_boot=1 \
[    0.000000] Kernel command line: storage_mfrid=0x1CE androidboot.secure_hardware=1 androidboot.cid=0x0032 androidboot.write_protect=0 androidboot.bl_state=2 androidboot.ssm_data=0000000000015551
[    0.000000] Unknown kernel command line parameters "pmos_boot_uuid=9D9D-92CA pmos_root_uuid=cbe8b95d-9eb1-4420-98cb-c4ddddb5c92d pmos_rootfsopts=defaults wifimacaddr=68:87:1C:E9:6D:60,68:87:1C:E9:6D:61 storage_mfrid=0x1CE", will be passed to user space.
[    0.000000] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] software IO TLB: area num 8.
[    0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
[    0.000000] Fallback order for Node 0: 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2070271
[    0.000000] Policy zone: Normal
[    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] ftrace: allocating 49811 entries in 195 pages
[    0.000000] ftrace: allocated 195 pages with 4 groups
[    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] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[    0.000000] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: 988 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: GICD_CTLR.DS=1, SCR_EL3.FIQ=0
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 timer running at 19.20MHz (virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.000000] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[    0.000271] Console: colour dummy device 80x25
[    0.000282] printk: legacy console [tty0] enabled
[    0.000436] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
[    0.000449] pid_max: default: 32768 minimum: 301
[    0.000633] Yama: becoming mindful.
[    0.001148] LSM support for eBPF active
[    0.001263] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.001286] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.001567] VFS: Finished mounting rootfs on nullfs
[    0.003687] rcu: Hierarchical SRCU implementation.
[    0.003693] rcu: 	Max phase no-delay instances is 1000.
[    0.003875] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.004564] EFI services will not be available.
[    0.004881] smp: Bringing up secondary CPUs ...
[    0.005815] Detected VIPT I-cache on CPU1
[    0.005979] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[    0.006068] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    0.007070] Detected VIPT I-cache on CPU2
[    0.007224] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[    0.007299] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    0.008215] Detected VIPT I-cache on CPU3
[    0.008357] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[    0.008425] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    0.010545] CPU features: detected: Spectre-v4
[    0.010565] CPU features: detected: Spectre-BHB
[    0.010578] CPU features: detected: SSBS not fully self-synchronizing
[    0.010666] Detected PIPT I-cache on CPU4
[    0.010927] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[    0.011065] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[    0.012304] Detected PIPT I-cache on CPU5
[    0.012586] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[    0.012730] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[    0.014037] Detected PIPT I-cache on CPU6
[    0.014320] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[    0.014462] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[    0.016679] Detected PIPT I-cache on CPU7
[    0.016808] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[    0.016877] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[    0.016975] smp: Brought up 1 node, 8 CPUs
[    0.016995] SMP: Total of 8 processors activated.
[    0.017000] CPU: All CPU(s) started at EL1
[    0.017012] CPU features: detected: 32-bit EL0 Support
[    0.017017] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.017022] CPU features: detected: Common not Private translations
[    0.017026] CPU features: detected: CRC32 instructions
[    0.017033] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.017038] CPU features: detected: LSE atomic instructions
[    0.017044] CPU features: detected: Privileged Access Never
[    0.017048] CPU features: detected: PMUv3
[    0.017052] CPU features: detected: RAS Extension Support
[    0.017058] CPU features: detected: XNX
[    0.017064] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    0.017142] alternatives: applying system-wide alternatives
[    0.037732] CPU features: detected: Hardware dirty bit management on CPU4-7
[    0.038155] Memory: 7382480K/8281084K available (16896K kernel code, 2314K rwdata, 12660K rodata, 2368K init, 1526K bss, 760600K reserved, 131072K cma-reserved)
[    0.040609] devtmpfs: initialized
[    0.055958] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.055980] posixtimers hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.056037] futex hash table entries: 2048 (131072 bytes on 1 NUMA nodes, total 128 KiB, linear).
[    0.056636] 2G module region forced by RANDOMIZE_MODULE_REGION_FULL
[    0.056642] 0 pages in range for non-PLT usage
[    0.056645] 515296 pages in range for PLT usage
[    0.057265] DMI: not present or invalid.
[    0.058990] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.060019] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.060082] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.061721] thermal_sys: Registered thermal governor 'step_wise'
[    0.061727] thermal_sys: Registered thermal governor 'power_allocator'
[    0.061809] cpuidle: using governor menu
[    0.061882] NET: Registered PF_QIPCRTR protocol family
[    0.062049] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.062232] ASID allocator initialised with 32768 entries
[    0.062367] Serial: AMBA PL011 UART driver
[    0.064342] CPUidle PSCI: Initialized CPU PM domain topology using OSI mode
[    0.074016] /soc@0/ufshc@1d84000: Fixed dependency cycle(s) with /soc@0/phy@1d87000
[    0.074049] /soc@0/phy@1d87000: Fixed dependency cycle(s) with /soc@0/ufshc@1d84000
[    0.074262] /soc@0/stm@6002000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.074322] /soc@0/tpda@6004000: Fixed dependency cycle(s) with /soc@0/funnel@6005000
[    0.074333] /soc@0/tpda@6004000: Fixed dependency cycle(s) with /soc@0/tpdm@600f000
[    0.074392] /soc@0/funnel@6005000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.074404] /soc@0/funnel@6005000: Fixed dependency cycle(s) with /soc@0/tpda@6004000
[    0.074465] /soc@0/tpdm@600f000: Fixed dependency cycle(s) with /soc@0/tpda@6004000
[    0.074482] /soc@0/funnel@6041000: Fixed dependency cycle(s) with /soc@0/stm@6002000
[    0.074495] /soc@0/funnel@6041000: Fixed dependency cycle(s) with /soc@0/funnel@6005000
[    0.074545] /soc@0/funnel@6041000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.074577] /soc@0/funnel@6042000: Fixed dependency cycle(s) with /soc@0/funnel@7810000
[    0.074615] /soc@0/funnel@6042000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.074648] /soc@0/funnel@6045000: Fixed dependency cycle(s) with /soc@0/funnel@6042000
[    0.074665] /soc@0/funnel@6045000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.074693] /soc@0/funnel@6045000: Fixed dependency cycle(s) with /soc@0/funnel@6b04000
[    0.074753] /soc@0/replicator@6046000: Fixed dependency cycle(s) with /soc@0/replicator@6b06000
[    0.074764] /soc@0/replicator@6046000: Fixed dependency cycle(s) with /soc@0/etr@6048000
[    0.074826] /soc@0/etr@6048000: Fixed dependency cycle(s) with /soc@0/replicator@6046000
[    0.074878] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.074897] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.074912] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/etf@6b05000
[    0.074969] /soc@0/etf@6b05000: Fixed dependency cycle(s) with /soc@0/funnel@6b04000
[    0.074982] /soc@0/etf@6b05000: Fixed dependency cycle(s) with /soc@0/replicator@6b06000
[    0.075040] /soc@0/replicator@6b06000: Fixed dependency cycle(s) with /soc@0/etf@6b05000
[    0.075052] /soc@0/replicator@6b06000: Fixed dependency cycle(s) with /soc@0/replicator@6046000
[    0.075104] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/funnel@6b04000
[    0.075114] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0d000
[    0.075124] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0c000
[    0.075134] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0b000
[    0.075144] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0a000
[    0.075153] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b09000
[    0.075219] /soc@0/tpdm@6b09000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.075278] /soc@0/tpdm@6b0a000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.075338] /soc@0/tpdm@6b0b000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.075398] /soc@0/tpdm@6b0c000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.075457] /soc@0/tpdm@6b0d000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.075520] /soc@0/etm@7040000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075580] /soc@0/etm@7140000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075640] /soc@0/etm@7240000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075700] /soc@0/etm@7340000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075760] /soc@0/etm@7440000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075820] /soc@0/etm@7540000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075880] /soc@0/etm@7640000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075940] /soc@0/etm@7740000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.075954] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7740000
[    0.075964] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7640000
[    0.075973] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7540000
[    0.075983] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7440000
[    0.075993] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7340000
[    0.076003] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7240000
[    0.076012] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7140000
[    0.076022] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7040000
[    0.076064] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/funnel@7810000
[    0.076099] /soc@0/funnel@7810000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.076140] /soc@0/funnel@7810000: Fixed dependency cycle(s) with /soc@0/funnel@6042000
[    0.076306] /soc@0/cci@ac4a000/i2c-bus@1/sensor@56: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.076361] /soc@0/cci@ac4b000/i2c-bus@1/sensor@37: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.076394] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4b000/i2c-bus@1/sensor@37
[    0.076414] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4a000/i2c-bus@1/sensor@56
[    0.076449] /soc@0/clock-controller@af00000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/phy@ae94400
[    0.076518] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.076568] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[    0.076605] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/display-controller@ae01000
[    0.076707] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.076738] /soc@0/display-subsystem@ae00000/phy@ae94400: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[    0.076974] /soc@0/interrupt-controller@17a00000: Fixed dependency cycle(s) with /soc@0/interrupt-controller@17a00000
[    0.079541] /soc@0/ufshc@1d84000: Fixed dependency cycle(s) with /soc@0/phy@1d87000
[    0.079641] /soc@0/ufshc@1d84000: Fixed dependency cycle(s) with /soc@0/phy@1d87000
[    0.079700] /soc@0/phy@1d87000: Fixed dependency cycle(s) with /soc@0/ufshc@1d84000
[    0.082384] /soc@0/stm@6002000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.082479] /soc@0/tpda@6004000: Fixed dependency cycle(s) with /soc@0/funnel@6005000
[    0.082490] /soc@0/tpda@6004000: Fixed dependency cycle(s) with /soc@0/tpdm@600f000
[    0.082584] /soc@0/tpda@6004000: Fixed dependency cycle(s) with /soc@0/funnel@6005000
[    0.082653] /soc@0/funnel@6005000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.082664] /soc@0/funnel@6005000: Fixed dependency cycle(s) with /soc@0/tpda@6004000
[    0.082752] /soc@0/tpda@6004000: Fixed dependency cycle(s) with /soc@0/tpdm@600f000
[    0.082819] /soc@0/tpdm@600f000: Fixed dependency cycle(s) with /soc@0/tpda@6004000
[    0.082990] /soc@0/funnel@6005000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.083059] /soc@0/stm@6002000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.083093] /soc@0/funnel@6041000: Fixed dependency cycle(s) with /soc@0/stm@6002000
[    0.083130] /soc@0/funnel@6041000: Fixed dependency cycle(s) with /soc@0/funnel@6005000
[    0.083192] /soc@0/funnel@6041000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.083268] /soc@0/funnel@6042000: Fixed dependency cycle(s) with /soc@0/funnel@7810000
[    0.083299] /soc@0/funnel@6042000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.083378] /soc@0/funnel@6042000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.083441] /soc@0/funnel@6041000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.083486] /soc@0/funnel@6045000: Fixed dependency cycle(s) with /soc@0/funnel@6042000
[    0.083529] /soc@0/funnel@6045000: Fixed dependency cycle(s) with /soc@0/funnel@6041000
[    0.083576] /soc@0/funnel@6045000: Fixed dependency cycle(s) with /soc@0/funnel@6b04000
[    0.083666] /soc@0/replicator@6046000: Fixed dependency cycle(s) with /soc@0/replicator@6b06000
[    0.083677] /soc@0/replicator@6046000: Fixed dependency cycle(s) with /soc@0/etr@6048000
[    0.083734] /soc@0/replicator@6046000: Fixed dependency cycle(s) with /soc@0/etr@6048000
[    0.083802] /soc@0/etr@6048000: Fixed dependency cycle(s) with /soc@0/replicator@6046000
[    0.084074] /soc@0/funnel@6045000: Fixed dependency cycle(s) with /soc@0/funnel@6b04000
[    0.084130] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/funnel@6045000
[    0.084172] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.084185] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/etf@6b05000
[    0.084250] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/etf@6b05000
[    0.084315] /soc@0/etf@6b05000: Fixed dependency cycle(s) with /soc@0/funnel@6b04000
[    0.084351] /soc@0/etf@6b05000: Fixed dependency cycle(s) with /soc@0/replicator@6b06000
[    0.084411] /soc@0/etf@6b05000: Fixed dependency cycle(s) with /soc@0/replicator@6b06000
[    0.084478] /soc@0/replicator@6046000: Fixed dependency cycle(s) with /soc@0/replicator@6b06000
[    0.084546] /soc@0/replicator@6b06000: Fixed dependency cycle(s) with /soc@0/etf@6b05000
[    0.084584] /soc@0/replicator@6b06000: Fixed dependency cycle(s) with /soc@0/replicator@6046000
[    0.084679] /soc@0/funnel@6b04000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.084742] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/funnel@6b04000
[    0.084781] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0d000
[    0.084791] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0c000
[    0.084800] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0b000
[    0.084810] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0a000
[    0.084819] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b09000
[    0.084879] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b09000
[    0.084946] /soc@0/tpdm@6b09000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.085030] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0a000
[    0.085097] /soc@0/tpdm@6b0a000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.085176] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0b000
[    0.085242] /soc@0/tpdm@6b0b000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.085325] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0c000
[    0.085392] /soc@0/tpdm@6b0c000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.085470] /soc@0/tpda@6b08000: Fixed dependency cycle(s) with /soc@0/tpdm@6b0d000
[    0.085540] /soc@0/tpdm@6b0d000: Fixed dependency cycle(s) with /soc@0/tpda@6b08000
[    0.085690] /soc@0/etm@7040000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.085780] /soc@0/etm@7140000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.085881] /soc@0/etm@7240000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.085969] /soc@0/etm@7340000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086057] /soc@0/etm@7440000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086146] /soc@0/etm@7540000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086231] /soc@0/etm@7640000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086318] /soc@0/etm@7740000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086410] /soc@0/etm@7740000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086481] /soc@0/etm@7640000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086547] /soc@0/etm@7540000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086610] /soc@0/etm@7440000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086673] /soc@0/etm@7340000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086737] /soc@0/etm@7240000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086804] /soc@0/etm@7140000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086869] /soc@0/etm@7040000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.086907] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7740000
[    0.086941] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7640000
[    0.086974] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7540000
[    0.087011] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7440000
[    0.087043] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7340000
[    0.087075] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7240000
[    0.087107] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7140000
[    0.087139] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/etm@7040000
[    0.087196] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/funnel@7810000
[    0.087284] /soc@0/funnel@7800000: Fixed dependency cycle(s) with /soc@0/funnel@7810000
[    0.087330] /soc@0/funnel@6042000: Fixed dependency cycle(s) with /soc@0/funnel@7810000
[    0.087373] /soc@0/funnel@7810000: Fixed dependency cycle(s) with /soc@0/funnel@7800000
[    0.087429] /soc@0/funnel@7810000: Fixed dependency cycle(s) with /soc@0/funnel@6042000
[    0.089384] /soc@0/cci@ac4a000/i2c-bus@1/sensor@56: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.089528] /soc@0/cci@ac4b000/i2c-bus@1/sensor@37: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.089802] /soc@0/cci@ac4b000/i2c-bus@1/sensor@37: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.089890] /soc@0/cci@ac4a000/i2c-bus@1/sensor@56: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.089948] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4b000/i2c-bus@1/sensor@37
[    0.089980] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4a000/i2c-bus@1/sensor@56
[    0.090411] /soc@0/clock-controller@af00000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/phy@ae94400
[    0.090708] /soc@0/display-subsystem@ae00000: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[    0.090806] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.090864] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[    0.090908] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/display-controller@ae01000
[    0.091061] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.091092] /soc@0/display-subsystem@ae00000/phy@ae94400: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[    0.099157] /soc@0/rsc@18200000/regulators-0: Fixed dependency cycle(s) with /soc@0/rsc@18200000/regulators-0/smps1
[    0.099177] /soc@0/rsc@18200000/regulators-0: Fixed dependency cycle(s) with /soc@0/rsc@18200000/regulators-0/smps8
[    0.099194] /soc@0/rsc@18200000/regulators-0: Fixed dependency cycle(s) with /soc@0/rsc@18200000/regulators-0/smps7
[    0.099299] /soc@0/rsc@18200000/regulators-1: Fixed dependency cycle(s) with /soc@0/rsc@18200000/regulators-0/smps7
[    0.099314] /soc@0/rsc@18200000/regulators-1: Fixed dependency cycle(s) with /soc@0/rsc@18200000/regulators-1/bob
[    0.099330] /soc@0/rsc@18200000/regulators-1: Fixed dependency cycle(s) with /soc@0/rsc@18200000/regulators-0/smps1
[    0.100964] /pmic-glink/connector@0: Fixed dependency cycle(s) with /soc@0/geniqup@9c0000/i2c@990000/typec-mux@42
[    0.101007] /pmic-glink/connector@0: Fixed dependency cycle(s) with /soc@0/usb@a600000
[    0.102392] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.102398] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.102403] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.102406] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.102410] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.102413] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.102416] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.102419] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.107272] iommu: Default domain type: Translated
[    0.107278] iommu: DMA domain TLB invalidation policy: strict mode
[    0.110091] SCSI subsystem initialized
[    0.110220] usbcore: registered new interface driver usbfs
[    0.110243] usbcore: registered new interface driver hub
[    0.110263] usbcore: registered new device driver usb
[    0.110354] mc: Linux media interface: v0.10
[    0.110377] videodev: Linux video capture interface: v2.00
[    0.110415] pps_core: LinuxPPS API ver. 1 registered
[    0.110418] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.110427] PTP clock support registered
[    0.110511] scmi_core: SCMI protocol bus registered
[    0.110591] qcom_scm: convention: smc arm 64
[    0.110939] qcom_scm firmware:scm: qseecom: found qseecom with version 0x1402000
[    0.110961] qcom_scm firmware:scm: qseecom: untested machine, skipping
[    0.111615] Advanced Linux Sound Architecture Driver Initialized.
[    0.112235] vgaarb: loaded
[    0.112522] clocksource: Switched to clocksource arch_sys_counter
[    0.112792] VFS: Disk quotas dquot_6.6.0
[    0.112808] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.118279] NET: Registered PF_INET protocol family
[    0.118437] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.122854] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.122881] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.122892] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.123039] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.125272] TCP: Hash tables configured (established 65536 bind 65536)
[    0.125347] UDP hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.125578] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.125602] PCI: CLS 0 bytes, default 64
[    0.125942] Unpacking initramfs...
[    0.128799] kvm [1]: HYP mode not available
[    0.129605] Initialise system trusted keyrings
[    0.129809] workingset: timestamp_bits=42 (anon: 38) max_order=21 bucket_order=0 (anon: 0)
[    0.157988] NET: Registered PF_ALG protocol family
[    0.158001] Key type asymmetric registered
[    0.158005] Asymmetric key parser 'x509' registered
[    0.158063] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.158240] io scheduler mq-deadline registered
[    0.158248] io scheduler kyber registered
[    0.203714] qcom-ice 1d88000.crypto: Found QC Inline Crypto Engine (ICE) v3.2.0
[    0.203724] qcom-ice 1d88000.crypto: QC Hardware Key Manager (HWKM) version v1
[    0.203787] qcom-ice 1d88000.crypto: A supported HWKM is not present. Supporting raw keys only.
[    0.204773] vreg_s1c_2p2: Setting 2190000-2210000uV
[    0.204994] vreg_s9c_0p676: Setting 1010000-1170000uV
[    0.205170] vreg_l1c_1p8: Setting 1800000-1980000uV
[    0.205377] vreg_l2c_1p8: Setting 1800000-1800000uV
[    0.205580] vreg_l3c_3p0: Setting 3000000-3304000uV
[    0.205781] vreg_l4c_1p8_3p0: Setting 1620000-3300000uV
[    0.205960] vreg_l5c_1p8_3p0: Setting 1620000-3300000uV
[    0.206114] vreg_l6c_2p96: Setting 1650000-3544000uV
[    0.206290] vreg_l7c_3p0: Setting 3000000-3544000uV
[    0.206451] vreg_l8c_1p8: Setting 1620000-2000000uV
[    0.206626] vreg_l9c_2p96: Setting 3008000-3300000uV
[    0.206819] vreg_l10c_0p88: Setting 720000-1050000uV
[    0.206987] vreg_l11c_2p8: Setting 2800000-3544000uV
[    0.207025] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.207193] vreg_l12c_1p8: Setting 1800000-1800000uV
[    0.207384] vreg_l13c_3p0: Setting 3000000-3000000uV
[    0.207565] vreg_bob: Setting 3008000-3960000uV
[    0.209192] msm_serial: driver initialized
[    0.210184] arm-smmu 3da0000.iommu: probing hardware configuration...
[    0.210190] arm-smmu 3da0000.iommu: SMMUv2 with:
[    0.210214] arm-smmu 3da0000.iommu: 	stage 1 translation
[    0.210218] arm-smmu 3da0000.iommu: 	coherent table walk
[    0.210222] arm-smmu 3da0000.iommu: 	stream matching with 6 register groups
[    0.210239] arm-smmu 3da0000.iommu: 	7 context banks (0 stage-2 only)
[    0.210257] arm-smmu 3da0000.iommu: 	Supported page sizes: 0x61311000
[    0.210261] arm-smmu 3da0000.iommu: 	Stage-1: 48-bit VA -> 36-bit IPA
[    0.210354] arm-smmu 3da0000.iommu: 	preserved 0 boot mappings
[    0.211333] platform 3d00000.gpu: Adding to iommu group 0
[    0.211453] platform 3d6a000.gmu: Adding to iommu group 1
[    0.214643] arm-smmu 15000000.iommu: probing hardware configuration...
[    0.214648] arm-smmu 15000000.iommu: SMMUv2 with:
[    0.214660] arm-smmu 15000000.iommu: 	stage 1 translation
[    0.214663] arm-smmu 15000000.iommu: 	coherent table walk
[    0.214667] arm-smmu 15000000.iommu: 	stream matching with 77 register groups
[    0.214676] arm-smmu 15000000.iommu: 	61 context banks (0 stage-2 only)
[    0.215049] arm-smmu 15000000.iommu: 	Supported page sizes: 0x61311000
[    0.215053] arm-smmu 15000000.iommu: 	Stage-1: 36-bit VA -> 36-bit IPA
[    0.215098] arm-smmu 15000000.iommu: 	preserved 0 boot mappings
[    0.216100] platform 900000.dma-controller: Adding to iommu group 2
[    0.216191] platform 9c0000.geniqup: Adding to iommu group 3
[    0.216273] platform a00000.dma-controller: Adding to iommu group 4
[    0.216357] platform ac0000.geniqup: Adding to iommu group 5
[    0.216459] platform 17a10040.wifi: Adding to iommu group 6
[    0.216561] platform 1d84000.ufshc: Adding to iommu group 7
[    0.216657] platform 1dc4000.dma-controller: Adding to iommu group 8
[    0.216743] platform 1dfa000.crypto: Adding to iommu group 8
[    0.216834] platform 1e40000.ipa: Adding to iommu group 9
[    0.216981] platform a600000.usb: Adding to iommu group 10
[    0.217068] platform aa00000.video-codec: Adding to iommu group 11
[    0.217157] platform acb3000.isp: Adding to iommu group 12
[    0.217238] platform ae00000.display-subsystem: Adding to iommu group 13
[    0.218547] amba 6048000.etr: Adding to iommu group 14
[    0.225463] loop: module loaded
[    0.225703] zram: Added device: zram0
[    0.226196] spmi_pmic_arb c440000.spmi: PMIC arbiter version v5 (0x50020000)
[    0.234464] leds-qcom-flash c440000.spmi:pmic@2:led-controller@ee00: Led white:flash renamed to white:flash_1 due to name collision
[    0.251150] rtc-pm8xxx c440000.spmi:pmic@0:rtc@6100: registered as rtc0
[    0.251196] rtc-pm8xxx c440000.spmi:pmic@0:rtc@6100: setting system clock to 1970-04-17T14:45:35 UTC (9211535)
[    0.251249] i2c_dev: i2c /dev entries driver
[    0.252480] input: pmic_pwrkey as /devices/platform/soc@0/c440000.spmi/spmi-0/0-00/c440000.spmi:pmic@0:pon@1300/c440000.spmi:pmic@0:pon@1300:pwrkey/input/input0
[    0.253117] input: pmic_resin as /devices/platform/soc@0/c440000.spmi/spmi-0/0-00/c440000.spmi:pmic@0:pon@1300/c440000.spmi:pmic@0:pon@1300:resin/input/input1
[    0.262467] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[    0.265339] clocksource: arch_mmio_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[    0.265351] arch-timer-mmio 17c20000.timer: mmio timer running at 19.20MHz (virt)
[    0.265563] hid: raw HID events driver (C) Jiri Kosina
[    0.265612] usbcore: registered new interface driver usbhid
[    0.265615] usbhid: USB HID core driver
[    0.267451] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 (0,8000003f) counters available
[    0.268956] hw perfevents: enabled with armv8_cortex_a78 PMU driver, 7 (0,8000003f) counters available
[    0.277256] NET: Registered PF_INET6 protocol family
[    0.278317] Segment Routing with IPv6
[    0.278334] In-situ OAM (IOAM) with IPv6
[    0.278372] NET: Registered PF_PACKET protocol family
[    0.278387] Key type dns_resolver registered
[    0.283739] Loading compiled-in X.509 certificates
[    0.522678] Freeing initrd memory: 14260K
[    0.534685] Loaded X.509 cert 'Build time autogenerated kernel key: bb56f7f4186e0392aa0bf24dce9ce05e5b650904'
[    0.540036] Demotion targets for Node 0: null
[    0.559461] cpu cpu0: EM: OPP:300000 is inefficient
[    0.559603] cpu cpu0: EM: created perf domain
[    0.569731] cpu cpu4: EM: OPP:2131200 is inefficient
[    0.569741] cpu cpu4: EM: OPP:2054400 is inefficient
[    0.569890] cpu cpu4: EM: created perf domain
[    0.573905] cpu cpu7: EM: OPP:2380800 is inefficient
[    0.573966] cpu cpu7: EM: created perf domain
[    0.573968] energy_model: updating cpu0 cpu_cap=379 old capacity=528
[    0.573971] cpu cpu0: EM: OPP:300000 is inefficient
[    0.573973] energy_model: updating cpu4 cpu_cap=957 old capacity=1003
[    0.573974] cpu cpu4: EM: OPP:2131200 is inefficient
[    0.573975] cpu cpu4: EM: OPP:2054400 is inefficient
[    0.578751] /soc@0/geniqup@9c0000/i2c@990000/typec-mux@42: Fixed dependency cycle(s) with /pmic-glink/connector@0
[    0.579263] /pmic-glink/connector@0: Fixed dependency cycle(s) with /soc@0/geniqup@9c0000/i2c@990000/typec-mux@42
[    0.579292] /soc@0/geniqup@9c0000/i2c@990000/typec-mux@42: Fixed dependency cycle(s) with /pmic-glink/connector@0
[    0.580013] 994000.serial: ttyMSM0 at MMIO 0x994000 (irq = 149, base_baud = 0) is a MSM
[    0.602260] printk: legacy console [ttyMSM0] enabled
[    0.603634] 99c000.serial: ttyHS1 at MMIO 0x99c000 (irq = 150, base_baud = 0) is a MSM
[    0.603985] serial serial0: tty port ttyHS1 registered
[    0.608170] vreg_s1b_1p856: Setting 1840000-2040000uV
[    0.608259] vreg_s7b_0p952: Setting 535000-1120000uV
[    0.608329] vreg_s8b_1p256: Setting 1200000-1500000uV
[    0.608425] vreg_l1b_0p912: Setting 825000-925000uV
[    0.608780] vreg_l2b_3p072: Setting 2700000-3544000uV
[    0.608867] vreg_l3b_0p6: Setting 312000-910000uV
[    0.608986] vreg_l6b_1p2: Setting 1140000-1260000uV
[    0.609110] vreg_l7b_2p96: Setting 2400000-3544000uV
[    0.609480] vreg_l8b_0p904: Setting 870000-970000uV
[    0.609578] vreg_l9b_1p2: Setting 1200000-1304000uV
[    0.609669] vreg_l11b_1p776: Setting 1504000-2000000uV
[    0.610044] vreg_l12b_0p8: Setting 751000-824000uV
[    0.610144] vreg_l13b_0p8: Setting 530000-824000uV
[    0.610235] vreg_l14b_1p2: Setting 1080000-1304000uV
[    0.610614] vreg_l15b_0p88: Setting 765000-1020000uV
[    0.610706] vreg_l16b_1p2: Setting 1100000-1300000uV
[    0.610797] vreg_l17b_1p8: Setting 1700000-1900000uV
[    0.610895] vreg_l18b_1p8: Setting 1800000-2000000uV
[    0.611950] vreg_l19b_1p8: Setting 1800000-2000000uV
[    0.633997] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.635028] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.635075] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[    0.635084] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/display-controller@ae01000
[    0.635178] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.643029] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4a000/i2c-bus@1/sensor@56
[    0.643060] /soc@0/cci@ac4a000/i2c-bus@1/sensor@56: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.644007] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4b000/i2c-bus@1/sensor@37
[    0.644027] /soc@0/cci@ac4b000/i2c-bus@1/sensor@37: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[    0.645634] thermal thermal_zone30: Temperature check failed (-22)
[    0.646915] thermal thermal_zone31: Temperature check failed (-22)
[    0.649040] thermal thermal_zone32: Temperature check failed (-22)
[    0.650754] thermal thermal_zone33: Temperature check failed (-22)
[    0.652426] thermal thermal_zone34: Temperature check failed (-22)
[    0.654162] thermal thermal_zone35: Temperature check failed (-22)
[    0.655870] thermal thermal_zone36: Temperature check failed (-22)
[    0.657662] thermal thermal_zone37: Temperature check failed (-22)
[    0.660324] ufshcd-qcom 1d84000.ufshc: freq-table-hz property not specified
[    0.660329] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[    0.660392] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[    0.712579] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[    0.712618] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[    0.718246] qcom_pmic_glink pmic-glink: Failed to create device link (0x180) with supplier a600000.usb for /pmic-glink/connector@0
[    0.731063] ufshcd-qcom 1d84000.ufshc: freq-table-hz property not specified
[    0.731067] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[    0.731073] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[    0.743722] scsi host0: ufshcd
[    0.782523] scsi 0:0:0:49488: Well-known LUN    SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.788361] scsi 0:0:0:49476: Well-known LUN    SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.790837] scsi 0:0:0:49456: Well-known LUN    SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.793259] input: gpio-keys as /devices/platform/gpio-keys/input/input2
[    0.794082] scsi 0:0:0:0: Direct-Access     SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.796907] sd 0:0:0:0: [sda] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)
[    0.797038] sd 0:0:0:0: [sda] Write Protect is off
[    0.797049] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10
[    0.797107] scsi 0:0:0:1: Direct-Access     SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.797352] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    0.797442] sd 0:0:0:0: [sda] Preferred minimum I/O size 524288 bytes
[    0.797451] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes
[    0.799816] clk: Disabling unused clocks
[    0.800587] scsi 0:0:0:2: Direct-Access     SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.800734] PM: genpd: Disabling unused power domains
[    0.800876] ALSA device list:
[    0.800885] sd 0:0:0:1: [sdb] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)
[    0.800904]   No soundcards found.
[    0.800980] sd 0:0:0:1: [sdb] Write Protect is off
[    0.800983] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10
[    0.801089] sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    0.801219] sd 0:0:0:1: [sdb] Preferred minimum I/O size 524288 bytes
[    0.801221] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes
[    0.804799] scsi 0:0:0:3: Direct-Access     SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.805660] sd 0:0:0:2: [sdc] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)
[    0.805758] sd 0:0:0:2: [sdc] Write Protect is off
[    0.805760] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10
[    0.806253] sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    0.806665] sd 0:0:0:2: [sdc] Preferred minimum I/O size 524288 bytes
[    0.806670] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes
[    0.808005] sd 0:0:0:3: [sdd] 307200 4096-byte logical blocks: (1.26 GB/1.17 GiB)
[    0.808050] scsi 0:0:0:4: Direct-Access     SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.808128] sd 0:0:0:3: [sdd] Write Protect is off
[    0.808136] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10
[    0.808343] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    0.808447] sd 0:0:0:3: [sdd] Preferred minimum I/O size 524288 bytes
[    0.808454] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes
[    0.811067] sd 0:0:0:4: [sde] 30615552 4096-byte logical blocks: (125 GB/117 GiB)
[    0.811228] scsi 0:0:0:5: Direct-Access     SAMSUNG  KMAG9001PM-B814  0500 PQ: 0 ANSI: 6
[    0.811233] sd 0:0:0:4: [sde] Write Protect is off
[    0.811243] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10
[    0.811511] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    0.811653] sd 0:0:0:4: [sde] Preferred minimum I/O size 524288 bytes
[    0.811664] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes
[    0.814728] sd 0:0:0:5: [sdf] 307200 4096-byte logical blocks: (1.26 GB/1.17 GiB)
[    0.814860] sd 0:0:0:5: [sdf] Write Protect is off
[    0.814868] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10
[    0.815056] sd 0:0:0:5: [sdf] Write cache: enabled, read cache: enabled, supports DPO and FUA
[    0.815148] sd 0:0:0:5: [sdf] Preferred minimum I/O size 524288 bytes
[    0.815155] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes
[    0.828000]  sda: sda1 sda2
[    0.828492] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.830664]  sdc: sdc1 sdc2 sdc3
[    0.831003] sd 0:0:0:2: [sdc] Attached SCSI disk
[    0.834524]  sdb: sdb1 sdb2 sdb3
[    0.834714] sd 0:0:0:1: [sdb] Attached SCSI disk
[    0.841614]  sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8 sdf9 sdf10 sdf11 sdf12 sdf13 sdf14 sdf15 sdf16 sdf17 sdf18 sdf19 sdf20 sdf21
[    0.841986]  sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27
[    0.842191]  sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6 sdd7 sdd8 sdd9 sdd10 sdd11 sdd12 sdd13 sdd14 sdd15 sdd16 sdd17 sdd18 sdd19 sdd20 sdd21
[    0.849534] sd 0:0:0:5: [sdf] Attached SCSI disk
[    0.850696] sd 0:0:0:3: [sdd] Attached SCSI disk
[    0.852213] sd 0:0:0:4: [sde] Attached SCSI disk
[    0.861654] Freeing unused kernel memory: 2368K
[    0.861879] Run /init as init process
[    0.861891]   with arguments:
[    0.861902]     /init
[    0.861913]   with environment:
[    0.861924]     HOME=/
[    0.861933]     TERM=linux
[    0.861943]     pmos_boot_uuid=9D9D-92CA
[    0.861953]     pmos_root_uuid=cbe8b95d-9eb1-4420-98cb-c4ddddb5c92d
[    0.861964]     pmos_rootfsopts=defaults
[    0.861974]     wifimacaddr=68:87:1C:E9:6D:60,68:87:1C:E9:6D:61
[    0.861985]     storage_mfrid=0x1CE
[    0.930658] syslogd started: BusyBox v1.38.0
[    0.933678] [pmOS-rd]:   ❬❬ PMOS STAGE 1 ❭❭
[    0.933714] [pmOS-rd]: initramfs version: 3.12.0-r0
[    0.933738] [pmOS-rd]:   ❬❬ PMOS STAGE 2 ❭❭
[    1.222884] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-bat: failed to send uevent
[    1.222891] power_supply qcom-battmgr-bat: uevent: failed to send synthetic uevent: -11
[    1.231319] [pmOS-rd]: qcom-battmgr-bat: Failed to write 'add' to '/sys/devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-bat/uevent': Resource temporarily unavailable
[    1.231327] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-usb: failed to send uevent
[    1.231330] power_supply qcom-battmgr-usb: uevent: failed to send synthetic uevent: -11
[    1.239667] [pmOS-rd]: qcom-battmgr-usb: Failed to write 'add' to '/sys/devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-usb/uevent': Resource temporarily unavailable
[    1.239738] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-wls: failed to send uevent
[    1.239741] power_supply qcom-battmgr-wls: uevent: failed to send synthetic uevent: -11
[    1.248075] [pmOS-rd]: qcom-battmgr-wls: Failed to write 'add' to '/sys/devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-wls/uevent': Resource temporarily unavailable
[    1.508485] panel-novatek-nt37701 ae94000.dsi.0: supply power not found, using dummy regulator
[    1.543487] msm_dpu ae01000.display-controller: bound ae94000.dsi (ops dsi_ops.llvm.297305059305118618)
[    1.545797] adreno 3d00000.gpu: supply vdd not found, using dummy regulator
[    1.557262] adreno 3d00000.gpu: supply vddcx not found, using dummy regulator
[    1.574790] msm_dpu ae01000.display-controller: bound 3d00000.gpu (ops a3xx_ops)
[    1.577426] [drm:dpu_kms_hw_init:1168] dpu hardware revision:0x70020000
[    1.592051] [drm] Initialized msm 1.13.0 for ae01000.display-controller on minor 0
[    1.592132] msm_dpu ae01000.display-controller: Direct firmware load for qcom/a660_sqe.fw failed with error -2
[    1.592136] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] *ERROR* failed to load a660_sqe.fw
[    1.770847] input: Goodix Berlin Capacitive TouchScreen as /devices/platform/soc@0/ac0000.geniqup/a94000.spi/spi_master/spi13/spi13.0/input/input3
[    1.805121] Console: switching to colour frame buffer device 135x150
[    1.805147] fb0: sys_imageblit: framebuffer is not in virtual address space.
[    1.821357] msm_dpu ae01000.display-controller: [drm] fb0: msmdrmfb frame buffer device
[    1.838161] [pmOS-rd]:   Setting up USB gadget through configfs
[    1.855353] configfs-gadget.g1 gadget.0: HOST MAC 52:d7:9b:4c:3d:06
[    1.855380] configfs-gadget.g1 gadget.0: MAC e6:fd:56:1e:4a:76
[    1.878713] [pmOS-rd]: Trying to start server with parameters: Server IP addr: 172.16.42.1:67, client IP addr: 172.16.42.2, interface: usb0
[    1.884033] [pmOS-rd]: Setting framebuffer mode to: U:1080x2400p-0
[    1.931033] msm_dpu ae01000.display-controller: Direct firmware load for qcom/a660_sqe.fw failed with error -2
[    1.931039] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] *ERROR* failed to load a660_sqe.fw
[    2.083230] [pmOS-rd]: Waiting for super partition /dev/sde26...
[    2.105072] [pmOS-rd]: Waiting for super partition /dev/sde26...
[    2.107886] [pmOS-rd]: device-mapper: create ioctl on product_a  failed: Resource busy
[    2.108101] [pmOS-rd]: device-mapper: create ioctl on system_a  failed: Resource busy
[    2.112597] [pmOS-rd]: device-mapper: create ioctl on system_ext_a  failed: Resource busy
[    2.112624] [pmOS-rd]: device-mapper: create ioctl on vendor_a  failed: Resource busy
[    3.119567] [pmOS-rd]: Trying to mount subpartitions for 10 seconds...
[   12.026692] amba 7740000.etm: deferred probe pending: (reason unknown)
[   12.026717] platform 33c0000.pinctrl: deferred probe pending: platform: wait for supplier /soc@0/remoteproc@3700000/glink-edge/apr/service@4/clock-controller
[   12.026729] amba 7040000.etm: deferred probe pending: (reason unknown)
[   12.026738] amba 7140000.etm: deferred probe pending: (reason unknown)
[   12.026748] amba 7240000.etm: deferred probe pending: (reason unknown)
[   12.026758] amba 7340000.etm: deferred probe pending: (reason unknown)
[   12.026767] amba 7440000.etm: deferred probe pending: (reason unknown)
[   12.026776] amba 7540000.etm: deferred probe pending: (reason unknown)
[   12.026785] amba 7640000.etm: deferred probe pending: (reason unknown)
[   12.026806] gcc-sc7280 100000.clock-controller: sync_state() pending due to chosen:framebuffer
[   12.026827] qnoc-sc7280 1500000.interconnect: sync_state() pending due to 1e40000.ipa
[   12.026838] qnoc-sc7280 1580000.interconnect: sync_state() pending due to 1e40000.ipa
[   12.026848] qnoc-sc7280 1700000.interconnect: sync_state() pending due to 1e40000.ipa
[   12.026865] gcc-sc7280 100000.clock-controller: sync_state() pending due to 3d6a000.gmu
[   12.026876] gpu_cc-sc7280 3d90000.clock-controller: sync_state() pending due to 3d6a000.gmu
[   12.026941] qnoc-sc7280 9100000.interconnect: sync_state() pending due to 1e40000.ipa
[   12.026952] qnoc-sc7280 1580000.interconnect: sync_state() pending due to a300000.remoteproc
[   12.026963] qnoc-sc7280 a0c0000.interconnect: sync_state() pending due to a300000.remoteproc
[   12.026978] qnoc-sc7280 1580000.interconnect: sync_state() pending due to aa00000.video-codec
[   12.026989] qnoc-sc7280 1740000.interconnect: sync_state() pending due to aa00000.video-codec
[   12.026999] qnoc-sc7280 1500000.interconnect: sync_state() pending due to aa00000.video-codec
[   12.027009] qnoc-sc7280 9100000.interconnect: sync_state() pending due to aa00000.video-codec
[   12.027020] video_cc-sc7280 aaf0000.clock-controller: sync_state() pending due to aa00000.video-codec
[   12.027031] qnoc-sc7280 1580000.interconnect: sync_state() pending due to acb3000.isp
[   12.027041] qnoc-sc7280 1740000.interconnect: sync_state() pending due to acb3000.isp
[   12.027051] qnoc-sc7280 1500000.interconnect: sync_state() pending due to acb3000.isp
[   12.027061] qnoc-sc7280 9100000.interconnect: sync_state() pending due to acb3000.isp
[   12.027071] gcc-sc7280 100000.clock-controller: sync_state() pending due to acb3000.isp
[   12.027081] cam_cc-sc7280 ad00000.clock-controller: sync_state() pending due to acb3000.isp
[   12.027093] disp_cc-sc7280 af00000.clock-controller: sync_state() pending due to chosen:framebuffer
[   12.027139] qcom-rpmhpd 18200000.rsc:power-controller: sync_state() pending due to aa00000.video-codec
[   12.027149] qcom-rpmhpd 18200000.rsc:power-controller: sync_state() pending due to a300000.remoteproc
[   12.027159] qcom-rpmhpd 18200000.rsc:power-controller: sync_state() pending due to 8a00000.remoteproc
[   12.027169] qcom-rpmhpd 18200000.rsc:power-controller: sync_state() pending due to 3700000.remoteproc
[   12.027179] qcom-rpmhpd 18200000.rsc:power-controller: sync_state() pending due to 4080000.remoteproc
[   12.027276] cam_cc-sc7280 ad00000.clock-controller: sync_state() pending due to 17-0056
[   12.027291] cam_cc-sc7280 ad00000.clock-controller: sync_state() pending due to 19-0037
[   13.510757] [pmOS-rd]: ERROR: failed to mount subpartitions!
[   67.360353] [pmOS-rd]: Creating logs disk
[   67.378686] [pmOS-rd]: 32+0 records in
[   67.378715] [pmOS-rd]: 32+0 records out
[   67.378727] [pmOS-rd]: 33554432 bytes (32.0MB) copied, 0.017143 seconds, 1.8GB/s
[   67.379433] loop0: detected capacity change from 0 to 65536
[   67.770283] [pmOS-rd]: ./_info
[   67.770313] [pmOS-rd]: ./blkid.txt
[   67.770324] [pmOS-rd]: ./cmdline.txt
[   67.770336] [pmOS-rd]: ./dmesg.txt
[   67.770578] [pmOS-rd]: ./fdt.dtb
[   67.789797] [pmOS-rd]: ./partitions.txt
[   67.789812] [pmOS-rd]: ./pmOS_init.txt
[   67.805562] [pmOS-rd]: Making logs available via mass storage
[   67.830340] Mass Storage Function, version: 2009/09/11
[   67.830347] LUN: removable file: (no medium)
[   67.919450] [pmOS-rd]: Entering debug shell
[   67.962175] [pmOS-rd]: /usr/bin/buffyboard
[   67.976433] fb0: sys_fillrect: framebuffer is not in virtual address space.
[   67.980343] [pmOS-rd]: Ignoring invalid config file /etc/buffyboard.conf
[   67.980363] [pmOS-rd]: Could not update current terminal size: Invalid argument
[   68.014326] input: rd as /devices/virtual/input/input4

@mbohun

mbohun commented Jul 26, 2026

Copy link
Copy Markdown
Author

[Fri Jul 24 12:57:01 2026] Loading compiled-in X.509 certificates
[Fri Jul 24 12:57:01 2026] Freeing initrd memory: 14260K
[Fri Jul 24 12:57:01 2026] Loaded X.509 cert 'Build time autogenerated kernel key: b51cc45af6f9c9e157e9fba009e29ffcdec6b720'
[Fri Jul 24 12:57:01 2026] Demotion targets for Node 0: null
[Fri Jul 24 12:57:01 2026] cpu cpu0: EM: OPP:300000 is inefficient
[Fri Jul 24 12:57:01 2026] cpu cpu0: EM: created perf domain
[Fri Jul 24 12:57:01 2026] cpu cpu4: EM: OPP:2131200 is inefficient
[Fri Jul 24 12:57:01 2026] cpu cpu4: EM: OPP:2054400 is inefficient
[Fri Jul 24 12:57:01 2026] cpu cpu4: EM: created perf domain
[Fri Jul 24 12:57:01 2026] cpu cpu7: EM: OPP:2380800 is inefficient
[Fri Jul 24 12:57:01 2026] cpu cpu7: EM: created perf domain
[Fri Jul 24 12:57:01 2026] energy_model: updating cpu0 cpu_cap=379 old capacity=528
[Fri Jul 24 12:57:01 2026] cpu cpu0: EM: OPP:300000 is inefficient
[Fri Jul 24 12:57:01 2026] energy_model: updating cpu4 cpu_cap=957 old capacity=1003
[Fri Jul 24 12:57:01 2026] cpu cpu4: EM: OPP:2131200 is inefficient
[Fri Jul 24 12:57:01 2026] cpu cpu4: EM: OPP:2054400 is inefficient
[Fri Jul 24 12:57:01 2026] /soc@0/geniqup@9c0000/i2c@990000/typec-mux@42: Fixed dependency cycle(s) with /pmic-glink/connector@0
[Fri Jul 24 12:57:01 2026] /pmic-glink/connector@0: Fixed dependency cycle(s) with /soc@0/geniqup@9c0000/i2c@990000/typec-mux@42
[Fri Jul 24 12:57:01 2026] /soc@0/geniqup@9c0000/i2c@990000/typec-mux@42: Fixed dependency cycle(s) with /pmic-glink/connector@0
[Fri Jul 24 12:57:01 2026] 994000.serial: ttyMSM0 at MMIO 0x994000 (irq = 149, base_baud = 0) is a MSM
[Fri Jul 24 12:57:01 2026] printk: legacy console [ttyMSM0] enabled
[Fri Jul 24 12:57:01 2026] 99c000.serial: ttyHS1 at MMIO 0x99c000 (irq = 150, base_baud = 0) is a MSM
[Fri Jul 24 12:57:01 2026] serial serial0: tty port ttyHS1 registered
[Fri Jul 24 12:57:01 2026] vreg_s1b_1p856: Setting 1840000-2040000uV
[Fri Jul 24 12:57:01 2026] vreg_s7b_0p952: Setting 535000-1120000uV
[Fri Jul 24 12:57:01 2026] vreg_s8b_1p256: Setting 1200000-1500000uV
[Fri Jul 24 12:57:01 2026] vreg_l1b_0p912: Setting 825000-925000uV
[Fri Jul 24 12:57:01 2026] vreg_l2b_3p072: Setting 2700000-3544000uV
[Fri Jul 24 12:57:01 2026] vreg_l3b_0p6: Setting 312000-910000uV
[Fri Jul 24 12:57:01 2026] vreg_l6b_1p2: Setting 1140000-1260000uV
[Fri Jul 24 12:57:01 2026] vreg_l7b_2p96: Setting 2400000-3544000uV
[Fri Jul 24 12:57:01 2026] vreg_l8b_0p904: Setting 870000-970000uV
[Fri Jul 24 12:57:01 2026] vreg_l9b_1p2: Setting 1200000-1304000uV
[Fri Jul 24 12:57:01 2026] vreg_l11b_1p776: Setting 1504000-2000000uV
[Fri Jul 24 12:57:01 2026] vreg_l12b_0p8: Setting 751000-824000uV
[Fri Jul 24 12:57:01 2026] vreg_l13b_0p8: Setting 530000-824000uV
[Fri Jul 24 12:57:01 2026] vreg_l14b_1p2: Setting 1080000-1304000uV
[Fri Jul 24 12:57:01 2026] vreg_l15b_0p88: Setting 765000-1020000uV
[Fri Jul 24 12:57:01 2026] vreg_l16b_1p2: Setting 1100000-1300000uV
[Fri Jul 24 12:57:01 2026] vreg_l17b_1p8: Setting 1700000-1900000uV
[Fri Jul 24 12:57:01 2026] vreg_l18b_1p8: Setting 1800000-2000000uV
[Fri Jul 24 12:57:01 2026] vreg_l19b_1p8: Setting 1800000-2000000uV
[Fri Jul 24 12:57:01 2026] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[Fri Jul 24 12:57:01 2026] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[Fri Jul 24 12:57:01 2026] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[Fri Jul 24 12:57:01 2026] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/display-controller@ae01000
[Fri Jul 24 12:57:01 2026] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[Fri Jul 24 12:57:01 2026] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4a000/i2c-bus@1/sensor@56
[Fri Jul 24 12:57:01 2026] /soc@0/cci@ac4a000/i2c-bus@1/sensor@56: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[Fri Jul 24 12:57:01 2026] /soc@0/isp@acb3000: Fixed dependency cycle(s) with /soc@0/cci@ac4b000/i2c-bus@1/sensor@37
[Fri Jul 24 12:57:01 2026] /soc@0/cci@ac4b000/i2c-bus@1/sensor@37: Fixed dependency cycle(s) with /soc@0/isp@acb3000
[Fri Jul 24 12:57:01 2026] thermal thermal_zone30: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] thermal thermal_zone31: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] thermal thermal_zone32: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] thermal thermal_zone33: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] thermal thermal_zone34: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] thermal thermal_zone35: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] thermal thermal_zone36: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] thermal thermal_zone37: Temperature check failed (-22)
[Fri Jul 24 12:57:01 2026] ufshcd-qcom 1d84000.ufshc: freq-table-hz property not specified
[Fri Jul 24 12:57:01 2026] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[Fri Jul 24 12:57:01 2026] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[Fri Jul 24 12:57:01 2026] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[Fri Jul 24 12:57:01 2026] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[Fri Jul 24 12:57:01 2026] qcom_pmic_glink pmic-glink: Failed to create device link (0x180) with supplier a600000.usb for /pmic-glink/connector@0
[Fri Jul 24 12:57:01 2026] ufshcd-qcom 1d84000.ufshc: freq-table-hz property not specified
[Fri Jul 24 12:57:01 2026] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[Fri Jul 24 12:57:01 2026] ufshcd-qcom 1d84000.ufshc: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[Fri Jul 24 12:57:01 2026] scsi host0: ufshcd
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:49488: Well-known LUN SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:49476: Well-known LUN SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:49456: Well-known LUN SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] input: gpio-keys as /devices/platform/gpio-keys/input/input2
[Fri Jul 24 12:57:01 2026] clk: Disabling unused clocks
[Fri Jul 24 12:57:01 2026] PM: genpd: Disabling unused power domains
[Fri Jul 24 12:57:01 2026] ALSA device list:
[Fri Jul 24 12:57:01 2026] No soundcards found.
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:0: Direct-Access SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] sd 0:0:0:0: [sda] 4096 4096-byte logical blocks: (16.8 MB/16.0 MiB)
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:1: Direct-Access SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] sd 0:0:0:0: [sda] Write Protect is off
[Fri Jul 24 12:57:01 2026] sd 0:0:0:0: [sda] Mode Sense: 00 32 00 10
[Fri Jul 24 12:57:01 2026] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, supports DPO and FUA
[Fri Jul 24 12:57:01 2026] sd 0:0:0:0: [sda] Preferred minimum I/O size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:0: [sda] Optimal transfer size 524288 bytes
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:2: Direct-Access SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] sd 0:0:0:1: [sdb] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)
[Fri Jul 24 12:57:01 2026] sd 0:0:0:1: [sdb] Write Protect is off
[Fri Jul 24 12:57:01 2026] sd 0:0:0:1: [sdb] Mode Sense: 00 32 00 10
[Fri Jul 24 12:57:01 2026] sd 0:0:0:1: [sdb] Write cache: enabled, read cache: enabled, supports DPO and FUA
[Fri Jul 24 12:57:01 2026] sd 0:0:0:1: [sdb] Preferred minimum I/O size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:1: [sdb] Optimal transfer size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:2: [sdc] 2048 4096-byte logical blocks: (8.39 MB/8.00 MiB)
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:3: Direct-Access SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] sd 0:0:0:2: [sdc] Write Protect is off
[Fri Jul 24 12:57:01 2026] sd 0:0:0:2: [sdc] Mode Sense: 00 32 00 10
[Fri Jul 24 12:57:01 2026] sd 0:0:0:2: [sdc] Write cache: enabled, read cache: enabled, supports DPO and FUA
[Fri Jul 24 12:57:01 2026] sd 0:0:0:2: [sdc] Preferred minimum I/O size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:2: [sdc] Optimal transfer size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:3: [sdd] 307200 4096-byte logical blocks: (1.26 GB/1.17 GiB)
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:4: Direct-Access SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] sd 0:0:0:3: [sdd] Write Protect is off
[Fri Jul 24 12:57:01 2026] sd 0:0:0:3: [sdd] Mode Sense: 00 32 00 10
[Fri Jul 24 12:57:01 2026] sd 0:0:0:3: [sdd] Write cache: enabled, read cache: enabled, supports DPO and FUA
[Fri Jul 24 12:57:01 2026] sd 0:0:0:3: [sdd] Preferred minimum I/O size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:3: [sdd] Optimal transfer size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:4: [sde] 30615552 4096-byte logical blocks: (125 GB/117 GiB)
[Fri Jul 24 12:57:01 2026] sd 0:0:0:4: [sde] Write Protect is off
[Fri Jul 24 12:57:01 2026] sd 0:0:0:4: [sde] Mode Sense: 00 32 00 10
[Fri Jul 24 12:57:01 2026] scsi 0:0:0:5: Direct-Access SAMSUNG KMAG9001PM-B814 0500 PQ: 0 ANSI: 6
[Fri Jul 24 12:57:01 2026] sd 0:0:0:4: [sde] Write cache: enabled, read cache: enabled, supports DPO and FUA
[Fri Jul 24 12:57:01 2026] sd 0:0:0:4: [sde] Preferred minimum I/O size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:4: [sde] Optimal transfer size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:5: [sdf] 307200 4096-byte logical blocks: (1.26 GB/1.17 GiB)
[Fri Jul 24 12:57:01 2026] sd 0:0:0:5: [sdf] Write Protect is off
[Fri Jul 24 12:57:01 2026] sd 0:0:0:5: [sdf] Mode Sense: 00 32 00 10
[Fri Jul 24 12:57:01 2026] sd 0:0:0:5: [sdf] Write cache: enabled, read cache: enabled, supports DPO and FUA
[Fri Jul 24 12:57:01 2026] sd 0:0:0:5: [sdf] Preferred minimum I/O size 524288 bytes
[Fri Jul 24 12:57:01 2026] sd 0:0:0:5: [sdf] Optimal transfer size 524288 bytes
[Fri Jul 24 12:57:01 2026] sda: sda1 sda2
[Fri Jul 24 12:57:01 2026] sd 0:0:0:0: [sda] Attached SCSI disk
[Fri Jul 24 12:57:01 2026] sdb: sdb1 sdb2 sdb3
[Fri Jul 24 12:57:01 2026] sdc: sdc1 sdc2 sdc3
[Fri Jul 24 12:57:01 2026] sdf: sdf1 sdf2 sdf3 sdf4 sdf5 sdf6 sdf7 sdf8 sdf9 sdf10 sdf11 sdf12 sdf13 sdf14 sdf15 sdf16 sdf17 sdf18 sdf19 sdf20 sdf21
[Fri Jul 24 12:57:01 2026] sde: sde1 sde2 sde3 sde4 sde5 sde6 sde7 sde8 sde9 sde10 sde11 sde12 sde13 sde14 sde15 sde16 sde17 sde18 sde19 sde20 sde21 sde22 sde23 sde24 sde25 sde26 sde27
[Fri Jul 24 12:57:01 2026] sdd: sdd1 sdd2 sdd3 sdd4 sdd5 sdd6 sdd7 sdd8 sdd9 sdd10 sdd11 sdd12 sdd13 sdd14 sdd15 sdd16 sdd17 sdd18 sdd19 sdd20 sdd21
[Fri Jul 24 12:57:01 2026] sd 0:0:0:2: [sdc] Attached SCSI disk
[Fri Jul 24 12:57:01 2026] sd 0:0:0:1: [sdb] Attached SCSI disk
[Fri Jul 24 12:57:01 2026] sd 0:0:0:3: [sdd] Attached SCSI disk
[Fri Jul 24 12:57:01 2026] sd 0:0:0:5: [sdf] Attached SCSI disk
[Fri Jul 24 12:57:01 2026] sd 0:0:0:4: [sde] Attached SCSI disk
[Fri Jul 24 12:57:01 2026] Freeing unused kernel memory: 2368K
[Fri Jul 24 12:57:01 2026] Run /init as init process
[Fri Jul 24 12:57:01 2026] with arguments:
[Fri Jul 24 12:57:01 2026] /init
[Fri Jul 24 12:57:01 2026] with environment:
[Fri Jul 24 12:57:01 2026] HOME=/
[Fri Jul 24 12:57:01 2026] TERM=linux
[Fri Jul 24 12:57:01 2026] pmos_boot_uuid=B981-E282
[Fri Jul 24 12:57:01 2026] pmos_root_uuid=c469317b-6764-46e9-9263-9b835d8bc2f0
[Fri Jul 24 12:57:01 2026] pmos_rootfsopts=defaults
[Fri Jul 24 12:57:01 2026] wifimacaddr=68:87:1C:E9:6D:60,68:87:1C:E9:6D:61
[Fri Jul 24 12:57:01 2026] storage_mfrid=0x1CE
[Fri Jul 24 12:57:01 2026] syslogd started: BusyBox v1.38.0
[Fri Jul 24 12:57:01 2026] [pmOS-rd]: ❬❬ PMOS STAGE 1 ❭❭
[Fri Jul 24 12:57:01 2026] [pmOS-rd]: initramfs version: 3.12.0-r0
[Fri Jul 24 12:57:01 2026] [pmOS-rd]: ❬❬ PMOS STAGE 2 ❭❭
[Fri Jul 24 12:57:02 2026] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-bat: failed to send uevent
[Fri Jul 24 12:57:02 2026] power_supply qcom-battmgr-bat: uevent: failed to send synthetic uevent: -11
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: qcom-battmgr-bat: Failed to write 'add' to '/sys/devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-bat/uevent': Resource temporarily unavailable
[Fri Jul 24 12:57:02 2026] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-usb: failed to send uevent
[Fri Jul 24 12:57:02 2026] power_supply qcom-battmgr-usb: uevent: failed to send synthetic uevent: -11
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: qcom-battmgr-usb: Failed to write 'add' to '/sys/devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-usb/uevent': Resource temporarily unavailable
[Fri Jul 24 12:57:02 2026] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-wls: failed to send uevent
[Fri Jul 24 12:57:02 2026] power_supply qcom-battmgr-wls: uevent: failed to send synthetic uevent: -11
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: qcom-battmgr-wls: Failed to write 'add' to '/sys/devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-wls/uevent': Resource temporarily unavailable
[Fri Jul 24 12:57:02 2026] panel-novatek-nt37701 ae94000.dsi.0: supply power not found, using dummy regulator
[Fri Jul 24 12:57:02 2026] msm_dpu ae01000.display-controller: bound ae94000.dsi (ops dsi_ops.llvm.10131019740095179477)
[Fri Jul 24 12:57:02 2026] adreno 3d00000.gpu: supply vdd not found, using dummy regulator
[Fri Jul 24 12:57:02 2026] adreno 3d00000.gpu: supply vddcx not found, using dummy regulator
[Fri Jul 24 12:57:02 2026] msm_dpu ae01000.display-controller: bound 3d00000.gpu (ops a3xx_ops)
[Fri Jul 24 12:57:02 2026] [drm:dpu_kms_hw_init:1168] dpu hardware revision:0x70020000
[Fri Jul 24 12:57:02 2026] [drm] Initialized msm 1.13.0 for ae01000.display-controller on minor 0
[Fri Jul 24 12:57:02 2026] msm_dpu ae01000.display-controller: Direct firmware load for qcom/a660_sqe.fw failed with error -2
[Fri Jul 24 12:57:02 2026] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] ERROR failed to load a660_sqe.fw
[Fri Jul 24 12:57:02 2026] input: Goodix Berlin Capacitive TouchScreen as /devices/platform/soc@0/ac0000.geniqup/a94000.spi/spi_master/spi13/spi13.0/input/input3
[Fri Jul 24 12:57:02 2026] Console: switching to colour frame buffer device 135x150
[Fri Jul 24 12:57:02 2026] fb0: sys_imageblit: framebuffer is not in virtual address space.
[Fri Jul 24 12:57:02 2026] msm_dpu ae01000.display-controller: [drm] fb0: msmdrmfb frame buffer device
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: Setting up USB gadget through configfs
[Fri Jul 24 12:57:02 2026] configfs-gadget.g1 gadget.0: HOST MAC 8e:d9:ad:45:f3:27
[Fri Jul 24 12:57:02 2026] configfs-gadget.g1 gadget.0: MAC a6:6f:fa:59:af:63
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: Trying to start server with parameters: Server IP addr: 172.16.42.1:67, client IP addr: 172.16.42.2, interface: usb0
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: Setting framebuffer mode to: U:1080x2400p-0
[Fri Jul 24 12:57:02 2026] msm_dpu ae01000.display-controller: Direct firmware load for qcom/a660_sqe.fw failed with error -2
[Fri Jul 24 12:57:02 2026] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] ERROR failed to load a660_sqe.fw
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: Waiting for super partition /dev/sde26...
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: Waiting for super partition /dev/sde26...
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: device-mapper: create ioctl on product_a failed: Resource busy
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: device-mapper: create ioctl on system_a failed: Resource busy
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: device-mapper: create ioctl on system_ext_a failed: Resource busy
[Fri Jul 24 12:57:02 2026] [pmOS-rd]: device-mapper: create ioctl on vendor_a failed: Resource busy
[Fri Jul 24 12:57:03 2026] [pmOS-rd]: Trying to mount subpartitions for 10 seconds...
[Fri Jul 24 12:57:05 2026] [pmOS-rd]: Mount subpartitions of /dev/sde27
[Fri Jul 24 12:57:05 2026] loop0: detected capacity change from 0 to 227227608
[Fri Jul 24 12:57:05 2026] loop0: p1 p2
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: Not resizing root partition (/dev/loop0p2): no free space left
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: Auto-repair and check 'ext' filesystem (/dev/loop0p2)
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: pmOS_root: clean, 156034/14125584 files, 3848594/28278518 blocks
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: Resize 'ext4' root filesystem (/dev/loop0p2)
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: resize2fs 1.47.4 (6-Mar-2025)
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: The filesystem is already 28278518 (4k) blocks long. Nothing to do!
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: Mount root partition (/dev/loop0p2) to /sysroot (read-write) with options defaults
[Fri Jul 24 12:57:06 2026] EXT4-fs (loop0p2): mounted filesystem c469317b-6764-46e9-9263-9b835d8bc2f0 r/w with ordered data mode. Quota mode: none.
[Fri Jul 24 12:57:06 2026] [pmOS-rd]: Switching root
[Fri Jul 24 12:57:06 2026] syslogd exiting
[Fri Jul 24 12:57:06 2026] systemd[1]: System time advanced to timestamp on /var/lib/systemd/timesync/clock: Fri 2026-07-24 12:30:33 CEST
[Fri Jul 24 12:57:07 2026] systemd[1]: systemd 261.1 running in system mode (+PAM +AUDIT -SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON -UTMP +LIBARCHIVE)
[Fri Jul 24 12:57:07 2026] systemd[1]: Detected architecture arm64.
[Fri Jul 24 12:57:07 2026] systemd[1]: Hostname set to .
[Fri Jul 24 12:57:07 2026] systemd[1]: bpf-restrict-fs: Failed to link program; assuming BPF LSM is not available.
[Fri Jul 24 12:57:08 2026] systemd[1]: /usr/lib/systemd/system/avahi-daemon.socket:22: ListenStream= references a path below legacy directory /var/run/, updating /var/run/avahi-daemon/socket → /run/avahi-daemon/socket; please update the unit file accordingly.
[Fri Jul 24 12:57:08 2026] systemd[1]: Queued start job for default target Graphical Interface.
[Fri Jul 24 12:57:08 2026] systemd[1]: Created slice Slice /system/getty.
[Fri Jul 24 12:57:08 2026] systemd[1]: Created slice Slice /system/modprobe.
[Fri Jul 24 12:57:08 2026] systemd[1]: Created slice Slice /system/serial-getty.
[Fri Jul 24 12:57:08 2026] systemd[1]: Created slice User and Session Slice.
[Fri Jul 24 12:57:08 2026] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[Fri Jul 24 12:57:08 2026] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[Fri Jul 24 12:57:08 2026] systemd[1]: Expecting device /dev/disk/by-uuid/B981-E282...
[Fri Jul 24 12:57:08 2026] systemd[1]: Expecting device /dev/ttyMSM0...
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Image Downloads.
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Local Integrity Protected Volumes.
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Remote Encrypted Volumes.
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Remote File Systems.
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Remote Integrity Protected Volumes.
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Remote Verity Protected Volumes.
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Slice Units.
[Fri Jul 24 12:57:08 2026] systemd[1]: Reached target Local Verity Protected Volumes.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Query the User Interactively for a Password.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Process Core Dump Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Credential Encryption/Decryption.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Factory Reset Management.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Hostname Service Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Journal Socket (/dev/log).
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Journal Sockets.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on DDI File System Mounter Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Console Output Muting Service Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Namespace Resource Manager Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-os
[Fri Jul 24 12:57:08 2026] systemd[1]: Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Disk Repartitioning Service Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Report System Basic Metrics Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on CGroup Report Varlink Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Simple Block Device Backed Storage Provider.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on Simple File System Backed Storage Provider.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on udev Control Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on udev Kernel Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Listening on udev Varlink Socket.
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounting Huge Pages File System...
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounting POSIX Message Queue File System...
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounting Kernel Debug File System...
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounting Kernel Trace File System...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Create List of Static Device Nodes...
[Fri Jul 24 12:57:08 2026] systemd[1]: Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
[Fri Jul 24 12:57:08 2026] systemd[1]: Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
[Fri Jul 24 12:57:08 2026] systemd[1]: Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Load Kernel Module fuse...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting nftables static rule set...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Enable compressed swap in memory using zram...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Setting the system time according to an offset file...
[Fri Jul 24 12:57:08 2026] systemd[1]: Clear SysFail Entry If The Boot Is Successful skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/LoaderEntrySysFail-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Journal Service...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Load Kernel Modules...
[Fri Jul 24 12:57:08 2026] systemd[1]: TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-os
[Fri Jul 24 12:57:08 2026] systemd[1]: TPM PCR OS Separator skipped, unmet condition check ConditionSecurity=measured-os
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Remount Root and Kernel File Systems...
[Fri Jul 24 12:57:08 2026] systemd[1]: Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-os
[Fri Jul 24 12:57:08 2026] systemd[1]: TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionPathExists=/etc/initrd-release
[Fri Jul 24 12:57:08 2026] systemd[1]: TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-os
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Load udev Rules from Credentials...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Coldplug All udev Devices...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Virtual Console Setup...
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounted Huge Pages File System.
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounted POSIX Message Queue File System.
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounted Kernel Debug File System.
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounted Kernel Trace File System.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Create List of Static Device Nodes.
[Fri Jul 24 12:57:08 2026] fuse: init (API version 7.45)
[Fri Jul 24 12:57:08 2026] systemd-journald[671]: Collecting audit messages is disabled.
[Fri Jul 24 12:57:08 2026] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Load Kernel Module fuse.
[Fri Jul 24 12:57:08 2026] systemd[1]: swclock-offset-boot.service: Deactivated successfully.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Setting the system time according to an offset file.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Load Kernel Modules.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Load udev Rules from Credentials.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Virtual Console Setup.
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounting FUSE Control File System...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Apply Kernel Variables...
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
[Fri Jul 24 12:57:08 2026] EXT4-fs (loop0p2): re-mounted c469317b-6764-46e9-9263-9b835d8bc2f0.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Apply Kernel Variables.
[Fri Jul 24 12:57:08 2026] systemd[1]: Mounted FUSE Control File System.
[Fri Jul 24 12:57:08 2026] systemd[1]: Finished Remount Root and Kernel File Systems.
[Fri Jul 24 12:57:08 2026] systemd[1]: Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
[Fri Jul 24 12:57:08 2026] systemd[1]: Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
[Fri Jul 24 12:57:08 2026] systemd[1]: Starting Load/Save OS Random Seed...
[Fri Jul 24 12:57:08 2026] systemd[1]: TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-os
[Fri Jul 24 12:57:08 2026] zram0: detected capacity change from 0 to 22609920
[Fri Jul 24 12:57:08 2026] systemd[1]: Started Journal Service.
[Fri Jul 24 12:57:08 2026] Adding 11304956k swap on /dev/zram0. Priority:-1 extents:1 across:11304956k SS
[Fri Jul 24 12:57:08 2026] systemd-journald[671]: Received client request to flush runtime journal.
[Fri Jul 24 12:57:08 2026] tun: Universal TUN/TAP device driver, 1.6
[Fri Jul 24 12:57:08 2026] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-bat: failed to send uevent
[Fri Jul 24 12:57:08 2026] power_supply qcom-battmgr-bat: uevent: failed to send synthetic uevent: -11
[Fri Jul 24 12:57:08 2026] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-usb: failed to send uevent
[Fri Jul 24 12:57:08 2026] power_supply qcom-battmgr-usb: uevent: failed to send synthetic uevent: -11
[Fri Jul 24 12:57:08 2026] synth uevent: /devices/platform/pmic-glink/pmic_glink.power-supply.0/power_supply/qcom-battmgr-wls: failed to send uevent
[Fri Jul 24 12:57:08 2026] power_supply qcom-battmgr-wls: uevent: failed to send synthetic uevent: -11
[Fri Jul 24 12:57:10 2026] ipa 1e40000.ipa: limiting IPA memory size to 0x00003000
[Fri Jul 24 12:57:10 2026] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[Fri Jul 24 12:57:10 2026] ipa 1e40000.ipa: IPA driver initialized
[Fri Jul 24 12:57:10 2026] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[Fri Jul 24 12:57:10 2026] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[Fri Jul 24 12:57:10 2026] ipa 1e40000.ipa: IPA driver setup completed successfully
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc0: modem is available
[Fri Jul 24 12:57:10 2026] ath11k 17a10040.wifi: wcn6750 hw1.0
[Fri Jul 24 12:57:10 2026] aw88261 1-0034: chip id = 2113
[Fri Jul 24 12:57:10 2026] aw88261 1-0035: chip id = 2113
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc1: adsp is available
[Fri Jul 24 12:57:10 2026] irq: IRQ200: trimming hierarchy from :soc@0:interrupt-controller@b220000-9
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc2: wpss is available
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc3: cdsp is available
[Fri Jul 24 12:57:10 2026] qcom_pmic_glink pmic-glink: Failed to create device link (0x180) with supplier 4-0042 for /pmic-glink/connector@0
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_i2c_probe Enter...
[Fri Jul 24 12:57:10 2026] ath11k 17a10040.wifi: wcn6750 hw1.0
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc2: powering up wpss
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c chip rev: 01
[Fri Jul 24 12:57:10 2026] wl2864c_regulator_init: LDO0, min:48
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_regulator_init: LDO0, default:36
[Fri Jul 24 12:57:10 2026] wl2864c_regulator_init: LDO1, min:48
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_regulator_init: LDO1, default:48
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc3: powering up cdsp
[Fri Jul 24 12:57:10 2026] wl2864c_regulator_init: LDO2, min:128
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_regulator_init: LDO2, default:128
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc3: Booting fw image qcom/sm7325/motorola/dubai/cdsp.mbn, size 3604480
[Fri Jul 24 12:57:10 2026] wl2864c_regulator_init: LDO3, min:128
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_regulator_init: LDO3, default:128
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc1: powering up adsp
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc2: Booting fw image qcom/sm7325/motorola/dubai/wpss.mbn, size 7435056
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc1: Booting fw image qcom/sm7325/motorola/dubai/adsp.mbn, size 17903536
[Fri Jul 24 12:57:10 2026] wl2864c_regulator_init: LDO4, min:128
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_regulator_init: LDO4, default:128
[Fri Jul 24 12:57:10 2026] wl2864c_regulator_init: LDO5, min:128
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_regulator_init: LDO5, default:48
[Fri Jul 24 12:57:10 2026] wl2864c_regulator_init: LDO6, min:128
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_regulator_init: LDO6, default:48
[Fri Jul 24 12:57:10 2026] wl2864c-regulator 4-0029: wl2864c_i2c_probe Exit...
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc2: remote processor wpss is now up
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc3: remote processor cdsp is now up
[Fri Jul 24 12:57:10 2026] Bluetooth: Core ver 2.22
[Fri Jul 24 12:57:10 2026] NET: Registered PF_BLUETOOTH protocol family
[Fri Jul 24 12:57:10 2026] Bluetooth: HCI device and connection manager initialized
[Fri Jul 24 12:57:10 2026] Bluetooth: HCI socket layer initialized
[Fri Jul 24 12:57:10 2026] Bluetooth: L2CAP socket layer initialized
[Fri Jul 24 12:57:10 2026] Bluetooth: SCO socket layer initialized
[Fri Jul 24 12:57:10 2026] at24 17-0050: 16384 byte gt24p128e EEPROM, read-only
[Fri Jul 24 12:57:10 2026] Bluetooth: HCI UART driver ver 2.3
[Fri Jul 24 12:57:10 2026] Bluetooth: HCI UART protocol H4 registered
[Fri Jul 24 12:57:10 2026] usbcore: registered new interface driver snd-usb-audio
[Fri Jul 24 12:57:10 2026] Bluetooth: HCI UART protocol Broadcom registered
[Fri Jul 24 12:57:10 2026] Bluetooth: HCI UART protocol QCA registered
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: setting up wcn6750
[Fri Jul 24 12:57:10 2026] remoteproc remoteproc1: remote processor adsp is now up
[Fri Jul 24 12:57:10 2026] qcom,apr 3700000.remoteproc:glink-edge.apr_audio_svc.-1.-1: Adding APR/GPR dev: aprsvc:service:4:3
[Fri Jul 24 12:57:10 2026] qcom,fastrpc a300000.remoteproc:glink-edge.fastrpcglink-apps-dsp.-1.-1: no reserved DMA memory for FASTRPC
[Fri Jul 24 12:57:10 2026] qcom,apr 3700000.remoteproc:glink-edge.apr_audio_svc.-1.-1: Adding APR/GPR dev: aprsvc:service:4:4
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: QCA Product ID :0x00000015
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: QCA SOC Version :0x40140110
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: QCA ROM Version :0x00000101
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: QCA Patch Version:0x000024c7
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: QCA controller version 0x01100101
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: unexpected event for opcode 0xfc48
[Fri Jul 24 12:57:10 2026] Bluetooth: hci0: QCA Downloading qca/msbtfw11.mbn
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@1: Adding to iommu group 15
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@2: Adding to iommu group 16
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@3: Adding to iommu group 17
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@4: Adding to iommu group 18
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@5: Adding to iommu group 19
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@6: Adding to iommu group 20
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@7: Adding to iommu group 21
[Fri Jul 24 12:57:10 2026] platform 3700000.remoteproc:glink-edge:apr:service@4:usbd: Adding to iommu group 22
[Fri Jul 24 12:57:10 2026] qcom,apr 3700000.remoteproc:glink-edge.apr_audio_svc.-1.-1: Adding APR/GPR dev: aprsvc:service:4:7
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@8: Adding to iommu group 23
[Fri Jul 24 12:57:10 2026] platform 3700000.remoteproc:glink-edge:apr:service@7:dais: Adding to iommu group 24
[Fri Jul 24 12:57:10 2026] qcom,apr 3700000.remoteproc:glink-edge.apr_audio_svc.-1.-1: Adding APR/GPR dev: aprsvc:service:4:8
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@11: Adding to iommu group 25
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@12: Adding to iommu group 26
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@13: Adding to iommu group 27
[Fri Jul 24 12:57:10 2026] platform a300000.remoteproc:glink-edge:fastrpc:compute-cb@14: Adding to iommu group 28
[Fri Jul 24 12:57:10 2026] qcom,fastrpc 3700000.remoteproc:glink-edge.fastrpcglink-apps-dsp.-1.-1: no reserved DMA memory for FASTRPC
[Fri Jul 24 12:57:10 2026] platform 3700000.remoteproc:glink-edge:fastrpc:compute-cb@3: Adding to iommu group 29
[Fri Jul 24 12:57:10 2026] platform 3700000.remoteproc:glink-edge:fastrpc:compute-cb@4: Adding to iommu group 30
[Fri Jul 24 12:57:10 2026] platform 3700000.remoteproc:glink-edge:fastrpc:compute-cb@5: Adding to iommu group 31
[Fri Jul 24 12:57:11 2026] qcom-soundwire 3210000.soundwire: din-ports (0) mismatch with controller (1)
[Fri Jul 24 12:57:11 2026] qcom-soundwire 3210000.soundwire: dout-ports (5) mismatch with controller (6)
[Fri Jul 24 12:57:11 2026] ath11k 17a10040.wifi: chip_id 0x1 chip_family 0xb board_id 0xff soc_id 0xffffffff
[Fri Jul 24 12:57:11 2026] ath11k 17a10040.wifi: fw_version 0x10137fff fw_build_timestamp 2025-02-06 07:38 fw_build_id WLAN.MSL.1.0.1-01477-QCAMSLSWPLZ-1.83649.4
[Fri Jul 24 12:57:11 2026] qcom-soundwire 3230000.soundwire: din-ports (3) mismatch with controller (4)
[Fri Jul 24 12:57:11 2026] wcd937x_codec audio-codec: bound sdw:2:0:0217:010a:00:4 (ops wcd_sdw_component_ops [snd_soc_wcd_common])
[Fri Jul 24 12:57:11 2026] wcd937x_codec audio-codec: bound sdw:3:0:0217:010a:00:3 (ops wcd_sdw_component_ops [snd_soc_wcd_common])
[Fri Jul 24 12:57:11 2026] aw88261 1-0034: loaded qcom/sm7325/motorola/dubai/aw88261_acf.bin - size: 1944
[Fri Jul 24 12:57:11 2026] aw88261 1-0035: loaded qcom/sm7325/motorola/dubai/aw88261_acf.bin - size: 1944
[Fri Jul 24 12:57:11 2026] aw88261 1-0034: already power off
[Fri Jul 24 12:57:11 2026] aw88261 1-0035: already power off
[Fri Jul 24 12:57:11 2026] input: Motorola-dubai Headset Jack as /devices/platform/sound/sound/card0/input4
[Fri Jul 24 12:57:11 2026] input: Motorola-dubai USB Offload Jack as /devices/platform/sound/sound/card0/input5
[Fri Jul 24 12:57:11 2026] FAT-fs (loop0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[Fri Jul 24 12:57:11 2026] systemd-journald[671]: Time jumped backwards, rotating.
[Fri Jul 24 12:57:11 2026] remoteproc remoteproc0: powering up modem
[Fri Jul 24 12:57:11 2026] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[Fri Jul 24 12:57:11 2026] Bluetooth: BNEP filters: protocol multicast
[Fri Jul 24 12:57:11 2026] Bluetooth: BNEP socket layer initialized
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA Downloading qca/msnv11.bin
[Fri Jul 24 12:57:12 2026] remoteproc remoteproc0: Booting fw image qcom/sm7325/motorola/dubai/modem.mbn, size 88608932
[Fri Jul 24 12:57:12 2026] ipa 1e40000.ipa: received modem starting event
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA setup on UART is completed
[Fri Jul 24 12:57:12 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=3, x1=0x0
[Fri Jul 24 12:57:12 2026] ipa 1e40000.ipa: received modem running event
[Fri Jul 24 12:57:12 2026] remoteproc remoteproc0: remote processor modem is now up
[Fri Jul 24 12:57:12 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 12:57:12 2026] Bluetooth: MGMT ver 1.23
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: setting up wcn6750
[Fri Jul 24 12:57:12 2026] Thread-1 (_thre: vm.laptop_mode is deprecated. Ignoring setting.
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA Product ID :0x00000015
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA SOC Version :0x40140110
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA ROM Version :0x00000101
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA Patch Version:0x000024c7
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA controller version 0x01100101
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: unexpected event for opcode 0xfc48
[Fri Jul 24 12:57:12 2026] Bluetooth: hci0: QCA Downloading qca/msbtfw11.mbn
[Fri Jul 24 12:57:13 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 12:57:13 2026] wcd937x_codec audio-codec: wcd937x_mbhc_get_result_params: d1=30, c1=3, x1=0xedd, z_val=14412 (milliohm)
[Fri Jul 24 12:57:13 2026] Bluetooth: hci0: QCA Downloading qca/msnv11.bin
[Fri Jul 24 12:57:14 2026] Bluetooth: hci0: QCA setup on UART is completed
[Fri Jul 24 12:57:14 2026] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] loaded qcom/a660_sqe.fw from new location
[Fri Jul 24 12:57:14 2026] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] loaded qcom/a660_gmu.bin from new location
[Fri Jul 24 12:57:14 2026] [drm] Loaded GMU firmware v3.1.10
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: wcd_measure_adc_once: adc complete: 0, adc timeout: 1
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: ASoC error (-16): at soc_component_read_no_lock() on audio-codec for register: [0x00003125]
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: wcd_measure_adc_once: adc complete: 0, adc timeout: 1
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 12:57:16 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 12:57:16 2026] MultiMedia1: ASoC: no backend DAIs enabled for MultiMedia1, possibly missing ALSA mixer-based routing or UCM profile
[Fri Jul 24 12:57:17 2026] Bluetooth: RFCOMM TTY layer initialized
[Fri Jul 24 12:57:17 2026] Bluetooth: RFCOMM socket layer initialized
[Fri Jul 24 12:57:17 2026] Bluetooth: RFCOMM ver 1.11
[Fri Jul 24 12:57:18 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:21 2026] amba 7140000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] amba 7240000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] amba 7340000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] amba 7440000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] amba 7540000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] amba 7640000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] amba 7740000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] amba 7040000.etm: deferred probe pending: (reason unknown)
[Fri Jul 24 12:57:21 2026] gcc-sc7280 100000.clock-controller: sync_state() pending due to chosen:framebuffer
[Fri Jul 24 12:57:21 2026] gcc-sc7280 100000.clock-controller: sync_state() pending due to 3d6a000.gmu
[Fri Jul 24 12:57:21 2026] gpu_cc-sc7280 3d90000.clock-controller: sync_state() pending due to 3d6a000.gmu
[Fri Jul 24 12:57:21 2026] disp_cc-sc7280 af00000.clock-controller: sync_state() pending due to chosen:framebuffer
[Fri Jul 24 12:57:30 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 12:57:30 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 12:57:30 2026] wlan0: authenticated
[Fri Jul 24 12:57:30 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 12:57:30 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Fri Jul 24 12:57:30 2026] wlan0: associated
[Fri Jul 24 12:57:30 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 12:57:35 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:35 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:35 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:35 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:35 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:35 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:35 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Fri Jul 24 12:57:35 2026] rfkill: input handler disabled
[Fri Jul 24 12:57:49 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 12:57:54 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 12:59:33 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:00:45 2026] thermal thermal_zone31: Unable to get temperature, disabling!
[Fri Jul 24 13:00:45 2026] thermal thermal_zone37: Unable to get temperature, disabling!
[Fri Jul 24 13:00:45 2026] thermal thermal_zone34: Unable to get temperature, disabling!
[Fri Jul 24 13:00:45 2026] thermal thermal_zone30: Unable to get temperature, disabling!
[Fri Jul 24 13:00:45 2026] thermal thermal_zone36: Unable to get temperature, disabling!
[Fri Jul 24 13:00:45 2026] thermal thermal_zone35: Unable to get temperature, disabling!
[Fri Jul 24 13:00:45 2026] thermal thermal_zone32: Unable to get temperature, disabling!
[Fri Jul 24 13:00:45 2026] thermal thermal_zone33: Unable to get temperature, disabling!
[Fri Jul 24 13:10:23 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:15:11 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:15:11 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 13:15:11 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:15:11 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:15:11 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 13:15:11 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:15:11 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Fri Jul 24 13:15:48 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 13:16:23 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:17:05 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:17:49 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:18:41 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:18:41 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 13:19:18 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 13:29:02 2026] dsi_err_worker: status=5
[Fri Jul 24 13:44:20 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Fri Jul 24 13:44:20 2026] PM: suspend entry (deep)
[Fri Jul 24 13:44:20 2026] Filesystems sync: 0.031 seconds
[Fri Jul 24 13:44:21 2026] Freezing user space processes
[Fri Jul 24 13:44:21 2026] Freezing user space processes completed (elapsed 0.002 seconds)
[Fri Jul 24 13:44:21 2026] OOM killer disabled.
[Fri Jul 24 13:44:21 2026] Freezing remaining freezable tasks
[Fri Jul 24 13:44:21 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 13:44:21 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 13:44:21 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 13:44:21 2026] Disabling non-boot CPUs ...
[Fri Jul 24 13:44:21 2026] psci: CPU7 killed (polled 0 ms)
[Fri Jul 24 13:44:21 2026] psci: CPU6 killed (polled 0 ms)
[Fri Jul 24 13:44:21 2026] psci: CPU5 killed (polled 0 ms)
[Fri Jul 24 13:44:21 2026] psci: CPU4 killed (polled 0 ms)
[Fri Jul 24 13:44:21 2026] psci: CPU3 killed (polled 0 ms)
[Fri Jul 24 13:44:21 2026] psci: CPU2 killed (polled 0 ms)
[Fri Jul 24 13:44:21 2026] psci: CPU1 killed (polled 0 ms)
[Fri Jul 24 13:44:21 2026] Enabling non-boot CPUs ...
[Fri Jul 24 13:44:21 2026] Detected VIPT I-cache on CPU1
[Fri Jul 24 13:44:21 2026] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[Fri Jul 24 13:44:21 2026] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[Fri Jul 24 13:44:21 2026] CPU1 is up
[Fri Jul 24 13:44:21 2026] Detected VIPT I-cache on CPU2
[Fri Jul 24 13:44:21 2026] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[Fri Jul 24 13:44:21 2026] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[Fri Jul 24 13:44:21 2026] CPU2 is up
[Fri Jul 24 13:44:21 2026] Detected VIPT I-cache on CPU3
[Fri Jul 24 13:44:21 2026] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[Fri Jul 24 13:44:21 2026] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[Fri Jul 24 13:44:21 2026] CPU3 is up
[Fri Jul 24 13:44:21 2026] Detected PIPT I-cache on CPU4
[Fri Jul 24 13:44:21 2026] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[Fri Jul 24 13:44:21 2026] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[Fri Jul 24 13:44:21 2026] CPU4 is up
[Fri Jul 24 13:44:21 2026] Detected PIPT I-cache on CPU5
[Fri Jul 24 13:44:21 2026] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[Fri Jul 24 13:44:21 2026] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[Fri Jul 24 13:44:21 2026] CPU5 is up
[Fri Jul 24 13:44:21 2026] Detected PIPT I-cache on CPU6
[Fri Jul 24 13:44:21 2026] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[Fri Jul 24 13:44:21 2026] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[Fri Jul 24 13:44:21 2026] CPU6 is up
[Fri Jul 24 13:44:21 2026] Detected PIPT I-cache on CPU7
[Fri Jul 24 13:44:21 2026] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[Fri Jul 24 13:44:21 2026] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[Fri Jul 24 13:44:21 2026] CPU7 is up
[Fri Jul 24 13:44:21 2026] OOM killer enabled.
[Fri Jul 24 13:44:21 2026] Restarting tasks: Starting
[Fri Jul 24 13:44:21 2026] Restarting tasks: Done
[Fri Jul 24 13:44:21 2026] random: crng reseeded on system resumption
[Fri Jul 24 13:44:21 2026] PM: suspend exit
[Fri Jul 24 13:44:30 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 13:44:30 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 13:44:30 2026] wlan0: authenticated
[Fri Jul 24 13:44:30 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 13:44:30 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Fri Jul 24 13:44:30 2026] wlan0: associated
[Fri Jul 24 13:44:30 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 13:59:23 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Fri Jul 24 13:59:24 2026] PM: suspend entry (deep)
[Fri Jul 24 13:59:24 2026] Filesystems sync: 0.032 seconds
[Fri Jul 24 13:59:24 2026] Freezing user space processes
[Fri Jul 24 13:59:24 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Fri Jul 24 13:59:24 2026] OOM killer disabled.
[Fri Jul 24 13:59:24 2026] Freezing remaining freezable tasks
[Fri Jul 24 13:59:24 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 13:59:24 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 13:59:24 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 13:59:24 2026] Disabling non-boot CPUs ...
[Fri Jul 24 13:59:24 2026] psci: CPU7 killed (polled 0 ms)
[Fri Jul 24 13:59:24 2026] psci: CPU6 killed (polled 0 ms)
[Fri Jul 24 13:59:24 2026] psci: CPU5 killed (polled 0 ms)
[Fri Jul 24 13:59:24 2026] psci: CPU4 killed (polled 0 ms)
[Fri Jul 24 13:59:24 2026] psci: CPU3 killed (polled 0 ms)
[Fri Jul 24 13:59:24 2026] psci: CPU2 killed (polled 0 ms)
[Fri Jul 24 13:59:24 2026] psci: CPU1 killed (polled 0 ms)
[Fri Jul 24 13:59:24 2026] Enabling non-boot CPUs ...
[Fri Jul 24 13:59:24 2026] Detected VIPT I-cache on CPU1
[Fri Jul 24 13:59:24 2026] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[Fri Jul 24 13:59:24 2026] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[Fri Jul 24 13:59:24 2026] CPU1 is up
[Fri Jul 24 13:59:24 2026] Detected VIPT I-cache on CPU2
[Fri Jul 24 13:59:24 2026] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[Fri Jul 24 13:59:24 2026] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[Fri Jul 24 13:59:24 2026] CPU2 is up
[Fri Jul 24 13:59:24 2026] Detected VIPT I-cache on CPU3
[Fri Jul 24 13:59:24 2026] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[Fri Jul 24 13:59:24 2026] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[Fri Jul 24 13:59:24 2026] CPU3 is up
[Fri Jul 24 13:59:24 2026] Detected PIPT I-cache on CPU4
[Fri Jul 24 13:59:24 2026] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[Fri Jul 24 13:59:24 2026] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[Fri Jul 24 13:59:24 2026] CPU4 is up
[Fri Jul 24 13:59:24 2026] Detected PIPT I-cache on CPU5
[Fri Jul 24 13:59:24 2026] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[Fri Jul 24 13:59:24 2026] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[Fri Jul 24 13:59:24 2026] CPU5 is up
[Fri Jul 24 13:59:24 2026] Detected PIPT I-cache on CPU6
[Fri Jul 24 13:59:24 2026] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[Fri Jul 24 13:59:24 2026] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[Fri Jul 24 13:59:24 2026] CPU6 is up
[Fri Jul 24 13:59:24 2026] Detected PIPT I-cache on CPU7
[Fri Jul 24 13:59:24 2026] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[Fri Jul 24 13:59:24 2026] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[Fri Jul 24 13:59:24 2026] CPU7 is up
[Fri Jul 24 13:59:24 2026] OOM killer enabled.
[Fri Jul 24 13:59:24 2026] Restarting tasks: Starting
[Fri Jul 24 13:59:24 2026] Restarting tasks: Done
[Fri Jul 24 13:59:24 2026] random: crng reseeded on system resumption
[Fri Jul 24 13:59:24 2026] PM: suspend exit
[Fri Jul 24 13:59:34 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 13:59:34 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 13:59:34 2026] wlan0: authenticated
[Fri Jul 24 13:59:34 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 13:59:34 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Fri Jul 24 13:59:34 2026] wlan0: associated
[Fri Jul 24 13:59:34 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 13:59:35 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 14:54:00 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 14:54:00 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 14:54:00 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 2/3)
[Fri Jul 24 14:54:00 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 3/3)
[Fri Jul 24 14:54:00 2026] wlan0: authentication with 7c:39:53:e9:9d:fb timed out
[Fri Jul 24 14:54:25 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 14:54:25 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 14:54:25 2026] wlan0: authenticated
[Fri Jul 24 14:54:25 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 14:54:25 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Fri Jul 24 14:54:25 2026] wlan0: associated
[Fri Jul 24 14:54:25 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 14:56:00 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 14:56:00 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 14:56:00 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 2/3)
[Fri Jul 24 14:56:00 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 3/3)
[Fri Jul 24 14:56:00 2026] wlan0: authentication with 7c:39:53:e9:9d:fb timed out
[Fri Jul 24 14:58:22 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 14:58:43 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 15:14:33 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 15:28:05 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 15:28:06 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 15:31:42 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 16:07:19 2026] PM: suspend entry (deep)
[Fri Jul 24 16:07:19 2026] Filesystems sync: 0.025 seconds
[Fri Jul 24 16:07:19 2026] Freezing user space processes
[Fri Jul 24 16:07:19 2026] Freezing user space processes completed (elapsed 0.001 seconds)
[Fri Jul 24 16:07:19 2026] OOM killer disabled.
[Fri Jul 24 16:07:19 2026] Freezing remaining freezable tasks
[Fri Jul 24 16:07:19 2026] Freezing remaining freezable tasks completed (elapsed 0.000 seconds)
[Fri Jul 24 16:07:19 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 16:07:19 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 16:07:20 2026] Disabling non-boot CPUs ...
[Fri Jul 24 16:07:20 2026] psci: CPU7 killed (polled 0 ms)
[Fri Jul 24 16:07:20 2026] psci: CPU6 killed (polled 0 ms)
[Fri Jul 24 16:07:20 2026] psci: CPU5 killed (polled 0 ms)
[Fri Jul 24 16:07:20 2026] psci: CPU4 killed (polled 0 ms)
[Fri Jul 24 16:07:20 2026] psci: CPU3 killed (polled 0 ms)
[Fri Jul 24 16:07:20 2026] psci: CPU2 killed (polled 0 ms)
[Fri Jul 24 16:07:20 2026] psci: CPU1 killed (polled 0 ms)
[Fri Jul 24 16:07:20 2026] Enabling non-boot CPUs ...
[Fri Jul 24 16:07:20 2026] Detected VIPT I-cache on CPU1
[Fri Jul 24 16:07:20 2026] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[Fri Jul 24 16:07:20 2026] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[Fri Jul 24 16:07:20 2026] CPU1 is up
[Fri Jul 24 16:07:20 2026] Detected VIPT I-cache on CPU2
[Fri Jul 24 16:07:20 2026] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[Fri Jul 24 16:07:20 2026] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[Fri Jul 24 16:07:20 2026] CPU2 is up
[Fri Jul 24 16:07:20 2026] Detected VIPT I-cache on CPU3
[Fri Jul 24 16:07:20 2026] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[Fri Jul 24 16:07:20 2026] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[Fri Jul 24 16:07:20 2026] CPU3 is up
[Fri Jul 24 16:07:20 2026] Detected PIPT I-cache on CPU4
[Fri Jul 24 16:07:20 2026] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[Fri Jul 24 16:07:20 2026] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[Fri Jul 24 16:07:20 2026] CPU4 is up
[Fri Jul 24 16:07:20 2026] Detected PIPT I-cache on CPU5
[Fri Jul 24 16:07:20 2026] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[Fri Jul 24 16:07:20 2026] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[Fri Jul 24 16:07:20 2026] CPU5 is up
[Fri Jul 24 16:07:20 2026] Detected PIPT I-cache on CPU6
[Fri Jul 24 16:07:20 2026] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[Fri Jul 24 16:07:20 2026] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[Fri Jul 24 16:07:20 2026] CPU6 is up
[Fri Jul 24 16:07:20 2026] Detected PIPT I-cache on CPU7
[Fri Jul 24 16:07:20 2026] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[Fri Jul 24 16:07:20 2026] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[Fri Jul 24 16:07:20 2026] CPU7 is up
[Fri Jul 24 16:07:20 2026] OOM killer enabled.
[Fri Jul 24 16:07:20 2026] Restarting tasks: Starting
[Fri Jul 24 16:07:20 2026] Restarting tasks: Done
[Fri Jul 24 16:07:20 2026] random: crng reseeded on system resumption
[Fri Jul 24 16:07:20 2026] PM: suspend exit
[Fri Jul 24 16:14:34 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 16:14:48 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 16:27:22 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Fri Jul 24 16:29:11 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 16:29:11 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 16:29:11 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 16:36:19 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 16:56:26 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 17:07:50 2026] dsi_err_worker: status=5
[Fri Jul 24 17:18:01 2026] PM: suspend entry (deep)
[Fri Jul 24 17:18:01 2026] Filesystems sync: 0.030 seconds
[Fri Jul 24 17:18:01 2026] Freezing user space processes
[Fri Jul 24 17:18:01 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Fri Jul 24 17:18:01 2026] OOM killer disabled.
[Fri Jul 24 17:18:01 2026] Freezing remaining freezable tasks
[Fri Jul 24 17:18:01 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 17:18:01 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 17:18:01 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 17:18:01 2026] Disabling non-boot CPUs ...
[Fri Jul 24 17:18:01 2026] psci: CPU7 killed (polled 0 ms)
[Fri Jul 24 17:18:01 2026] psci: CPU6 killed (polled 0 ms)
[Fri Jul 24 17:18:01 2026] psci: CPU5 killed (polled 0 ms)
[Fri Jul 24 17:18:01 2026] psci: CPU4 killed (polled 0 ms)
[Fri Jul 24 17:18:01 2026] psci: CPU3 killed (polled 0 ms)
[Fri Jul 24 17:18:01 2026] psci: CPU2 killed (polled 0 ms)
[Fri Jul 24 17:18:01 2026] psci: CPU1 killed (polled 0 ms)
[Fri Jul 24 17:18:01 2026] Enabling non-boot CPUs ...
[Fri Jul 24 17:18:01 2026] Detected VIPT I-cache on CPU1
[Fri Jul 24 17:18:01 2026] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[Fri Jul 24 17:18:01 2026] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[Fri Jul 24 17:18:01 2026] CPU1 is up
[Fri Jul 24 17:18:01 2026] Detected VIPT I-cache on CPU2
[Fri Jul 24 17:18:01 2026] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[Fri Jul 24 17:18:01 2026] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[Fri Jul 24 17:18:01 2026] CPU2 is up
[Fri Jul 24 17:18:01 2026] Detected VIPT I-cache on CPU3
[Fri Jul 24 17:18:01 2026] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[Fri Jul 24 17:18:01 2026] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[Fri Jul 24 17:18:01 2026] CPU3 is up
[Fri Jul 24 17:18:01 2026] Detected PIPT I-cache on CPU4
[Fri Jul 24 17:18:01 2026] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[Fri Jul 24 17:18:01 2026] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[Fri Jul 24 17:18:01 2026] CPU4 is up
[Fri Jul 24 17:18:01 2026] Detected PIPT I-cache on CPU5
[Fri Jul 24 17:18:01 2026] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[Fri Jul 24 17:18:01 2026] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[Fri Jul 24 17:18:01 2026] CPU5 is up
[Fri Jul 24 17:18:01 2026] Detected PIPT I-cache on CPU6
[Fri Jul 24 17:18:01 2026] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[Fri Jul 24 17:18:01 2026] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[Fri Jul 24 17:18:01 2026] CPU6 is up
[Fri Jul 24 17:18:01 2026] Detected PIPT I-cache on CPU7
[Fri Jul 24 17:18:01 2026] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[Fri Jul 24 17:18:01 2026] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[Fri Jul 24 17:18:01 2026] CPU7 is up
[Fri Jul 24 17:18:01 2026] OOM killer enabled.
[Fri Jul 24 17:18:01 2026] Restarting tasks: Starting
[Fri Jul 24 17:18:01 2026] Restarting tasks: Done
[Fri Jul 24 17:18:01 2026] random: crng reseeded on system resumption
[Fri Jul 24 17:18:01 2026] PM: suspend exit
[Fri Jul 24 17:52:43 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 18:00:27 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 18:09:04 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Fri Jul 24 18:09:11 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 18:25:11 2026] PM: suspend entry (deep)
[Fri Jul 24 18:25:11 2026] Filesystems sync: 0.028 seconds
[Fri Jul 24 18:25:11 2026] Freezing user space processes
[Fri Jul 24 18:25:11 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Fri Jul 24 18:25:11 2026] OOM killer disabled.
[Fri Jul 24 18:25:11 2026] Freezing remaining freezable tasks
[Fri Jul 24 18:25:11 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 18:25:11 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 18:25:11 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 18:25:11 2026] Disabling non-boot CPUs ...
[Fri Jul 24 18:25:11 2026] psci: CPU7 killed (polled 0 ms)
[Fri Jul 24 18:25:11 2026] psci: CPU6 killed (polled 0 ms)
[Fri Jul 24 18:25:11 2026] psci: CPU5 killed (polled 0 ms)
[Fri Jul 24 18:25:11 2026] psci: CPU4 killed (polled 0 ms)
[Fri Jul 24 18:25:11 2026] psci: CPU3 killed (polled 0 ms)
[Fri Jul 24 18:25:11 2026] psci: CPU2 killed (polled 0 ms)
[Fri Jul 24 18:25:11 2026] psci: CPU1 killed (polled 0 ms)
[Fri Jul 24 18:25:11 2026] Enabling non-boot CPUs ...
[Fri Jul 24 18:25:11 2026] Detected VIPT I-cache on CPU1
[Fri Jul 24 18:25:11 2026] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[Fri Jul 24 18:25:11 2026] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[Fri Jul 24 18:25:11 2026] CPU1 is up
[Fri Jul 24 18:25:11 2026] Detected VIPT I-cache on CPU2
[Fri Jul 24 18:25:11 2026] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[Fri Jul 24 18:25:11 2026] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[Fri Jul 24 18:25:11 2026] CPU2 is up
[Fri Jul 24 18:25:11 2026] Detected VIPT I-cache on CPU3
[Fri Jul 24 18:25:11 2026] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[Fri Jul 24 18:25:11 2026] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[Fri Jul 24 18:25:11 2026] CPU3 is up
[Fri Jul 24 18:25:11 2026] Detected PIPT I-cache on CPU4
[Fri Jul 24 18:25:11 2026] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[Fri Jul 24 18:25:11 2026] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[Fri Jul 24 18:25:11 2026] CPU4 is up
[Fri Jul 24 18:25:11 2026] Detected PIPT I-cache on CPU5
[Fri Jul 24 18:25:11 2026] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[Fri Jul 24 18:25:11 2026] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[Fri Jul 24 18:25:11 2026] CPU5 is up
[Fri Jul 24 18:25:11 2026] Detected PIPT I-cache on CPU6
[Fri Jul 24 18:25:11 2026] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[Fri Jul 24 18:25:11 2026] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[Fri Jul 24 18:25:11 2026] CPU6 is up
[Fri Jul 24 18:25:11 2026] Detected PIPT I-cache on CPU7
[Fri Jul 24 18:25:11 2026] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[Fri Jul 24 18:25:11 2026] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[Fri Jul 24 18:25:11 2026] CPU7 is up
[Fri Jul 24 18:25:11 2026] OOM killer enabled.
[Fri Jul 24 18:25:11 2026] Restarting tasks: Starting
[Fri Jul 24 18:25:11 2026] Restarting tasks: Done
[Fri Jul 24 18:25:11 2026] random: crng reseeded on system resumption
[Fri Jul 24 18:25:11 2026] PM: suspend exit
[Fri Jul 24 18:26:52 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 18:26:52 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 18:26:52 2026] wlan0: authenticated
[Fri Jul 24 18:26:52 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 18:26:52 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=4)
[Fri Jul 24 18:26:52 2026] wlan0: associated
[Fri Jul 24 18:26:52 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 18:41:50 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Fri Jul 24 18:41:51 2026] PM: suspend entry (deep)
[Fri Jul 24 18:41:51 2026] Filesystems sync: 0.048 seconds
[Fri Jul 24 18:41:51 2026] Freezing user space processes
[Fri Jul 24 18:41:51 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Fri Jul 24 18:41:51 2026] OOM killer disabled.
[Fri Jul 24 18:41:51 2026] Freezing remaining freezable tasks
[Fri Jul 24 18:41:51 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 18:41:51 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 18:41:51 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 18:41:51 2026] Disabling non-boot CPUs ...
[Fri Jul 24 18:41:51 2026] psci: CPU7 killed (polled 0 ms)
[Fri Jul 24 18:41:51 2026] psci: CPU6 killed (polled 0 ms)
[Fri Jul 24 18:41:51 2026] psci: CPU5 killed (polled 0 ms)
[Fri Jul 24 18:41:51 2026] psci: CPU4 killed (polled 0 ms)
[Fri Jul 24 18:41:51 2026] psci: CPU3 killed (polled 0 ms)
[Fri Jul 24 18:41:51 2026] psci: CPU2 killed (polled 0 ms)
[Fri Jul 24 18:41:51 2026] psci: CPU1 killed (polled 0 ms)
[Fri Jul 24 18:41:51 2026] Enabling non-boot CPUs ...
[Fri Jul 24 18:41:51 2026] Detected VIPT I-cache on CPU1
[Fri Jul 24 18:41:51 2026] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[Fri Jul 24 18:41:51 2026] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[Fri Jul 24 18:41:51 2026] CPU1 is up
[Fri Jul 24 18:41:51 2026] Detected VIPT I-cache on CPU2
[Fri Jul 24 18:41:51 2026] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[Fri Jul 24 18:41:51 2026] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[Fri Jul 24 18:41:51 2026] CPU2 is up
[Fri Jul 24 18:41:51 2026] Detected VIPT I-cache on CPU3
[Fri Jul 24 18:41:51 2026] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[Fri Jul 24 18:41:51 2026] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[Fri Jul 24 18:41:51 2026] CPU3 is up
[Fri Jul 24 18:41:51 2026] Detected PIPT I-cache on CPU4
[Fri Jul 24 18:41:51 2026] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[Fri Jul 24 18:41:51 2026] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[Fri Jul 24 18:41:51 2026] CPU4 is up
[Fri Jul 24 18:41:51 2026] Detected PIPT I-cache on CPU5
[Fri Jul 24 18:41:51 2026] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[Fri Jul 24 18:41:51 2026] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[Fri Jul 24 18:41:51 2026] CPU5 is up
[Fri Jul 24 18:41:51 2026] Detected PIPT I-cache on CPU6
[Fri Jul 24 18:41:51 2026] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[Fri Jul 24 18:41:51 2026] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[Fri Jul 24 18:41:51 2026] CPU6 is up
[Fri Jul 24 18:41:51 2026] Detected PIPT I-cache on CPU7
[Fri Jul 24 18:41:51 2026] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[Fri Jul 24 18:41:51 2026] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[Fri Jul 24 18:41:51 2026] CPU7 is up
[Fri Jul 24 18:41:51 2026] OOM killer enabled.
[Fri Jul 24 18:41:51 2026] Restarting tasks: Starting
[Fri Jul 24 18:41:51 2026] Restarting tasks: Done
[Fri Jul 24 18:41:51 2026] random: crng reseeded on system resumption
[Fri Jul 24 18:41:51 2026] PM: suspend exit
[Fri Jul 24 18:41:56 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 18:41:56 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 18:41:56 2026] wlan0: authenticated
[Fri Jul 24 18:41:56 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 18:41:56 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=4)
[Fri Jul 24 18:41:56 2026] wlan0: associated
[Fri Jul 24 18:41:56 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 19:08:56 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Fri Jul 24 19:08:57 2026] PM: suspend entry (deep)
[Fri Jul 24 19:08:57 2026] Filesystems sync: 0.040 seconds
[Fri Jul 24 19:08:57 2026] Freezing user space processes
[Fri Jul 24 19:08:57 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Fri Jul 24 19:08:57 2026] OOM killer disabled.
[Fri Jul 24 19:08:57 2026] Freezing remaining freezable tasks
[Fri Jul 24 19:08:57 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 19:08:57 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 19:08:57 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 19:08:57 2026] Disabling non-boot CPUs ...
[Fri Jul 24 19:08:57 2026] psci: CPU7 killed (polled 0 ms)
[Fri Jul 24 19:08:57 2026] psci: CPU6 killed (polled 0 ms)
[Fri Jul 24 19:08:57 2026] psci: CPU5 killed (polled 0 ms)
[Fri Jul 24 19:08:57 2026] psci: CPU4 killed (polled 0 ms)
[Fri Jul 24 19:08:57 2026] psci: CPU3 killed (polled 0 ms)
[Fri Jul 24 19:08:57 2026] psci: CPU2 killed (polled 0 ms)
[Fri Jul 24 19:08:57 2026] psci: CPU1 killed (polled 0 ms)
[Fri Jul 24 19:08:57 2026] Enabling non-boot CPUs ...
[Fri Jul 24 19:08:57 2026] Detected VIPT I-cache on CPU1
[Fri Jul 24 19:08:57 2026] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[Fri Jul 24 19:08:57 2026] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[Fri Jul 24 19:08:57 2026] CPU1 is up
[Fri Jul 24 19:08:57 2026] Detected VIPT I-cache on CPU2
[Fri Jul 24 19:08:57 2026] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[Fri Jul 24 19:08:57 2026] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[Fri Jul 24 19:08:57 2026] CPU2 is up
[Fri Jul 24 19:08:57 2026] Detected VIPT I-cache on CPU3
[Fri Jul 24 19:08:57 2026] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[Fri Jul 24 19:08:57 2026] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[Fri Jul 24 19:08:57 2026] CPU3 is up
[Fri Jul 24 19:08:57 2026] Detected PIPT I-cache on CPU4
[Fri Jul 24 19:08:57 2026] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[Fri Jul 24 19:08:57 2026] CPU4: Booted secondary processor 0x0000000400 [0x411fd411]
[Fri Jul 24 19:08:57 2026] CPU4 is up
[Fri Jul 24 19:08:57 2026] Detected PIPT I-cache on CPU5
[Fri Jul 24 19:08:57 2026] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[Fri Jul 24 19:08:57 2026] CPU5: Booted secondary processor 0x0000000500 [0x411fd411]
[Fri Jul 24 19:08:57 2026] CPU5 is up
[Fri Jul 24 19:08:57 2026] Detected PIPT I-cache on CPU6
[Fri Jul 24 19:08:57 2026] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[Fri Jul 24 19:08:57 2026] CPU6: Booted secondary processor 0x0000000600 [0x411fd411]
[Fri Jul 24 19:08:57 2026] CPU6 is up
[Fri Jul 24 19:08:57 2026] Detected PIPT I-cache on CPU7
[Fri Jul 24 19:08:57 2026] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[Fri Jul 24 19:08:57 2026] CPU7: Booted secondary processor 0x0000000700 [0x411fd411]
[Fri Jul 24 19:08:57 2026] CPU7 is up
[Fri Jul 24 19:08:58 2026] OOM killer enabled.
[Fri Jul 24 19:08:58 2026] Restarting tasks: Starting
[Fri Jul 24 19:08:58 2026] Restarting tasks: Done
[Fri Jul 24 19:08:58 2026] random: crng reseeded on system resumption
[Fri Jul 24 19:08:58 2026] PM: suspend exit
[Fri Jul 24 19:09:02 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 19:09:02 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 19:09:02 2026] wlan0: authenticated
[Fri Jul 24 19:09:02 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 19:09:02 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=4)
[Fri Jul 24 19:09:02 2026] wlan0: associated
[Fri Jul 24 19:09:02 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: setting up wcn6750
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: QCA Product ID :0x00000015
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: QCA SOC Version :0x40140110
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: QCA ROM Version :0x00000101
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: QCA Patch Version:0x000024c7
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: QCA controller version 0x01100101
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: unexpected event for opcode 0xfc48
[Fri Jul 24 19:10:57 2026] Bluetooth: hci0: QCA Downloading qca/msbtfw11.mbn
[Fri Jul 24 19:10:58 2026] Bluetooth: hci0: QCA Downloading qca/msnv11.bin
[Fri Jul 24 19:10:59 2026] Bluetooth: hci0: QCA setup on UART is completed
[Fri Jul 24 19:11:24 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input6
[Fri Jul 24 19:11:31 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 19:11:32 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:11:37 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:11:59 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 19:12:04 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:12:20 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:12:21 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:12:33 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 19:13:21 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:13:32 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 19:16:05 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:17:49 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:20:49 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:26:21 2026] qcom-iris aa00000.video-codec: sys error (type: 1, session id:ff, data1:1, data2:deadbead)
[Fri Jul 24 19:26:40 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 19:26:40 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 19:26:40 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 19:29:40 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 19:33:37 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 19:33:37 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 19:33:37 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 19:38:59 2026] qcom-iris aa00000.video-codec: session error for command: 0, event id:1004, session id:3d14e001
[Fri Jul 24 19:39:00 2026] qcom-iris aa00000.video-codec: session error for command: 0, event id:1004, session id:3d14e001
[Fri Jul 24 19:39:01 2026] qcom-iris aa00000.video-codec: session error for command: 0, event id:1004, session id:3d14e001
[Fri Jul 24 19:39:01 2026] qcom-iris aa00000.video-codec: session error for command: 0, event id:1004, session id:3d14e001
[Fri Jul 24 19:39:02 2026] qcom-iris aa00000.video-codec: session error for command: 0, event id:1004, session id:3d14e001
[Fri Jul 24 19:39:03 2026] qcom-iris aa00000.video-codec: session error for command: 0, event id:1004, session id:3d14e001
[Fri Jul 24 19:39:03 2026] qcom-iris aa00000.video-codec: session error for command: 0, event id:1004, session id:3d14e001
[Fri Jul 24 19:41:55 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 19:42:41 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 19:42:41 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 19:42:41 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 19:46:14 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 19:46:14 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 19:46:14 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 19:56:25 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 20:10:52 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 20:10:52 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 20:10:52 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 20:10:55 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 20:10:55 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 20:10:56 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Fri Jul 24 20:10:56 2026] wcd937x_codec audio-codec: wcd937x_mbhc_get_result_params: d1=90, c1=2, x1=0x1ca, z_val=56733 (milliohm)
[Fri Jul 24 20:12:35 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 21:05:02 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 21:06:33 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 21:10:07 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 21:10:07 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 21:10:07 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 21:11:45 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 21:17:17 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 21:17:28 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 21:18:08 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Fri Jul 24 21:18:08 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Fri Jul 24 21:18:08 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Fri Jul 24 21:34:14 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Fri Jul 24 21:37:54 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Fri Jul 24 21:52:57 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Fri Jul 24 21:52:58 2026] PM: suspend entry (deep)
[Fri Jul 24 21:52:58 2026] Filesystems sync: 0.018 seconds
[Fri Jul 24 21:52:58 2026] Freezing user space processes
[Fri Jul 24 21:52:58 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Fri Jul 24 21:52:58 2026] OOM killer disabled.
[Fri Jul 24 21:52:58 2026] Freezing remaining freezable tasks
[Fri Jul 24 21:52:58 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 21:52:58 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 21:52:58 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 21:52:58 2026] Disabling non-boot CPUs ...
[Fri Jul 24 21:52:58 2026] Wakeup pending. Abort CPU freeze
[Fri Jul 24 21:52:58 2026] Non-boot CPUs are not disabled
[Fri Jul 24 21:52:58 2026] OOM killer enabled.
[Fri Jul 24 21:52:58 2026] Restarting tasks: Starting
[Fri Jul 24 21:52:58 2026] Restarting tasks: Done
[Fri Jul 24 21:52:58 2026] random: crng reseeded on system resumption
[Fri Jul 24 21:52:58 2026] PM: suspend exit
[Fri Jul 24 21:52:58 2026] PM: suspend entry (s2idle)
[Fri Jul 24 21:52:58 2026] Filesystems sync: 0.012 seconds
[Fri Jul 24 21:52:58 2026] Freezing user space processes
[Fri Jul 24 21:52:58 2026] Freezing user space processes completed (elapsed 0.006 seconds)
[Fri Jul 24 21:52:58 2026] OOM killer disabled.
[Fri Jul 24 21:52:58 2026] Freezing remaining freezable tasks
[Fri Jul 24 21:52:58 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 21:52:58 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 21:52:58 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 21:52:59 2026] OOM killer enabled.
[Fri Jul 24 21:52:59 2026] Restarting tasks: Starting
[Fri Jul 24 21:52:59 2026] Restarting tasks: Done
[Fri Jul 24 21:52:59 2026] random: crng reseeded on system resumption
[Fri Jul 24 21:52:59 2026] PM: suspend exit
[Fri Jul 24 21:53:02 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input7
[Fri Jul 24 21:53:03 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 21:53:03 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 21:53:03 2026] wlan0: authenticated
[Fri Jul 24 21:53:03 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 21:53:03 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=4)
[Fri Jul 24 21:53:03 2026] wlan0: associated
[Fri Jul 24 21:53:03 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Fri Jul 24 22:23:36 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Fri Jul 24 22:23:37 2026] PM: suspend entry (deep)
[Fri Jul 24 22:23:37 2026] Filesystems sync: 0.020 seconds
[Fri Jul 24 22:23:37 2026] Freezing user space processes
[Fri Jul 24 22:23:37 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Fri Jul 24 22:23:37 2026] OOM killer disabled.
[Fri Jul 24 22:23:37 2026] Freezing remaining freezable tasks
[Fri Jul 24 22:23:37 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 22:23:37 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 22:23:37 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 22:23:37 2026] Disabling non-boot CPUs ...
[Fri Jul 24 22:23:37 2026] Wakeup pending. Abort CPU freeze
[Fri Jul 24 22:23:37 2026] Non-boot CPUs are not disabled
[Fri Jul 24 22:23:38 2026] OOM killer enabled.
[Fri Jul 24 22:23:38 2026] Restarting tasks: Starting
[Fri Jul 24 22:23:38 2026] Restarting tasks: Done
[Fri Jul 24 22:23:38 2026] random: crng reseeded on system resumption
[Fri Jul 24 22:23:38 2026] PM: suspend exit
[Fri Jul 24 22:23:38 2026] PM: suspend entry (s2idle)
[Fri Jul 24 22:23:38 2026] Filesystems sync: 0.011 seconds
[Fri Jul 24 22:23:38 2026] Freezing user space processes
[Fri Jul 24 22:23:38 2026] Freezing user space processes completed (elapsed 0.006 seconds)
[Fri Jul 24 22:23:38 2026] OOM killer disabled.
[Fri Jul 24 22:23:38 2026] Freezing remaining freezable tasks
[Fri Jul 24 22:23:38 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Fri Jul 24 22:23:38 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Fri Jul 24 22:23:38 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Fri Jul 24 22:23:38 2026] OOM killer enabled.
[Fri Jul 24 22:23:38 2026] Restarting tasks: Starting
[Fri Jul 24 22:23:38 2026] Restarting tasks: Done
[Fri Jul 24 22:23:38 2026] random: crng reseeded on system resumption
[Fri Jul 24 22:23:38 2026] PM: suspend exit
[Fri Jul 24 22:23:42 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input8
[Fri Jul 24 22:23:42 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Fri Jul 24 22:23:42 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 22:23:42 2026] wlan0: authenticated
[Fri Jul 24 22:23:42 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Fri Jul 24 22:23:42 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=4)
[Fri Jul 24 22:23:42 2026] wlan0: associated
[Fri Jul 24 22:23:42 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sat Jul 25 05:32:33 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 05:36:08 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 05:39:25 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 05:39:30 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Sat Jul 25 05:47:48 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 05:48:29 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Sat Jul 25 05:48:29 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Sat Jul 25 05:48:29 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Sat Jul 25 06:03:10 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:05:23 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:06:44 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:06:48 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:06:56 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:08:01 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:08:17 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 06:10:52 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 06:11:10 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:12:18 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:15:38 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:19:33 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:25:03 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:28:58 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 06:29:11 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 06:39:52 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 07:03:52 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 07:03:53 2026] PM: suspend entry (deep)
[Sat Jul 25 07:03:53 2026] Filesystems sync: 0.016 seconds
[Sat Jul 25 07:03:53 2026] Freezing user space processes
[Sat Jul 25 07:03:53 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 07:03:53 2026] OOM killer disabled.
[Sat Jul 25 07:03:53 2026] Freezing remaining freezable tasks
[Sat Jul 25 07:03:53 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 07:03:53 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 07:03:53 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 07:03:53 2026] Disabling non-boot CPUs ...
[Sat Jul 25 07:03:53 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 07:03:53 2026] Non-boot CPUs are not disabled
[Sat Jul 25 07:03:54 2026] OOM killer enabled.
[Sat Jul 25 07:03:54 2026] Restarting tasks: Starting
[Sat Jul 25 07:03:54 2026] Restarting tasks: Done
[Sat Jul 25 07:03:54 2026] random: crng reseeded on system resumption
[Sat Jul 25 07:03:54 2026] PM: suspend exit
[Sat Jul 25 07:03:54 2026] PM: suspend entry (s2idle)
[Sat Jul 25 07:03:54 2026] Filesystems sync: 0.014 seconds
[Sat Jul 25 07:03:54 2026] Freezing user space processes
[Sat Jul 25 07:03:54 2026] Freezing user space processes completed (elapsed 0.017 seconds)
[Sat Jul 25 07:03:54 2026] OOM killer disabled.
[Sat Jul 25 07:03:54 2026] Freezing remaining freezable tasks
[Sat Jul 25 07:03:54 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 07:03:54 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 07:03:54 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 07:03:54 2026] OOM killer enabled.
[Sat Jul 25 07:03:54 2026] Restarting tasks: Starting
[Sat Jul 25 07:03:54 2026] Restarting tasks: Done
[Sat Jul 25 07:03:54 2026] random: crng reseeded on system resumption
[Sat Jul 25 07:03:54 2026] PM: suspend exit
[Sat Jul 25 07:03:58 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sat Jul 25 07:03:58 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 07:03:58 2026] wlan0: authenticated
[Sat Jul 25 07:03:58 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 07:03:58 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Sat Jul 25 07:03:58 2026] wlan0: associated
[Sat Jul 25 07:03:58 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input9
[Sat Jul 25 07:03:58 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sat Jul 25 07:18:14 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 07:18:14 2026] PM: suspend entry (deep)
[Sat Jul 25 07:18:14 2026] Filesystems sync: 0.019 seconds
[Sat Jul 25 07:18:15 2026] Freezing user space processes
[Sat Jul 25 07:18:15 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Sat Jul 25 07:18:15 2026] OOM killer disabled.
[Sat Jul 25 07:18:15 2026] Freezing remaining freezable tasks
[Sat Jul 25 07:18:15 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 07:18:15 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 07:18:15 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 07:18:15 2026] Disabling non-boot CPUs ...
[Sat Jul 25 07:18:15 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 07:18:15 2026] Non-boot CPUs are not disabled
[Sat Jul 25 07:18:15 2026] OOM killer enabled.
[Sat Jul 25 07:18:15 2026] Restarting tasks: Starting
[Sat Jul 25 07:18:15 2026] Restarting tasks: Done
[Sat Jul 25 07:18:15 2026] random: crng reseeded on system resumption
[Sat Jul 25 07:18:15 2026] PM: suspend exit
[Sat Jul 25 07:18:15 2026] PM: suspend entry (s2idle)
[Sat Jul 25 07:18:15 2026] Filesystems sync: 0.015 seconds
[Sat Jul 25 07:18:15 2026] Freezing user space processes
[Sat Jul 25 07:18:15 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 07:18:15 2026] OOM killer disabled.
[Sat Jul 25 07:18:15 2026] Freezing remaining freezable tasks
[Sat Jul 25 07:18:15 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 07:18:15 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 07:18:15 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 07:18:15 2026] OOM killer enabled.
[Sat Jul 25 07:18:15 2026] Restarting tasks: Starting
[Sat Jul 25 07:18:15 2026] Restarting tasks: Done
[Sat Jul 25 07:18:15 2026] random: crng reseeded on system resumption
[Sat Jul 25 07:18:15 2026] PM: suspend exit
[Sat Jul 25 07:18:19 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input10
[Sat Jul 25 07:18:20 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sat Jul 25 07:18:20 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 07:18:20 2026] wlan0: authenticated
[Sat Jul 25 07:18:20 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 07:18:20 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Sat Jul 25 07:18:20 2026] wlan0: associated
[Sat Jul 25 07:18:20 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sat Jul 25 09:20:37 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:29:09 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:34:20 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 09:34:55 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:35:41 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 09:35:53 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 09:40:15 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:40:57 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 09:41:47 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:42:51 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:47:13 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 09:48:20 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:52:12 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:52:30 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:52:30 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:53:03 2026] wlan0: Connection to AP 7c:39:53:e9:9d:fb lost
[Sat Jul 25 09:53:08 2026] ath11k 17a10040.wifi: failed to flush transmit queue, data pkts pending 1
[Sat Jul 25 09:53:13 2026] ath11k 17a10040.wifi: failed to flush transmit queue, data pkts pending 1
[Sat Jul 25 09:53:13 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sat Jul 25 09:53:13 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 09:53:13 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 2/3)
[Sat Jul 25 09:53:13 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 3/3)
[Sat Jul 25 09:53:13 2026] wlan0: authentication with 7c:39:53:e9:9d:fb timed out
[Sat Jul 25 09:53:26 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sat Jul 25 09:53:26 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 09:53:26 2026] wlan0: authenticated
[Sat Jul 25 09:53:26 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 09:53:26 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Sat Jul 25 09:53:26 2026] wlan0: associated
[Sat Jul 25 09:53:26 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sat Jul 25 09:53:30 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:54:03 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:54:05 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:57:44 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:57:47 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 09:57:53 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:57:53 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 09:57:56 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:57:56 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 09:59:15 2026] wlan0: Connection to AP 7c:39:53:e9:9d:fb lost
[Sat Jul 25 09:59:38 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sat Jul 25 09:59:38 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 09:59:38 2026] wlan0: authenticated
[Sat Jul 25 09:59:38 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 09:59:38 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Sat Jul 25 09:59:38 2026] wlan0: associated
[Sat Jul 25 09:59:38 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sat Jul 25 10:01:09 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:03:44 2026] platform 3d6a000.gmu: [drm:a6xx_gmu_set_oob] ERROR Timeout waiting for GMU OOB set GPU_SET: 0x0
[Sat Jul 25 10:03:44 2026] platform 3d6a000.gmu: [drm:a6xx_gmu_set_oob] ERROR Timeout waiting for GMU OOB set GPU_SET: 0x0
[Sat Jul 25 10:03:44 2026] platform 3d6a000.gmu: [drm:a6xx_gmu_set_oob] ERROR Timeout waiting for GMU OOB set GPU_SET: 0x0
[Sat Jul 25 10:03:44 2026] platform 3d6a000.gmu: [drm:a6xx_gmu_set_oob] ERROR Timeout waiting for GMU OOB set GPU_SET: 0x0
[Sat Jul 25 10:03:44 2026] platform 3d6a000.gmu: [drm:a6xx_gmu_set_oob] ERROR Timeout waiting for GMU OOB set GPU_SET: 0x0
[Sat Jul 25 10:03:44 2026] adreno 3d00000.gpu: [drm:a6xx_irq] ERROR gpu fault ring 0 fence 37f4b0 status 00800005 rb 0000/033a ib1 0000000000000000/0000 ib2 0000000000000000/0000
[Sat Jul 25 10:03:44 2026] msm_dpu ae01000.display-controller: [drm:recover_worker] ERROR 06030500: hangcheck recover!
[Sat Jul 25 10:03:44 2026] msm_dpu ae01000.display-controller: [drm:recover_worker] ERROR 06030500: offending task: phoc:gdrv0 (/usr/bin/phoc -v -S -C /usr/share/phosh/phoc.ini -E gnome-session --session=phosh)
[Sat Jul 25 10:03:44 2026] revision: 0 (06030500)
[Sat Jul 25 10:03:44 2026] rb 0: fence: 3667116/3667120
[Sat Jul 25 10:03:44 2026] rptr: 0
[Sat Jul 25 10:03:44 2026] rb wptr: 857
[Sat Jul 25 10:03:44 2026] platform 3d6a000.gmu: [drm:a6xx_gmu_set_oob] ERROR Timeout waiting for GMU OOB set GPU_SET: 0x0
[Sat Jul 25 10:03:44 2026] *** gpu fault: ttbr0=000000010e54f000 iova=0000000000000000 dir=READ type=TRANSLATION source=CP (0,0,0,0)
[Sat Jul 25 10:04:06 2026] rfkill: input handler enabled
[Sat Jul 25 10:04:19 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input11
[Sat Jul 25 10:04:26 2026] rfkill: input handler disabled
[Sat Jul 25 10:04:33 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input12
[Sat Jul 25 10:05:04 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:06:28 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:09:47 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:09:48 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:10:39 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 10:11:01 2026] platform 3d6a000.gmu: [drm:a6xx_hfi_wait_for_msg_interrupt] ERROR Message HFI_H2F_MSG_GX_BW_PERF_VOTE id 881 timed out waiting for response
[Sat Jul 25 10:11:01 2026] platform 3d6a000.gmu: [drm:a6xx_hfi_send_msg] ERROR Unexpected message id 881 on the response queue
[Sat Jul 25 10:11:04 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Sat Jul 25 10:11:04 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Sat Jul 25 10:11:04 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Sat Jul 25 10:11:04 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:13:21 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:13:21 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:13:21 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:13:21 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:13:21 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:13:21 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:13:21 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Sat Jul 25 10:13:54 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sat Jul 25 10:13:54 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 10:13:54 2026] wlan0: authenticated
[Sat Jul 25 10:13:54 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 10:13:54 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Sat Jul 25 10:13:54 2026] wlan0: associated
[Sat Jul 25 10:13:54 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sat Jul 25 10:34:05 2026] wlan0: Connection to AP 7c:39:53:e9:9d:fb lost
[Sat Jul 25 10:35:58 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:35:59 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:35:59 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:35:59 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:35:59 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:35:59 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:35:59 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:35:59 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Sat Jul 25 10:36:01 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sat Jul 25 10:36:01 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 10:36:01 2026] wlan0: authenticated
[Sat Jul 25 10:36:01 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Sat Jul 25 10:36:01 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Sat Jul 25 10:36:01 2026] wlan0: associated
[Sat Jul 25 10:36:02 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sat Jul 25 10:36:02 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:04 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 10:36:11 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:12 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:12 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:20 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:31 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:34 2026] dsi_err_worker: status=5
[Sat Jul 25 10:36:34 2026] dsi_err_worker: status=0
[Sat Jul 25 10:36:35 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:51 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:52 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:53 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:36:53 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:37:03 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:37:04 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:37:08 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 10:37:08 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 10:37:08 2026] wlan0: authenticated
[Sat Jul 25 10:37:08 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 10:37:08 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=1)
[Sat Jul 25 10:37:08 2026] wlan0: associated
[Sat Jul 25 10:37:08 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 10:37:09 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:37:30 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:37:40 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:50:20 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Sat Jul 25 10:51:52 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:59:06 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:59:06 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:59:06 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:59:06 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:59:06 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 10:59:06 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 10:59:06 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Sat Jul 25 11:00:58 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 11:00:58 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 11:00:58 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 11:00:58 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 11:00:58 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 11:00:58 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 11:00:58 2026] [drm:dpu_encoder_resource_control:905] [dpu error]invalid parameters
[Sat Jul 25 12:28:12 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 12:28:13 2026] PM: suspend entry (deep)
[Sat Jul 25 12:28:13 2026] Filesystems sync: 0.018 seconds
[Sat Jul 25 12:28:13 2026] Freezing user space processes
[Sat Jul 25 12:28:13 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 12:28:13 2026] OOM killer disabled.
[Sat Jul 25 12:28:13 2026] Freezing remaining freezable tasks
[Sat Jul 25 12:28:13 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 12:28:13 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 12:28:13 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 12:28:13 2026] Disabling non-boot CPUs ...
[Sat Jul 25 12:28:13 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 12:28:13 2026] Non-boot CPUs are not disabled
[Sat Jul 25 12:28:13 2026] OOM killer enabled.
[Sat Jul 25 12:28:13 2026] Restarting tasks: Starting
[Sat Jul 25 12:28:13 2026] Restarting tasks: Done
[Sat Jul 25 12:28:13 2026] random: crng reseeded on system resumption
[Sat Jul 25 12:28:13 2026] PM: suspend exit
[Sat Jul 25 12:28:13 2026] PM: suspend entry (s2idle)
[Sat Jul 25 12:28:13 2026] Filesystems sync: 0.013 seconds
[Sat Jul 25 12:28:13 2026] Freezing user space processes
[Sat Jul 25 12:28:13 2026] Freezing user space processes completed (elapsed 0.005 seconds)
[Sat Jul 25 12:28:13 2026] OOM killer disabled.
[Sat Jul 25 12:28:13 2026] Freezing remaining freezable tasks
[Sat Jul 25 12:28:13 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 12:28:13 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 12:28:13 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 12:28:14 2026] OOM killer enabled.
[Sat Jul 25 12:28:14 2026] Restarting tasks: Starting
[Sat Jul 25 12:28:14 2026] Restarting tasks: Done
[Sat Jul 25 12:28:14 2026] random: crng reseeded on system resumption
[Sat Jul 25 12:28:14 2026] PM: suspend exit
[Sat Jul 25 12:28:18 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 12:28:18 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 12:28:18 2026] wlan0: authenticated
[Sat Jul 25 12:28:18 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 12:28:18 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=4)
[Sat Jul 25 12:28:18 2026] wlan0: associated
[Sat Jul 25 12:28:18 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 13:03:35 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 13:03:35 2026] PM: suspend entry (deep)
[Sat Jul 25 13:03:35 2026] Filesystems sync: 0.018 seconds
[Sat Jul 25 13:03:36 2026] Freezing user space processes
[Sat Jul 25 13:03:36 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 13:03:36 2026] OOM killer disabled.
[Sat Jul 25 13:03:36 2026] Freezing remaining freezable tasks
[Sat Jul 25 13:03:36 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 13:03:36 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 13:03:36 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 13:03:36 2026] Disabling non-boot CPUs ...
[Sat Jul 25 13:03:36 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 13:03:36 2026] Non-boot CPUs are not disabled
[Sat Jul 25 13:03:36 2026] OOM killer enabled.
[Sat Jul 25 13:03:36 2026] Restarting tasks: Starting
[Sat Jul 25 13:03:36 2026] Restarting tasks: Done
[Sat Jul 25 13:03:36 2026] random: crng reseeded on system resumption
[Sat Jul 25 13:03:36 2026] PM: suspend exit
[Sat Jul 25 13:03:36 2026] PM: suspend entry (s2idle)
[Sat Jul 25 13:03:36 2026] Filesystems sync: 0.013 seconds
[Sat Jul 25 13:03:36 2026] Freezing user space processes
[Sat Jul 25 13:03:36 2026] Freezing user space processes completed (elapsed 0.005 seconds)
[Sat Jul 25 13:03:36 2026] OOM killer disabled.
[Sat Jul 25 13:03:36 2026] Freezing remaining freezable tasks
[Sat Jul 25 13:03:36 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 13:03:36 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 13:03:36 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 13:03:36 2026] OOM killer enabled.
[Sat Jul 25 13:03:36 2026] Restarting tasks: Starting
[Sat Jul 25 13:03:36 2026] Restarting tasks: Done
[Sat Jul 25 13:03:36 2026] random: crng reseeded on system resumption
[Sat Jul 25 13:03:36 2026] PM: suspend exit
[Sat Jul 25 13:03:41 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 13:03:41 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 13:03:41 2026] wlan0: authenticated
[Sat Jul 25 13:03:41 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 13:03:41 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=3)
[Sat Jul 25 13:03:41 2026] wlan0: associated
[Sat Jul 25 13:03:41 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 13:03:46 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 13:08:18 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 13:08:26 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sat Jul 25 13:25:56 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 13:25:57 2026] PM: suspend entry (deep)
[Sat Jul 25 13:25:57 2026] Filesystems sync: 0.019 seconds
[Sat Jul 25 13:25:57 2026] Freezing user space processes
[Sat Jul 25 13:25:57 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 13:25:57 2026] OOM killer disabled.
[Sat Jul 25 13:25:57 2026] Freezing remaining freezable tasks
[Sat Jul 25 13:25:57 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 13:25:57 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 13:25:57 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 13:25:57 2026] Disabling non-boot CPUs ...
[Sat Jul 25 13:25:57 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 13:25:57 2026] Non-boot CPUs are not disabled
[Sat Jul 25 13:25:57 2026] OOM killer enabled.
[Sat Jul 25 13:25:57 2026] Restarting tasks: Starting
[Sat Jul 25 13:25:57 2026] Restarting tasks: Done
[Sat Jul 25 13:25:57 2026] random: crng reseeded on system resumption
[Sat Jul 25 13:25:57 2026] PM: suspend exit
[Sat Jul 25 13:25:57 2026] PM: suspend entry (s2idle)
[Sat Jul 25 13:25:57 2026] Filesystems sync: 0.014 seconds
[Sat Jul 25 13:25:57 2026] Freezing user space processes
[Sat Jul 25 13:25:57 2026] Freezing user space processes completed (elapsed 0.006 seconds)
[Sat Jul 25 13:25:57 2026] OOM killer disabled.
[Sat Jul 25 13:25:57 2026] Freezing remaining freezable tasks
[Sat Jul 25 13:25:57 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 13:25:57 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 13:25:57 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 13:25:58 2026] OOM killer enabled.
[Sat Jul 25 13:25:58 2026] Restarting tasks: Starting
[Sat Jul 25 13:25:58 2026] Restarting tasks: Done
[Sat Jul 25 13:25:58 2026] random: crng reseeded on system resumption
[Sat Jul 25 13:25:58 2026] PM: suspend exit
[Sat Jul 25 13:26:02 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 13:26:02 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 13:26:02 2026] wlan0: authenticated
[Sat Jul 25 13:26:02 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 13:26:02 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=5)
[Sat Jul 25 13:26:02 2026] wlan0: associated
[Sat Jul 25 13:26:02 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 14:24:29 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 14:24:35 2026] ath11k 17a10040.wifi: failed to flush transmit queue, data pkts pending 1
[Sat Jul 25 14:24:35 2026] PM: suspend entry (deep)
[Sat Jul 25 14:24:35 2026] Filesystems sync: 0.020 seconds
[Sat Jul 25 14:24:35 2026] Freezing user space processes
[Sat Jul 25 14:24:40 2026] ath11k 17a10040.wifi: failed to flush transmit queue, data pkts pending 1
[Sat Jul 25 14:24:40 2026] Freezing user space processes completed (elapsed 5.053 seconds)
[Sat Jul 25 14:24:40 2026] OOM killer disabled.
[Sat Jul 25 14:24:40 2026] Freezing remaining freezable tasks
[Sat Jul 25 14:25:00 2026] Freezing remaining freezable tasks failed after 20.005 seconds (1 tasks refusing to freeze, wq_busy=0):
[Sat Jul 25 14:25:00 2026] task:jbd2/loop0p2-8 state:D stack:0 pid:613 tgid:613 ppid:2 task_flags:0x240040 flags:0x00000010
[Sat Jul 25 14:25:00 2026] Call trace:
[Sat Jul 25 14:25:00 2026] __switch_to+0x1a0/0x2e0 (T)
[Sat Jul 25 14:25:00 2026] __schedule+0x848/0xe08
[Sat Jul 25 14:25:00 2026] schedule+0x6c/0x114
[Sat Jul 25 14:25:00 2026] io_schedule+0x48/0x198
[Sat Jul 25 14:25:00 2026] bit_wait_io+0x28/0x78
[Sat Jul 25 14:25:00 2026] __wait_on_bit+0xe4/0x1b8
[Sat Jul 25 14:25:00 2026] out_of_line_wait_on_bit+0x94/0xc4
[Sat Jul 25 14:25:00 2026] __wait_on_buffer+0x38/0x4c
[Sat Jul 25 14:25:00 2026] jbd2_journal_commit_transaction+0xbd8/0x1cd4
[Sat Jul 25 14:25:00 2026] kjournald2+0xc4/0x224
[Sat Jul 25 14:25:00 2026] kthread+0x130/0x180
[Sat Jul 25 14:25:00 2026] ret_from_fork+0x10/0x20
[Sat Jul 25 14:25:00 2026] Restarting kernel threads ...
[Sat Jul 25 14:25:00 2026] Done restarting kernel threads.
[Sat Jul 25 14:25:00 2026] OOM killer enabled.
[Sat Jul 25 14:25:00 2026] Restarting tasks: Starting
[Sat Jul 25 14:25:00 2026] Restarting tasks: Done
[Sat Jul 25 14:25:00 2026] random: crng reseeded on system resumption
[Sat Jul 25 14:25:00 2026] PM: suspend exit
[Sat Jul 25 14:25:00 2026] PM: suspend entry (s2idle)
[Sat Jul 25 14:25:00 2026] Filesystems sync: 0.013 seconds
[Sat Jul 25 14:25:00 2026] Freezing user space processes
[Sat Jul 25 14:25:00 2026] Freezing user space processes completed (elapsed 0.016 seconds)
[Sat Jul 25 14:25:00 2026] OOM killer disabled.
[Sat Jul 25 14:25:00 2026] Freezing remaining freezable tasks
[Sat Jul 25 14:25:00 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 14:25:00 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 14:25:00 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 14:25:00 2026] OOM killer enabled.
[Sat Jul 25 14:25:00 2026] Restarting tasks: Starting
[Sat Jul 25 14:25:00 2026] Restarting tasks: Done
[Sat Jul 25 14:25:00 2026] random: crng reseeded on system resumption
[Sat Jul 25 14:25:00 2026] PM: suspend exit
[Sat Jul 25 14:25:15 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 14:25:15 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 14:25:16 2026] wlan0: authenticated
[Sat Jul 25 14:25:16 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 14:25:16 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=6)
[Sat Jul 25 14:25:16 2026] wlan0: associated
[Sat Jul 25 14:25:16 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 14:25:43 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 14:39:43 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 14:39:43 2026] PM: suspend entry (deep)
[Sat Jul 25 14:39:43 2026] Filesystems sync: 0.024 seconds
[Sat Jul 25 14:39:43 2026] Freezing user space processes
[Sat Jul 25 14:39:43 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 14:39:43 2026] OOM killer disabled.
[Sat Jul 25 14:39:43 2026] Freezing remaining freezable tasks
[Sat Jul 25 14:39:43 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 14:39:43 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 14:39:43 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 14:39:44 2026] Disabling non-boot CPUs ...
[Sat Jul 25 14:39:44 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 14:39:44 2026] Non-boot CPUs are not disabled
[Sat Jul 25 14:39:44 2026] OOM killer enabled.
[Sat Jul 25 14:39:44 2026] Restarting tasks: Starting
[Sat Jul 25 14:39:44 2026] Restarting tasks: Done
[Sat Jul 25 14:39:44 2026] random: crng reseeded on system resumption
[Sat Jul 25 14:39:44 2026] PM: suspend exit
[Sat Jul 25 14:39:44 2026] PM: suspend entry (s2idle)
[Sat Jul 25 14:39:44 2026] Filesystems sync: 0.017 seconds
[Sat Jul 25 14:39:44 2026] Freezing user space processes
[Sat Jul 25 14:39:44 2026] Freezing user space processes completed (elapsed 0.005 seconds)
[Sat Jul 25 14:39:44 2026] OOM killer disabled.
[Sat Jul 25 14:39:44 2026] Freezing remaining freezable tasks
[Sat Jul 25 14:39:44 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 14:39:44 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 14:39:44 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 14:39:44 2026] OOM killer enabled.
[Sat Jul 25 14:39:44 2026] Restarting tasks: Starting
[Sat Jul 25 14:39:44 2026] Restarting tasks: Done
[Sat Jul 25 14:39:44 2026] random: crng reseeded on system resumption
[Sat Jul 25 14:39:44 2026] PM: suspend exit
[Sat Jul 25 14:39:49 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 14:39:49 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 14:39:49 2026] wlan0: authenticated
[Sat Jul 25 14:39:49 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 14:39:49 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=7)
[Sat Jul 25 14:39:49 2026] wlan0: associated
[Sat Jul 25 14:39:49 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 15:09:07 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 15:09:08 2026] PM: suspend entry (deep)
[Sat Jul 25 15:09:08 2026] Filesystems sync: 0.023 seconds
[Sat Jul 25 15:09:08 2026] Freezing user space processes
[Sat Jul 25 15:09:08 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Sat Jul 25 15:09:08 2026] OOM killer disabled.
[Sat Jul 25 15:09:08 2026] Freezing remaining freezable tasks
[Sat Jul 25 15:09:08 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 15:09:08 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 15:09:08 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 15:09:08 2026] Disabling non-boot CPUs ...
[Sat Jul 25 15:09:08 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 15:09:08 2026] Non-boot CPUs are not disabled
[Sat Jul 25 15:09:09 2026] OOM killer enabled.
[Sat Jul 25 15:09:09 2026] Restarting tasks: Starting
[Sat Jul 25 15:09:09 2026] Restarting tasks: Done
[Sat Jul 25 15:09:09 2026] random: crng reseeded on system resumption
[Sat Jul 25 15:09:09 2026] PM: suspend exit
[Sat Jul 25 15:09:09 2026] PM: suspend entry (s2idle)
[Sat Jul 25 15:09:09 2026] Filesystems sync: 0.012 seconds
[Sat Jul 25 15:09:09 2026] Freezing user space processes
[Sat Jul 25 15:09:09 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 15:09:09 2026] OOM killer disabled.
[Sat Jul 25 15:09:09 2026] Freezing remaining freezable tasks
[Sat Jul 25 15:09:09 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 15:09:09 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 15:09:09 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 15:09:09 2026] OOM killer enabled.
[Sat Jul 25 15:09:09 2026] Restarting tasks: Starting
[Sat Jul 25 15:09:09 2026] Restarting tasks: Done
[Sat Jul 25 15:09:09 2026] random: crng reseeded on system resumption
[Sat Jul 25 15:09:09 2026] PM: suspend exit
[Sat Jul 25 15:09:13 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 15:09:13 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 15:09:13 2026] wlan0: authenticated
[Sat Jul 25 15:09:13 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 15:09:13 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=9)
[Sat Jul 25 15:09:13 2026] wlan0: associated
[Sat Jul 25 15:09:13 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 16:30:29 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 16:30:30 2026] PM: suspend entry (deep)
[Sat Jul 25 16:30:30 2026] Filesystems sync: 0.027 seconds
[Sat Jul 25 16:30:30 2026] Freezing user space processes
[Sat Jul 25 16:30:30 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 16:30:30 2026] OOM killer disabled.
[Sat Jul 25 16:30:30 2026] Freezing remaining freezable tasks
[Sat Jul 25 16:30:30 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 16:30:30 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 16:30:30 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 16:30:30 2026] Disabling non-boot CPUs ...
[Sat Jul 25 16:30:30 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 16:30:30 2026] Non-boot CPUs are not disabled
[Sat Jul 25 16:30:30 2026] OOM killer enabled.
[Sat Jul 25 16:30:30 2026] Restarting tasks: Starting
[Sat Jul 25 16:30:30 2026] Restarting tasks: Done
[Sat Jul 25 16:30:30 2026] random: crng reseeded on system resumption
[Sat Jul 25 16:30:30 2026] PM: suspend exit
[Sat Jul 25 16:30:30 2026] PM: suspend entry (s2idle)
[Sat Jul 25 16:30:30 2026] Filesystems sync: 0.010 seconds
[Sat Jul 25 16:30:30 2026] Freezing user space processes
[Sat Jul 25 16:30:30 2026] Freezing user space processes completed (elapsed 0.005 seconds)
[Sat Jul 25 16:30:30 2026] OOM killer disabled.
[Sat Jul 25 16:30:30 2026] Freezing remaining freezable tasks
[Sat Jul 25 16:30:30 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 16:30:30 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 16:30:30 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 16:30:31 2026] OOM killer enabled.
[Sat Jul 25 16:30:31 2026] Restarting tasks: Starting
[Sat Jul 25 16:30:31 2026] Restarting tasks: Done
[Sat Jul 25 16:30:31 2026] random: crng reseeded on system resumption
[Sat Jul 25 16:30:31 2026] PM: suspend exit
[Sat Jul 25 16:30:35 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 16:30:35 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 16:30:35 2026] wlan0: authenticated
[Sat Jul 25 16:30:35 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 16:30:35 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=1)
[Sat Jul 25 16:30:35 2026] wlan0: associated
[Sat Jul 25 16:30:35 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 17:43:37 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 17:43:42 2026] PM: suspend entry (deep)
[Sat Jul 25 17:43:42 2026] ath11k 17a10040.wifi: failed to flush transmit queue, data pkts pending 1
[Sat Jul 25 17:43:42 2026] Filesystems sync: 0.016 seconds
[Sat Jul 25 17:43:42 2026] Freezing user space processes
[Sat Jul 25 17:43:47 2026] ath11k 17a10040.wifi: failed to flush transmit queue, data pkts pending 1
[Sat Jul 25 17:43:47 2026] Freezing user space processes completed (elapsed 5.021 seconds)
[Sat Jul 25 17:43:47 2026] OOM killer disabled.
[Sat Jul 25 17:43:47 2026] Freezing remaining freezable tasks
[Sat Jul 25 17:44:07 2026] Freezing remaining freezable tasks failed after 20.004 seconds (1 tasks refusing to freeze, wq_busy=0):
[Sat Jul 25 17:44:07 2026] task:jbd2/loop0p2-8 state:D stack:0 pid:613 tgid:613 ppid:2 task_flags:0x240040 flags:0x00000010
[Sat Jul 25 17:44:07 2026] Call trace:
[Sat Jul 25 17:44:07 2026] __switch_to+0x1a0/0x2e0 (T)
[Sat Jul 25 17:44:07 2026] __schedule+0x848/0xe08
[Sat Jul 25 17:44:07 2026] schedule+0x6c/0x114
[Sat Jul 25 17:44:07 2026] io_schedule+0x48/0x198
[Sat Jul 25 17:44:07 2026] bit_wait_io+0x28/0x78
[Sat Jul 25 17:44:07 2026] __wait_on_bit+0xe4/0x1b8
[Sat Jul 25 17:44:07 2026] out_of_line_wait_on_bit+0x94/0xc4
[Sat Jul 25 17:44:07 2026] __wait_on_buffer+0x38/0x4c
[Sat Jul 25 17:44:07 2026] jbd2_journal_commit_transaction+0xbd8/0x1cd4
[Sat Jul 25 17:44:07 2026] kjournald2+0xc4/0x224
[Sat Jul 25 17:44:07 2026] kthread+0x130/0x180
[Sat Jul 25 17:44:07 2026] ret_from_fork+0x10/0x20
[Sat Jul 25 17:44:07 2026] Restarting kernel threads ...
[Sat Jul 25 17:44:07 2026] Done restarting kernel threads.
[Sat Jul 25 17:44:07 2026] OOM killer enabled.
[Sat Jul 25 17:44:07 2026] Restarting tasks: Starting
[Sat Jul 25 17:44:07 2026] Restarting tasks: Done
[Sat Jul 25 17:44:07 2026] random: crng reseeded on system resumption
[Sat Jul 25 17:44:07 2026] PM: suspend exit
[Sat Jul 25 17:44:07 2026] PM: suspend entry (s2idle)
[Sat Jul 25 17:44:07 2026] Filesystems sync: 0.012 seconds
[Sat Jul 25 17:44:07 2026] Freezing user space processes
[Sat Jul 25 17:44:07 2026] Freezing user space processes completed (elapsed 0.016 seconds)
[Sat Jul 25 17:44:07 2026] OOM killer disabled.
[Sat Jul 25 17:44:07 2026] Freezing remaining freezable tasks
[Sat Jul 25 17:44:07 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 17:44:07 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 17:44:07 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 17:44:07 2026] OOM killer enabled.
[Sat Jul 25 17:44:07 2026] Restarting tasks: Starting
[Sat Jul 25 17:44:07 2026] Restarting tasks: Done
[Sat Jul 25 17:44:07 2026] random: crng reseeded on system resumption
[Sat Jul 25 17:44:07 2026] PM: suspend exit
[Sat Jul 25 17:44:22 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 17:44:22 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 17:44:23 2026] wlan0: authenticated
[Sat Jul 25 17:44:23 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 17:44:23 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=4)
[Sat Jul 25 17:44:23 2026] wlan0: associated
[Sat Jul 25 17:44:23 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 18:07:53 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 18:07:58 2026] PM: suspend entry (deep)
[Sat Jul 25 18:07:58 2026] Filesystems sync: 0.020 seconds
[Sat Jul 25 18:07:58 2026] ath11k 17a10040.wifi: failed to flush transmit queue, data pkts pending 1
[Sat Jul 25 18:07:58 2026] Freezing user space processes
[Sat Jul 25 18:08:01 2026] Freezing user space processes completed (elapsed 3.411 seconds)
[Sat Jul 25 18:08:01 2026] OOM killer disabled.
[Sat Jul 25 18:08:01 2026] Freezing remaining freezable tasks
[Sat Jul 25 18:08:01 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 18:08:01 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 18:08:01 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 18:08:01 2026] Disabling non-boot CPUs ...
[Sat Jul 25 18:08:01 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 18:08:01 2026] Non-boot CPUs are not disabled
[Sat Jul 25 18:08:02 2026] OOM killer enabled.
[Sat Jul 25 18:08:02 2026] Restarting tasks: Starting
[Sat Jul 25 18:08:02 2026] Restarting tasks: Done
[Sat Jul 25 18:08:02 2026] random: crng reseeded on system resumption
[Sat Jul 25 18:08:02 2026] PM: suspend exit
[Sat Jul 25 18:08:02 2026] PM: suspend entry (s2idle)
[Sat Jul 25 18:08:02 2026] Filesystems sync: 0.015 seconds
[Sat Jul 25 18:08:02 2026] Freezing user space processes
[Sat Jul 25 18:08:02 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Sat Jul 25 18:08:02 2026] OOM killer disabled.
[Sat Jul 25 18:08:02 2026] Freezing remaining freezable tasks
[Sat Jul 25 18:08:02 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sat Jul 25 18:08:02 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 18:08:02 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 18:08:02 2026] OOM killer enabled.
[Sat Jul 25 18:08:02 2026] Restarting tasks: Starting
[Sat Jul 25 18:08:02 2026] Restarting tasks: Done
[Sat Jul 25 18:08:02 2026] random: crng reseeded on system resumption
[Sat Jul 25 18:08:02 2026] PM: suspend exit
[Sat Jul 25 18:08:07 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 18:08:07 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 18:08:07 2026] wlan0: authenticated
[Sat Jul 25 18:08:07 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 18:08:07 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=3)
[Sat Jul 25 18:08:07 2026] wlan0: associated
[Sat Jul 25 18:08:07 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sat Jul 25 19:09:54 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sat Jul 25 19:39:51 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sat Jul 25 19:39:52 2026] PM: suspend entry (deep)
[Sat Jul 25 19:39:52 2026] Filesystems sync: 0.025 seconds
[Sat Jul 25 19:39:52 2026] Freezing user space processes
[Sat Jul 25 19:39:52 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 19:39:52 2026] OOM killer disabled.
[Sat Jul 25 19:39:52 2026] Freezing remaining freezable tasks
[Sat Jul 25 19:39:52 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 19:39:52 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 19:39:52 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 19:39:52 2026] Disabling non-boot CPUs ...
[Sat Jul 25 19:39:52 2026] Wakeup pending. Abort CPU freeze
[Sat Jul 25 19:39:52 2026] Non-boot CPUs are not disabled
[Sat Jul 25 19:39:52 2026] OOM killer enabled.
[Sat Jul 25 19:39:52 2026] Restarting tasks: Starting
[Sat Jul 25 19:39:52 2026] Restarting tasks: Done
[Sat Jul 25 19:39:52 2026] random: crng reseeded on system resumption
[Sat Jul 25 19:39:52 2026] PM: suspend exit
[Sat Jul 25 19:39:52 2026] PM: suspend entry (s2idle)
[Sat Jul 25 19:39:52 2026] Filesystems sync: 0.013 seconds
[Sat Jul 25 19:39:52 2026] Freezing user space processes
[Sat Jul 25 19:39:52 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sat Jul 25 19:39:52 2026] OOM killer disabled.
[Sat Jul 25 19:39:52 2026] Freezing remaining freezable tasks
[Sat Jul 25 19:39:52 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sat Jul 25 19:39:52 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sat Jul 25 19:39:52 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sat Jul 25 19:39:53 2026] OOM killer enabled.
[Sat Jul 25 19:39:53 2026] Restarting tasks: Starting
[Sat Jul 25 19:39:53 2026] Restarting tasks: Done
[Sat Jul 25 19:39:53 2026] random: crng reseeded on system resumption
[Sat Jul 25 19:39:53 2026] PM: suspend exit
[Sat Jul 25 19:39:57 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sat Jul 25 19:39:57 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 19:39:57 2026] wlan0: authenticated
[Sat Jul 25 19:39:57 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sat Jul 25 19:39:57 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=5)
[Sat Jul 25 19:39:57 2026] wlan0: associated
[Sat Jul 25 19:39:57 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sun Jul 26 01:06:09 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Sun Jul 26 01:06:10 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Sun Jul 26 01:06:10 2026] wcd937x_codec audio-codec: Impedance detect ramp error, c1=0, x1=0x0
[Sun Jul 26 01:06:10 2026] wcd937x_codec audio-codec: wcd937x_mbhc_get_result_params: d1=30, c1=3, x1=0x62e, z_val=45341 (milliohm)
[Sun Jul 26 01:16:25 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sun Jul 26 01:16:26 2026] PM: suspend entry (deep)
[Sun Jul 26 01:16:26 2026] Filesystems sync: 0.025 seconds
[Sun Jul 26 01:16:26 2026] Freezing user space processes
[Sun Jul 26 01:16:26 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sun Jul 26 01:16:26 2026] OOM killer disabled.
[Sun Jul 26 01:16:26 2026] Freezing remaining freezable tasks
[Sun Jul 26 01:16:26 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sun Jul 26 01:16:26 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 01:16:26 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 01:16:26 2026] Disabling non-boot CPUs ...
[Sun Jul 26 01:16:26 2026] Wakeup pending. Abort CPU freeze
[Sun Jul 26 01:16:26 2026] Non-boot CPUs are not disabled
[Sun Jul 26 01:16:26 2026] OOM killer enabled.
[Sun Jul 26 01:16:26 2026] Restarting tasks: Starting
[Sun Jul 26 01:16:26 2026] Restarting tasks: Done
[Sun Jul 26 01:16:26 2026] random: crng reseeded on system resumption
[Sun Jul 26 01:16:26 2026] PM: suspend exit
[Sun Jul 26 01:16:26 2026] PM: suspend entry (s2idle)
[Sun Jul 26 01:16:26 2026] Filesystems sync: 0.018 seconds
[Sun Jul 26 01:16:26 2026] Freezing user space processes
[Sun Jul 26 01:16:26 2026] Freezing user space processes completed (elapsed 0.005 seconds)
[Sun Jul 26 01:16:26 2026] OOM killer disabled.
[Sun Jul 26 01:16:26 2026] Freezing remaining freezable tasks
[Sun Jul 26 01:16:26 2026] Freezing remaining freezable tasks completed (elapsed 0.002 seconds)
[Sun Jul 26 01:16:26 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 01:16:26 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 01:16:27 2026] OOM killer enabled.
[Sun Jul 26 01:16:27 2026] Restarting tasks: Starting
[Sun Jul 26 01:16:27 2026] Restarting tasks: Done
[Sun Jul 26 01:16:27 2026] random: crng reseeded on system resumption
[Sun Jul 26 01:16:27 2026] PM: suspend exit
[Sun Jul 26 01:16:31 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sun Jul 26 01:16:31 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 01:16:31 2026] wlan0: authenticated
[Sun Jul 26 01:16:31 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 01:16:31 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=7)
[Sun Jul 26 01:16:31 2026] wlan0: associated
[Sun Jul 26 01:16:31 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sun Jul 26 01:16:32 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 01:17:08 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 01:51:54 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 01:52:33 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 01:52:35 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 01:59:12 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:01:56 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 02:02:48 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 02:03:46 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:07:06 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:07:11 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 02:07:19 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:07:20 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 02:08:18 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:08:19 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:14:19 2026] dsi_err_worker: status=5
[Sun Jul 26 02:14:19 2026] dsi_err_worker: status=0
[Sun Jul 26 02:21:53 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 02:33:02 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:33:40 2026] platform 3d6a000.gmu: [drm:a6xx_hfi_wait_for_msg_interrupt] ERROR Message HFI_H2F_MSG_GX_BW_PERF_VOTE id 2797 timed out waiting for response
[Sun Jul 26 02:33:40 2026] platform 3d6a000.gmu: [drm:a6xx_hfi_send_msg] ERROR Unexpected message id 2797 on the response queue
[Sun Jul 26 02:37:47 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 02:44:01 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:44:05 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:45:46 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sun Jul 26 02:47:35 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sun Jul 26 02:47:35 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sun Jul 26 02:47:35 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 2/3)
[Sun Jul 26 02:47:35 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 3/3)
[Sun Jul 26 02:47:35 2026] wlan0: authentication with 7c:39:53:e9:9d:fb timed out
[Sun Jul 26 02:47:48 2026] wlan0: authenticate with 7c:39:53:e9:9d:fb (local address=8e:5f:d9:1c:d8:8e)
[Sun Jul 26 02:47:48 2026] wlan0: send auth to 7c:39:53:e9:9d:fb (try 1/3)
[Sun Jul 26 02:47:48 2026] wlan0: authenticated
[Sun Jul 26 02:47:48 2026] wlan0: associate with 7c:39:53:e9:9d:fb (try 1/3)
[Sun Jul 26 02:47:48 2026] wlan0: RX AssocResp from 7c:39:53:e9:9d:fb (capab=0x1411 status=0 aid=2)
[Sun Jul 26 02:47:48 2026] wlan0: associated
[Sun Jul 26 02:47:48 2026] wlan0: Limiting TX power to 20 (20 - 0) dBm as advertised by 7c:39:53:e9:9d:fb
[Sun Jul 26 02:48:13 2026] wlan0: deauthenticating from 7c:39:53:e9:9d:fb by local choice (Reason: 3=DEAUTH_LEAVING)
[Sun Jul 26 02:48:14 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sun Jul 26 02:48:14 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 02:48:14 2026] wlan0: authenticated
[Sun Jul 26 02:48:14 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 02:48:14 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=9)
[Sun Jul 26 02:48:14 2026] wlan0: associated
[Sun Jul 26 02:48:14 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sun Jul 26 02:48:14 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:49:51 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 02:50:32 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input13
[Sun Jul 26 02:55:48 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Sun Jul 26 02:55:48 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Sun Jul 26 02:55:48 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Sun Jul 26 03:02:13 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 03:22:31 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sun Jul 26 03:22:32 2026] PM: suspend entry (deep)
[Sun Jul 26 03:22:32 2026] Filesystems sync: 0.030 seconds
[Sun Jul 26 03:22:32 2026] Freezing user space processes
[Sun Jul 26 03:22:32 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sun Jul 26 03:22:32 2026] OOM killer disabled.
[Sun Jul 26 03:22:32 2026] Freezing remaining freezable tasks
[Sun Jul 26 03:22:32 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sun Jul 26 03:22:32 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 03:22:32 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 03:22:32 2026] Disabling non-boot CPUs ...
[Sun Jul 26 03:22:32 2026] Wakeup pending. Abort CPU freeze
[Sun Jul 26 03:22:32 2026] Non-boot CPUs are not disabled
[Sun Jul 26 03:22:32 2026] OOM killer enabled.
[Sun Jul 26 03:22:32 2026] Restarting tasks: Starting
[Sun Jul 26 03:22:32 2026] Restarting tasks: Done
[Sun Jul 26 03:22:32 2026] random: crng reseeded on system resumption
[Sun Jul 26 03:22:32 2026] PM: suspend exit
[Sun Jul 26 03:22:32 2026] PM: suspend entry (s2idle)
[Sun Jul 26 03:22:32 2026] Filesystems sync: 0.019 seconds
[Sun Jul 26 03:22:32 2026] Freezing user space processes
[Sun Jul 26 03:22:32 2026] Freezing user space processes completed (elapsed 0.004 seconds)
[Sun Jul 26 03:22:32 2026] OOM killer disabled.
[Sun Jul 26 03:22:32 2026] Freezing remaining freezable tasks
[Sun Jul 26 03:22:32 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sun Jul 26 03:22:32 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 03:22:32 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 03:22:33 2026] OOM killer enabled.
[Sun Jul 26 03:22:33 2026] Restarting tasks: Starting
[Sun Jul 26 03:22:33 2026] Restarting tasks: Done
[Sun Jul 26 03:22:33 2026] random: crng reseeded on system resumption
[Sun Jul 26 03:22:33 2026] PM: suspend exit
[Sun Jul 26 03:22:35 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input14
[Sun Jul 26 03:22:37 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sun Jul 26 03:22:37 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 03:22:37 2026] wlan0: authenticated
[Sun Jul 26 03:22:37 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 03:22:37 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=1)
[Sun Jul 26 03:22:37 2026] wlan0: associated
[Sun Jul 26 03:22:37 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sun Jul 26 03:41:04 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 03:41:51 2026] [drm:dpu_crtc_get_vblank_counter] ERROR no encoder found for crtc 0
[Sun Jul 26 03:47:40 2026] arm-smmu 15000000.iommu: Unhandled context fault: fsr=0x402, iova=0x00000100, fsynr=0x5f0023, cbfrsynra=0xd00, cb=12
[Sun Jul 26 03:47:40 2026] arm-smmu 15000000.iommu: FSR = 00000402 [Format=2 TF], SID=0xd00
[Sun Jul 26 03:47:40 2026] arm-smmu 15000000.iommu: FSYNR0 = 005f0023 [S1CBNDX=95 PNU PLVL=3]
[Sun Jul 26 03:54:56 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0
[Sun Jul 26 04:08:43 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sun Jul 26 04:08:44 2026] PM: suspend entry (deep)
[Sun Jul 26 04:08:44 2026] Filesystems sync: 0.024 seconds
[Sun Jul 26 04:08:44 2026] Freezing user space processes
[Sun Jul 26 04:08:44 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Sun Jul 26 04:08:44 2026] OOM killer disabled.
[Sun Jul 26 04:08:44 2026] Freezing remaining freezable tasks
[Sun Jul 26 04:08:44 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sun Jul 26 04:08:44 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 04:08:44 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 04:08:44 2026] Disabling non-boot CPUs ...
[Sun Jul 26 04:08:44 2026] Wakeup pending. Abort CPU freeze
[Sun Jul 26 04:08:44 2026] Non-boot CPUs are not disabled
[Sun Jul 26 04:08:44 2026] OOM killer enabled.
[Sun Jul 26 04:08:44 2026] Restarting tasks: Starting
[Sun Jul 26 04:08:44 2026] Restarting tasks: Done
[Sun Jul 26 04:08:44 2026] random: crng reseeded on system resumption
[Sun Jul 26 04:08:44 2026] PM: suspend exit
[Sun Jul 26 04:08:44 2026] PM: suspend entry (s2idle)
[Sun Jul 26 04:08:44 2026] Filesystems sync: 0.016 seconds
[Sun Jul 26 04:08:44 2026] Freezing user space processes
[Sun Jul 26 04:08:44 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Sun Jul 26 04:08:44 2026] OOM killer disabled.
[Sun Jul 26 04:08:44 2026] Freezing remaining freezable tasks
[Sun Jul 26 04:08:44 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sun Jul 26 04:08:44 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 04:08:45 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 04:08:45 2026] OOM killer enabled.
[Sun Jul 26 04:08:45 2026] Restarting tasks: Starting
[Sun Jul 26 04:08:45 2026] Restarting tasks: Done
[Sun Jul 26 04:08:45 2026] random: crng reseeded on system resumption
[Sun Jul 26 04:08:45 2026] PM: suspend exit
[Sun Jul 26 04:08:48 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input15
[Sun Jul 26 04:08:49 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sun Jul 26 04:08:49 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 04:08:49 2026] wlan0: authenticated
[Sun Jul 26 04:08:49 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 04:08:49 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=4)
[Sun Jul 26 04:08:49 2026] wlan0: associated
[Sun Jul 26 04:08:49 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sun Jul 26 14:58:30 2026] wlan0: deauthenticating from 3a:3e:6e:a1:db:03 by local choice (Reason: 3=DEAUTH_LEAVING)
[Sun Jul 26 14:58:31 2026] PM: suspend entry (deep)
[Sun Jul 26 14:58:31 2026] Filesystems sync: 0.028 seconds
[Sun Jul 26 14:58:31 2026] Freezing user space processes
[Sun Jul 26 14:58:31 2026] Freezing user space processes completed (elapsed 0.003 seconds)
[Sun Jul 26 14:58:31 2026] OOM killer disabled.
[Sun Jul 26 14:58:31 2026] Freezing remaining freezable tasks
[Sun Jul 26 14:58:31 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sun Jul 26 14:58:31 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 14:58:31 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 14:58:31 2026] Disabling non-boot CPUs ...
[Sun Jul 26 14:58:31 2026] Wakeup pending. Abort CPU freeze
[Sun Jul 26 14:58:31 2026] Non-boot CPUs are not disabled
[Sun Jul 26 14:58:31 2026] OOM killer enabled.
[Sun Jul 26 14:58:31 2026] Restarting tasks: Starting
[Sun Jul 26 14:58:32 2026] Restarting tasks: Done
[Sun Jul 26 14:58:32 2026] random: crng reseeded on system resumption
[Sun Jul 26 14:58:32 2026] PM: suspend exit
[Sun Jul 26 14:58:32 2026] PM: suspend entry (s2idle)
[Sun Jul 26 14:58:32 2026] Filesystems sync: 0.016 seconds
[Sun Jul 26 14:58:32 2026] Freezing user space processes
[Sun Jul 26 14:58:32 2026] Freezing user space processes completed (elapsed 0.010 seconds)
[Sun Jul 26 14:58:32 2026] OOM killer disabled.
[Sun Jul 26 14:58:32 2026] Freezing remaining freezable tasks
[Sun Jul 26 14:58:32 2026] Freezing remaining freezable tasks completed (elapsed 0.001 seconds)
[Sun Jul 26 14:58:32 2026] printk: Suspending console(s) (use no_console_suspend to debug)
[Sun Jul 26 14:58:32 2026] dwc3-qcom a600000.usb: port-1 HS-PHY not in L2
[Sun Jul 26 14:58:32 2026] OOM killer enabled.
[Sun Jul 26 14:58:32 2026] Restarting tasks: Starting
[Sun Jul 26 14:58:32 2026] Restarting tasks: Done
[Sun Jul 26 14:58:32 2026] random: crng reseeded on system resumption
[Sun Jul 26 14:58:32 2026] PM: suspend exit
[Sun Jul 26 14:58:35 2026] input: JBL Tune 670NC (AVRCP) as /devices/virtual/input/input16
[Sun Jul 26 14:58:36 2026] wlan0: authenticate with 3a:3e:6e:a1:db:03 (local address=4a:cc:00:52:e9:eb)
[Sun Jul 26 14:58:36 2026] wlan0: send auth to 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 14:58:36 2026] wlan0: authenticated
[Sun Jul 26 14:58:36 2026] wlan0: associate with 3a:3e:6e:a1:db:03 (try 1/3)
[Sun Jul 26 14:58:36 2026] wlan0: RX AssocResp from 3a:3e:6e:a1:db:03 (capab=0x1431 status=0 aid=6)
[Sun Jul 26 14:58:36 2026] wlan0: associated
[Sun Jul 26 14:58:36 2026] wlan0: Limiting TX power to 36 (36 - 0) dBm as advertised by 3a:3e:6e:a1:db:03
[Sun Jul 26 15:07:32 2026] [drm:dpu_crtc_get_scanout_position] ERROR no encoder found for crtc 0

@mbohun

mbohun commented Aug 2, 2026

Copy link
Copy Markdown
Author
04_FASTBOOTD

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment