Motorola One Fusion (motorola-astro)
| This device has been tested with postmarketOS, but its device package has not yet been added to the postmarketOS repositories. This means that it cannot be selected in pmbootstrap. Status: In progress |
|
Information tab on Plasma Mobile | |
| Manufacturer | Motorola |
|---|---|
| Name | One Fusion |
| Codename | motorola-astro |
| Model | XT2073-x |
| Released | 2020 |
| Type | handset |
| Hardware | |
| Chipset | Qualcomm Snapdragon 710 (SDM710) |
| CPU |
8-core (2x Kryo 360 6x Kryo 360) |
| GPU | Adreno 616 |
| Display | 720 x 1600 IPS LCD, 6.5" |
| Storage | 128 GB (eMMC) |
| Memory | 4 GB |
| Architecture | aarch64 |
| Software | |
Original software The software and version the device was shipped with. |
Android 10 |
Extended version The most recent supported version from the manufacturer. |
Android 11 |
| FOSS bootloader | no |
Mainline Instead of a Linux kernel fork, it is possible to run (Close to) Mainline. |
no |
Flashing Whether it is possible to flash the device with pmbootstrap flasher. |
Works
|
|---|---|
USB Networking After connecting the device with USB to your PC, you can connect to it via telnet (initramfs) or SSH (booted system). |
Works
|
Internal storage eMMC, SD cards, UFS... |
Works
|
SD card Also includes other external storage cards. |
Works
|
Battery Whether charging and battery level reporting work. |
Works
|
Screen Whether the display works; ideally with sleep mode and brightness control. |
Works
|
Touchscreen |
Works
|
| Multimedia | |
3D Acceleration |
Works
|
Audio Audio playback, microphone, headset and buttons. |
Untested
|
Camera |
Untested
|
Camera Flash |
Works
|
| Connectivity | |
WiFi |
Broken
|
Bluetooth |
Works
|
GPS |
Broken
|
| Modem | |
Calls |
Broken
|
SMS |
Broken
|
Mobile data |
Broken
|
| Miscellaneous | |
FDE Full disk encryption and unlocking with unl0kr. |
Untested
|
USB OTG USB On-The-Go or USB-C Role switching. |
Partial
|
| Sensors | |
Accelerometer Handles automatic screen rotation in many interfaces. |
Works
|
Ambient Light Measures the light level; used for automatic screen dimming in many interfaces. |
Works
|
Proximity |
Works
|
Haptics |
Untested
|
Secondary Bootloader Whether it is possible to chainload U-Boot from stock bootloader. |
Broken
|
|---|---|
Mainline Whether latest upstream versions of U-Boot are not broken and it is possible to use them. |
Broken
|
Internal Storage Whether it is possible to boot from internal storage (e.g. eMMC or UFS). |
Broken
|
SD card Whether it is possible to boot from SD card. |
Broken
|
USB Peripheral Whether it is possible to use device as a peripheral in U-Boot, e.g. for fastboot mode. |
Broken
|
Display |
Broken
|
Buttons Whether it is possible to navigate in boot menu or grub with volume and power buttons. |
Broken
|
| This device is based on the Snapdragon 710. See the SoC page for common tips, guides and troubleshooting steps |
The Motorola One Fusion is a mid-range smartphone released in 2020 and powered by the SDM710 SoC.
Maintainers
Users owning this device
- Esteuwu (Notes: Mainlining in progress)
Table of hardware
| Component | Model | Status | Notes |
|---|---|---|---|
| SoC | Qualcomm Snapdragon 710 | Y | All 8 cores work. |
| Storage/RAM | Samsung DV6DMB | Y | uMCP module (eMMC + LPDDR4x RAM) |
| SD reader | SoC interface (sdhci_2) |
Y | Working! |
| Display | DJN-branded panel | Y | Only DJN-Novatek variant works for now. Support for Holitech-Himax variant is not implemented |
| Touchscreen | Novatek NT36525B | Y | Downstream driver imported from xiaomi-nabu. Firmware is required, but it works. Huge thanks to Val for the tip! |
| Wi-Fi/BT | Qualcomm WCN3990 | N | Modem is not starting |
| Speaker amplifier | Awinic AW88264 | N | Untested |
| Accel/gyro | Bosch BMI120 | Y | Connected to LPI, works |
| Compass | Memsic MMC5603NJ | Y | Connected to LPI, works |
Issues
- The phone might shut down while booting. Logs in pstore have no detail about this.
- While very rare, the screen might fail to initialize while booting. Kernel log shows no errors/warnings whatsoever.
- Might be related to the panel driver?
Modem
As of kernel v6.19.10, starting the modem will either a) cause it to endlessly crash, or b) crash the whole SoC. If you really want to get an internet connection you may check out USB Internet or connect through Bluetooth.
Installation
Standard procedure:
pmbootstrap init pmbootstrap install # Also supported # pmbootstrap install --sdcard /dev/mmcblkX
After following the above, you must generate an empty DTBO partition because this partition is not erasable from either fastboot or stock fastbootd. For example:
dd if=/dev/zero of=dtbo.img bs=1M count=24
Flash the generated partition afterwards:
# If you installed pmOS to an SD card, you can achieve a dual boot. Make sure slotted partitions are identical beforehand! # fastboot --set-active=other fastboot flash dtbo dtbo.img
If you want to install pmOS to the userdata partition, first boot into fastbootd. (having erased the dtbo partition doesn't matter). Then:
fastboot flash userdata motorola-astro.img
Due to a quirk in Motorola's bootloader (which is signed, so this is unfixable), the bootloader will throw an assertion and reboot the device if unrecognized arguments are found in the embedded cmdline, this being the case for the default boot.img file generated by pmbootstrap. To work around this:
unpack_bootimg --boot_img boot.img --format mkbootimg --header_version 0 --kernel out/kernel --ramdisk out/ramdisk --pagesize 0x00000800 --base 0x00000000 --kernel_offset 0x10000000 --ramdisk_offset 0x10000000 --second_offset 0x10000000 --tags_offset 0x10000000 --board '' --cmdline 'quiet pmos_boot_uuid=48d160bf-f2c5-4edf-bb51-944d5d777c40 pmos_root_uuid=65004247-2820-48b6-911b-8f98b5392ebf pmos_rootfsopts=subvol=@,compress=zstd:2,ssd'
Then pass the generated arguments to mkbootimg. What's important is that you clear the arguments passed to --cmdline.
mkbootimg --header_version 0 --kernel out/kernel --ramdisk out/ramdisk --pagesize 0x00000800 --base 0x00000000 --kernel_offset 0x10000000 --ramdisk_offset 0x10000000 --second_offset 0x10000000 --tags_offset 0x10000000 --board '' --cmdline '' --out boot-empty-cmdline.img
Flash the generated boot file afterwards:
fastboot flash boot boot-empty-cmdline.img
Reboot the device to boot into pmOS. That's it!
UART
UART is enabled and works. The bootloader uses 115200n8 and Linux does as well. Logic level is 1.8V.

You can grab GND from the shell in the center or somewhere else.
| You must connect both TX and RX, otherwise nothing will be shown if you only connect TX. |
UART log
Format: Log Type - Time(microsec) - Message - Optional Info
Log Type: B - Since Boot(Power On Reset), D - Delta, S - Statistic
S - QC_IMAGE_VERSION_STRING=BOOT.XF.2.1-00133-SDM710LZB-3
S - IMAGE_VARIANT_STRING=SDM670LA
S - OEM_IMAGE_VERSION_STRING=android-build nobody 2022.05.19-09:31 c7ed0cea4
S - Boot Interface: eMMC
S - Secure Boot: On
S - Core 0 Frequency, 1516 MHz
S - PBL Patch Ver: 0
S - PBL freq: 600 MHZ
S - I-cache: On
S - D-cache: On
B - 94 - PBL, Start
B - 5465 - bootable_media_detect_entry
B - 141546 - bootable_media_detect_success
B - 141920 - elf_loader_entry
B - 143280 - auth_hash_seg_entry
B - 150841 - auth_hash_seg_exit
B - 186627 - elf_segs_hash_verify_entry
B - 193209 - elf_segs_hash_verify_exit
B - 193859 - auth_xbl_sec_hash_seg_entry
B - 201076 - auth_xbl_sec_hash_seg_exit
B - 201077 - xbl_sec_segs_hash_verify_entry
B - 201807 - xbl_sec_segs_hash_verify_exit
B - 201835 - PBL, End
B - 215452 - SBL1, Start
B - 310734 - usb: eud_init_start
B - 311313 - usb: eud_init_finish
B - 314577 - motorola_id_init, Start
B - 367067 - product ID = C, hardware ID = I
B - 367098 - boot_flash_init, Start
D - 0 - boot_flash_init, Delta
B - 375028 - xblconfig_init, Start
D - 3812 - Auth Metadata
D - 196267 - xblconfig_init, Delta
B - 576785 - sbl1_ddr_set_default_params, Start
D - 1525 - sbl1_ddr_set_default_params, Delta
B - 584044 - boot_config_data_table_init, Start
B - 588680 - Using default CDT
D - 4636 - boot_config_data_table_init, Delta - (0 Bytes)
B - 596458 - CDT Version:3,Platform ID:8,Major ID:1,Minor ID:0,Subtype:0
B - 607865 - pm_device_init, Start
B - 612470 - PM: PON REASON: PM0=0x8000028000000080:0x800001 PM1=0x8000088000000020:0x800
B - 658190 - PM: SET_VAL:Skip
D - 50325 - pm_device_init, Delta
B - 661240 - pm_driver_init, Start
B - 668804 - PM: OCP Clearing for L4A is Skipped :PM660 is not supported the LDO4
B - 677557 - PM: DBU: DBU1 is HALO buck
B - 677740 - PM: DBU: DBU2 is HALO buck
B - 681522 - PM: DBU log: DBU1 vendor ID: 0xa8, DBU2 vendor ID: 0xa8
B - 691160 - PM: DBU: Printing DBU1 and DBU2 status
B - 692441 - PM: DBU1 vsel1: 0xd2, vsel0: 0xb8, mode: 0x80
B - 697443 - PM: DBU2 vsel1: 0xd2, vsel0: 0xd2, mode: 0x82
D - 38003 - pm_driver_init, Delta
B - 708301 - vsense_init, Start
D - 0 - vsense_init, Delta
B - 715255 - sbl1_ddr_set_params, Start
B - 720318 - Pre_DDR_clock_init, Start
D - 91 - Pre_DDR_clock_init, Delta
D - 10767 - sbl1_ddr_set_params, Delta
B - 729834 - sbl1_ddr_init, Start
D - 12749 - sbl1_ddr_init, Delta
B - 746548 - DSF version = 32.2, DSF SHRM version = 19.1
B - 749934 - Manufacturer ID = 1, Device Type = 7
B - 755393 - Rank 0 size = 2048 MB, Rank 1 size = 2048 MB
B - 760395 - do_ddr_training, Start
B - 767014 - Frequency = 1018 MHz
D - 3660 - do_ddr_training, Delta
B - 776926 - pImem Init Start
D - 9851 - pImem Init End, Delta
B - 788425 - clock_init, Start
D - 213 - clock_init, Delta
B - 793915 - APDP Image Loaded, Start
D - 2684 - APDP Image Loaded, Delta - (0 Bytes)
B - 800320 - motorola_wdog_dump Begin, wdog_status: 0
B - 805139 - motorola_wdog_dump End
B - 810842 - PM: 0: PON=0x80:KPDPWR_N: ON=0x80:PON_SEQ: POFF=0x2:PS_HOLD: OFF=0x80:POFF_SEQ: FAULT1=0x1:GP_FAULT0: S3 RST=0x80:KPDPWR_ANDOR_RESIN
B - 825360 - PM: 1: PON=0x20:PON1: ON=0x80:PON_SEQ: POFF=0x8:GP1: OFF=0x80:POFF_SEQ: FAULT2=0x8:FAULT_N
B - 832985 - PM: SMEM Chgr Info Write Success
B - 840915 - AOP Image Loaded, Start
D - 3508 - Auth Metadata
D - 10034 - Segments hash check
D - 21777 - AOP Image Loaded, Delta - (151916 Bytes)
B - 866017 - QSEE Dev Image Loaded, Start
D - 3447 - Auth Metadata
D - 335 - Segments hash check
D - 12688 - QSEE Dev Image Loaded, Delta - (32436 Bytes)
B - 882029 - QSEE Image Loaded, Start
D - 9851 - Auth Metadata
D - 16897 - Segments hash check
D - 55937 - QSEE Image Loaded, Delta - (2028589 Bytes)
B - 941230 - Image Load, Start
D - 0 - SEC Image Loaded, Delta - (0 Bytes)
B - 949739 - QHEE Image Loaded, Start
D - 3751 - Auth Metadata
D - 2288 - Segments hash check
D - 20008 - QHEE Image Loaded, Delta - (340080 Bytes)
B - 973560 - ABL Image Loaded, Start
D - 3538 - Auth Metadata
D - 1525 - Segments hash check
D - 14030 - ABL Image Loaded, Delta - (334416 Bytes)
B - 990914 - ADSP Image Loaded, Start
D - 5155 - ADSP Image Loaded, Delta - (0 Bytes)
B - 999973 - APPSBL Image Loaded, Start
D - 3569 - Auth Metadata
D - 13084 - Segments hash check
D - 44805 - APPSBL Image Loaded, Delta - (3014656 Bytes)
B - 1082597 - SBL1, End
D - 867145 - SBL1, Delta
S - Flash Throughput, 100000 KB/s (5965041 Bytes, 59164 us)
S - DDR Frequency, 1017 MHz
UEFI Start [ 1366] SEC
ASLR : On
DEP : Off
Timer Delta : +1 mS
CONF File : uefiplatLA.cfg
UEFI Ver : 5.0.220519.BOOT.XF.2.1-00133-SDM710LZB-3
Build Info : 64b May 19 2022 09:33:08
Boot Device : eMMC
PROD Mode : TRUE
Retail : TRUE
[ 1491] DxeCore.efi
[ 1501] EnvDxe.efi
[ 1503] ReportStatusCodeRouterRuntimeDxe.efi
[ 1503] StatusCodeHandlerRuntimeDxe.efi
[ 1504] TimestampDxe.efi
[ 1504] RuntimeDxe.efi
[ 1505] ArmCpuDxe.efi
[ 1515] ArmGicDxe.efi
[ 1519] ArmTimerDxe.efi
[ 1520] WatchdogTimer.efi
[ 1521] SecurityDxe.efi
[ 1521] ASN1X509Dxe.efi
[ 1522] SecRSADxe.efi
[ 1522] VerifiedBootDxe.efi
[ 1523] MotBootFlagsDxe.efi
[ 1524] SmemDxe.efi
POWER_ON_REASON_EXT:
[ 1525] DALSys.efi
[ 1526] HWIODxeDriver.efi
[ 1526] ChipInfo.efi
[ 1527] PlatformInfoDxeDriver.efi
[ 1528] HALIOMMU.efi
[ 1529] ResetRuntimeDxe.efi
[ 1530] MetronomeDxe.efi
[ 1531] ULogDxe.efi
[ 1531] CmdDbDxe.efi
[ 1532] NpaDxe.efi
[ 1533] RpmhDxe.efi
[ 1534] PdcDxe.efi
[ 1535] ClockDxe.efi
[ 1543] CPRDxe.efi
[ 1544] DiskIoDxe.efi
[ 1545] PartitionDxe.efi
[ 1545] SdccDxe.efi
[ 1628] UFSDxe.efi
[ 1629] TzDxe.efi
[ 1632] Fat.efi
[ 1633] EnglishDxe.efi
[ 1634] FvSimpleFileSystem.efi
[ 1634] EmuVariableRuntimeDxe.efi
[ 1635] EmbeddedMonotonicCounter.efi
[ 1636] RealTimeClock.efi
[ 1637] PrintDxe.efi
[ 1637] DevicePathDxe.efi
[ 1638] CapsuleRuntimeDxe.efi
[ 1639] MotStorageDxe.efi
[ 1640] MotUtagsDxe.efi
[ 1641] MotUtagsDictDxe.efi
[ 1642] MotHwIdDxe.efi
[ 1646] HiiDatabase.efi
[ 1647] FontDxe.efi
[ 1652] QcomBds.efi
Mounted FAT Volume: logfs
[ 1683] DALTLMM.efi
[ 1684] I2C.efi
[ 1685] SPMI.efi
[ 1687] SPI.efi
[ 1688] PmicDxe.efi
PM0: 27, PM1: 26,
===============
PM0 PON REASONS
===============
RAW 64BIT VALUE: 0x8000028000000080
ON_REASON: "PON_SEQ"
OFF_REASON: "POFF_SEQ"
PON_REASON1: "KPDPWR_N"
POFF_REASON1: "PS_HOLD"
WARM_RESET_REASON1:
===============
PM1 PON REASONS
===============
RAW 64BIT VALUE: 0x8000088000000020
ON_REASON: "PON_SEQ"
OFF_REASON: "POFF_SEQ"
PON_REASON1: "PON1"
POFF_REASON1: "GP1"
WARM_RESET_REASON1:
===============
SPARE REGISTERS
===============
DVDD_0: 0x00:
DVDD_1: 0x00
XVDD_0: 0x08:
XVDD_1: 0x00:
SOFT_0: 0x00:
[ 1716] get_mbm_fdt: Found best fdt @ 0x3B74
[ 1716] AdcDxe.efi
[ 1718] QcomChargerDxeLA.efi
Retail build, PrintChargerAppDbgMsg is disabled!
PmicDxe:: PmicFgSram_VerifySramContent FgUnUsedData = 0x0
PmicDxe:: PmicFgSram_SramHealthy SRAM contents are good
[ 1728] ChargerExDxe.efi
[ 1728] TouchDxe.efi
[ 1730] get_mbm_fdt: Found best fdt @ 0x3B74
Unable to get DisplayPanelDetectionResult, Not Found
Unable to get primary Panel Detection Status
[ 1730] TOUCH: touch_probe: Probing [synaptics_rmi4]......
[ 1730] TOUCH: touch_probe: Probing [ti_ldc]......
[ 1730] TOUCH: TouchDxeEntry: Failed to probe touch devices
[ 1733] UsbfnDwc3Dxe.efi
[ 1734] UsbConfigDxe.efi
[ 1735] SimpleTextInOutSerial.efi
[ 1736] ConPlatformDxe.efi
[ 1737] ConSplitterDxe.efi
[ 1738] GraphicsConsoleDxe.efi
[ 1739] ButtonsDxe.efi
Touch protocol is not ready
Touch protocol is not ready
[ 1740] TsensDxe.efi
[ 1741] MotCoreServicesDxe.efi
[ 1742] AbDxe.efi
Multi Slot boot is supported
[ 1744] DisplayDxe.efi
[ 1746] get_mbm_fdt: Found best fdt @ 0x3B74
MDPLib : SetClockFreqHz: Clock "disp_cc_mdss_axi_clk" to 240000000Hz returned an error!
disp_reset_gpio = 75
djn_nova_ID_652: 0x0D 0x01 0x25 0x92
Detected panel id 2 & version:00710000
Panel 0 auto detection status: 2
DisplayDxe: Resolution 720x1600 (1 intf)
FDT second display panel is disabled!
DisplayDxe: MDPSetMode() to 0!
[ 1925] MbmModeDxe.efi
EXT4 features: 0x3C, 0x42, 0x7B
root inode: i_flags 0x80000
Touch protocol is not ready
Repeating touch protocol failure messages are muted
[ 1929] HashDxe.efi
[ 1929] MotSolDxe.efi
Primary display resolution: 720 x 1600
DAP version: 10,0
DAP sector size: 0x200
Blkdev:
[0] super, sz 0x214000000, start sec 0x800
Groups:
[0] default, sz 0x0
[1] mot_dp_group_a, sz 0x109C00000
free sz: 0x17A63000
[2] mot_dp_group_b, sz 0x109C00000
free sz: 0xFFA32000
Partitions:
[0] system_a, a=0x1, i=0, n=1, g=1, sz 0x4C61C000
[1] system_b, a=0x1, i=1, n=1, g=2, sz 0xA1CE000
[2] vendor_a, a=0x1, i=2, n=1, g=1, sz 0x1FA48000
[3] vendor_b, a=0x1, i=3, n=0, g=2, sz 0x0
[4] product_a, a=0x1, i=3, n=1, g=1, sz 0x86139000
[5] product_b, a=0x1, i=4, n=0, g=2, sz 0x0
Extents:
start 0x800, num 0x2630E0, partition 0
gap: 0xE4000 (num of secs: 0x720)
start 0x264000, num 0x50E70, partition 1
gap: 0x32000 (num of secs: 0x190)
start 0x2B5000, num 0xFD240, partition 2
gap: 0xB8000 (num of secs: 0x5C0)
start 0x3B2800, num 0x4309C8, partition 4
usable space: 0x1179C7000 (num of secs: 0x8BCE38)
Secondary display resolution: 0 x 0
EnvDxe Render Callback
[ 1953] BacklightDxe.efi
WARNING: Too late to perform 1950ms power key debounce
FG pmic_device(0) GetBatteryStatus: Voltage = 4223 mV
[ 1958] get_mbm_fdt: Found best fdt @ 0x3B74
DisplayBackLightBrightnessLevelControl: Failed to set secondary backlight!
backlight_control: DisplayBacklightBrightnessLevelControl 1 returned error = Device Error
[ 2020] LimitsDxe.efi
APC1 IDDQ WC 0 , L2:4, CPU[0]:24, CPU[1]:24
APC1 Total 52
LoadSys TIME 0ms
ISENSE TOTAL TIME 0ms
[ 2021] GpiDxe.efi
WARNING - Use MAX tgt_num_qup!
[ 2098] RngDxe.efi
[ 2099] DDRInfoDxe.efi
[ 2100] UsbMsdDxe.efi
[ 2101] UsbDeviceDxe.efi
-----------------------------
Platform Init [ 2148] BDS
Var Store : Source from UTAG
Run Cycle : 3026
Platform : MTP
Chip Name : SDM710
Chip Ver : 1.1
Core 0 Freq: 1516 MHz
-----------------------------
haptic power on
haptic power off
[ 2413] QcomChargerApp.efi
QcomChargerApp:: QcomChargerApp_Entry NOT Factory Mode
smem_get_addr: SMEM get addr failed! smem_type=105
DisplayBackLightBrightnessLevelControl: Failed to set secondary backlight!
DisplayBackLightBrightnessLevelControl: Failed to set external backlight!
QcomChargerApp:: QcomChargerAppEvent_HandleBacklight DisplayBacklightBrightnessLevelControl returned error = 7.
UEFI Total : 1114 ms
POST Time [ 2480] OS Loader
[ 2484] MotoBootModule.efi
[ 2487] I - MBM version is MBM-3.0-astro_retail-d88b69237fd-220519
[ 2487] I - Power up reason is: 0x00000080 ("power_key_press")
Currently running bootloader is from BOOT LUN: 0, slot: _b/_b
Total DDR Size: 0x00000000FE2C0000
[ 2489] get_mbm_fdt: Found best fdt @ 0x3B74
AppReg Init:9 mS
LoadSecureApps: Load app from partition(keymaster): Status = 0x0, AppId = 1
prov: app ID 2
VB: RWDeviceState: Succeed using rpmb!
GPT validation pass!
[ 2698] SOD: initializing...
[ 2703] SOD: RAM dump feature is disabled
[ 2709] RAM: SAMSUNG, LP4x, 4096 MB, MR5:0x01, MR6:0x06, MR7:0x10, MR8:0x12
[ 2720] I - Entering normal Android mode
[ 2726] I - SSM: SSM loaded CID=50
VB: RWDeviceState: Succeed using rpmb!
[ 2742] I - SSM: verity error counter is cleared
Trying to boot from slot _b
_b ever booted successfully
Mark the slot _b as Active
Refreshing BlockIO Handles
[ 2847] SOD: Partition table changed, invalidating
[ 2847] SOD: updating config
DAP version: 10,0
DAP sector size: 0x200
Blkdev:
[0] super, sz 0x214000000, start sec 0x800
Groups:
[0] default, sz 0x0
[1] mot_dp_group_a, sz 0x109C00000
free sz: 0x17A63000
[2] mot_dp_group_b, sz 0x109C00000
free sz: 0xFFA32000
Partitions:
[0] system_a, a=0x1, i=0, n=1, g=1, sz 0x4C61C000
[1] system_b, a=0x1, i=1, n=1, g=2, sz 0xA1CE000
[2] vendor_a, a=0x1, i=2, n=1, g=1, sz 0x1FA48000
[3] vendor_b, a=0x1, i=3, n=0, g=2, sz 0x0
[4] product_a, a=0x1, i=3, n=1, g=1, sz 0x86139000
[5] product_b, a=0x1, i=4, n=0, g=2, sz 0x0
Extents:
start 0x800, num 0x2630E0, partition 0
gap: 0xE4000 (num of secs: 0x720)
start 0x264000, num 0x50E70, partition 1
gap: 0x32000 (num of secs: 0x190)
start 0x2B5000, num 0xFD240, partition 2
gap: 0xB8000 (num of secs: 0x5C0)
start 0x3B2800, num 0x4309C8, partition 4
usable space: 0x1179C7000 (num of secs: 0x8BCE38)
Sponsor with same callback already exists!
[ 2851] SOD: Failed to install boot flag sponsor
Booting Into Mission Mode
UpdateRollbackSyscall: Older TZ, skipping updatepartition vendor_boot_b does not exit!
avb_slot_verify.c:492: DEBUG: Loading vbmeta struct from partition 'vbmeta_b'.
Load Image vbmeta_b total time: 1 ms
avb_slot_verify.c:178: DEBUG: boot_b: Loading entire partition.
Load Image boot_b total time: 212 ms
avb_slot_verify.c:233: ERROR: boot_b: Hash of data does not match digest in descriptor.
avb_slot_verify.c:178: DEBUG: dtbo_b: Loading entire partition.
Load Image dtbo_b total time: 80 ms
avb_slot_verify.c:233: ERROR: dtbo_b: Hash of data does not match digest in descriptor.
[ 3203] C - vbmeta_b image cached.
State: Unlocked, AvbSlotVerify returned ERROR_VERIFICATION, continue boot
VB2: Authenticate complete! boot state is: orange
VB2: boot state: orange(1)
OS FingerPrint: 0xC2224571
Primary display resolution: 720 x 1600
[ 3236] Using orange1
Display dim timer starts
Primary display resolution: 720 x 1600
[ 5137] Using orange2
Decompressing kernel image total time: 303 ms
Dtbo hdr magic mismatch 0, with D7B7AB1E
DTB offset is incorrect, kernel image does not have appended DTB
[ 5730] I - disabling console
[ 5731] Unable to fetch channel ID from devtree[ 5731] I - SKU: XT2073-2
prov read arb fail efi: 0 tz: 1
[ 5737] I - Cmdline: androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=251d0ad7-97fe-4260-5aaf-f73c9029a726 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=4096 androidboot.vbmeta.digest=2901425dc474bb5c971b596901714a81c6992a65db628b891233ae6b8f311d0f androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=7c4000.sdhci androidboot.fstab_suffix=emmc androidboot.boot_devices=soc/7c4000.sdhci androidboot.serialno=ZE222CFSSV androidboot.device=astro androidboot.revision=pvt androidboot.hwrev=0xC000 androidboot.radio=BRLA androidboot.powerup_reason=0x00000080 androidboot.bootreason=power_key_press msm_poweroff.download_mode=0 wifimacaddr=CC:0D:F2:EC:FC:1C,CC:0D:F2:EF:46:0C androidboot.btmacaddr=CC:0D:F2:F1:8F:FC androidboot.bootloader=MBM-3.0-astro_retail-d88b69237fd-220519 androidboot.carrier= androidboot.hardware.sku=XT2073-2 androidboot.mode=normal androidboot.baseband=msm msm_drm.dsi_display0=dsi_djn_nt36525b_video_display:config0 androidboot.slot_suffix=_b rootwait ro init=/init storage_mfrid=0x15 androidboot.dualsim=false androidboot.secure_hardware=1 androidboot.cid=0x0032 androidboot.write_protect=0 androidboot.bl_state=2 androidboot.ssm_data=00000000000F2220
WARNING: Unsupported EFI_RAMPARTITION_PROTOCOL
ERROR: Could not get splash memory region node
Src buffer: Out of resources
[ 5743] C - Powerup reason for kernel: 0x00000080
[ 5747] I - Set "mmi,panel_name" to djn_nt36525b_video_display
[ 5747] I - Set "mmi,panel_id" to 0xff00009225010d
[ 5747] I - Set "mmi,panel_ver" to 0x710000
[ 5748] I - Set "mmi,auto_detect_state" to 0x2
[ 5756] set device tree property [mmi,nfc] to [false]
[ 5756] set device tree property [mmi,imager] to [12MP]
[ 5756] set device tree property [mmi,fps] to [true]
[ 5757] set device tree property [mmi,ecompass] to [true]
Update Device Tree total time: 20 ms
Shutting Down UEFI Boot Services: 5789 ms
Error: fail to get DSI pll codes
Saving log file Log82.txt
App Log Flush : 177 ms
Exit BS [ 5983] UEFI End
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x517f803c]
[ 0.000000] Linux version 6.19.10-sdm670 (pmos@esteuwu-laptop) (Alpine clang version 22.1.3, LLD 22.1.3) #1-postmarketos-qcom-sdm670 SMP PREEMPT Fri Apr 17 22:29:10 UTC
[ 0.000000] KASLR enabled
[ 0.000000] random: crng init done
[ 0.000000] Machine model: Motorola motorola one fusion
[ 0.000000] efi: UEFI not found.
[ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader!
[ 0.000000] OF: reserved mem: 0x0000000085700000..0x0000000085cfffff (6144 KiB) nomap non-reusable hyp-mem@85700000
[ 0.000000] OF: reserved mem: 0x0000000085e00000..0x0000000085efffff (1024 KiB) nomap non-reusable xbl-mem@85e00000
[ 0.000000] OF: reserved mem: 0x0000000085fc0000..0x0000000085fdffff (128 KiB) nomap non-reusable aop-mem@85fc0000
[ 0.000000] OF: reserved mem: 0x0000000085fe0000..0x0000000085ffffff (128 KiB) nomap non-reusable aop-cmd-db-mem@85fe0000
[ 0.000000] OF: reserved mem: 0x0000000086000000..0x00000000861fffff (2048 KiB) nomap non-reusable smem@86000000
[ 0.000000] OF: reserved mem: 0x0000000086200000..0x0000000088efffff (46080 KiB) nomap non-reusable tz@86200000
[ 0.000000] OF: reserved mem: 0x0000000088f00000..0x00000000890fffff (2048 KiB) nomap non-reusable rmtfs@88f00000
[ 0.000000] OF: reserved mem: 0x000000008ab00000..0x000000008affffff (5120 KiB) nomap non-reusable camera-mem@8ab00000
[ 0.000000] OF: reserved mem: 0x000000008b000000..0x0000000092dfffff (129024 KiB) nomap non-reusable mpss@8b000000
[ 0.000000] OF: reserved mem: 0x0000000092e00000..0x00000000932fffff (5120 KiB) nomap non-reusable venus@92e00000
[ 0.000000] OF: reserved mem: 0x0000000093300000..0x00000000933fffff (1024 KiB) nomap non-reusable wlan-msa@93300000
[ 0.000000] OF: reserved mem: 0x0000000093400000..0x0000000093bfffff (8192 KiB) nomap non-reusable cdsp@93400000
[ 0.000000] OF: reserved mem: 0x0000000093c00000..0x0000000093dfffff (2048 KiB) nomap non-reusable mba@93c00000
[ 0.000000] OF: reserved mem: 0x0000000093e00000..0x0000000095bfffff (30720 KiB) nomap non-reusable adsp@93e00000
[ 0.000000] OF: reserved mem: 0x0000000095c00000..0x0000000095c0ffff (64 KiB) nomap non-reusable ipa-fw@95c00000
[ 0.000000] OF: reserved mem: 0x0000000095c10000..0x0000000095c14fff (20 KiB) nomap non-reusable ipa-gsi@95c10000
[ 0.000000] OF: reserved mem: 0x0000000095c15000..0x0000000095c16fff (8 KiB) nomap non-reusable gpu@95c15000
[ 0.000000] OF: reserved mem: 0x0000000097b00000..0x0000000097bfffff (1024 KiB) nomap non-reusable spss@97b00000
[ 0.000000] OF: reserved mem: 0x000000009e400000..0x000000009f7fffff (20480 KiB) nomap non-reusable qseecom@9e400000
[ 0.000000] OF: reserved mem: 0x000000009c000000..0x000000009c464fff (4500 KiB) nomap non-reusable memory@9c000000
[ 0.000000] OF: reserved mem: 0x00000000af000000..0x00000000af0bffff (768 KiB) map non-reusable ramoops@af000000
[ 0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x000000017e2bffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x17dad8e80-0x17dadbc7f]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal [mem 0x0000000100000000-0x000000017e2bffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000080000000-0x00000000856fffff]
[ 0.000000] node 0: [mem 0x0000000085700000-0x0000000085cfffff]
[ 0.000000] node 0: [mem 0x0000000085d00000-0x0000000085dfffff]
[ 0.000000] node 0: [mem 0x0000000085e00000-0x0000000085efffff]
[ 0.000000] node 0: [mem 0x0000000085f00000-0x0000000085fbffff]
[ 0.000000] node 0: [mem 0x0000000085fc0000-0x00000000890fffff]
[ 0.000000] node 0: [mem 0x0000000089100000-0x000000008aafffff]
[ 0.000000] node 0: [mem 0x000000008ab00000-0x0000000095c16fff]
[ 0.000000] node 0: [mem 0x0000000095c17000-0x0000000097afffff]
[ 0.000000] node 0: [mem 0x0000000097b00000-0x0000000097bfffff]
[ 0.000000] node 0: [mem 0x0000000097c00000-0x000000009bffffff]
[ 0.000000] node 0: [mem 0x000000009c000000-0x000000009c464fff]
[ 0.000000] node 0: [mem 0x000000009c465000-0x000000009e3fffff]
[ 0.000000] node 0: [mem 0x000000009e400000-0x000000009f7fffff]
[ 0.000000] node 0: [mem 0x000000009f800000-0x000000017e2bffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x000000017e2bffff]
[ 0.000000] On node 0, zone Normal: 7488 pages in unavailable ranges
[ 0.000000] cma: Reserved 256 MiB at 0x00000000f0000000
[ 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] psci: [Firmware Bug]: failed to set PC mode: -3
[ 0.000000] percpu: Embedded 34 pages/cpu s100120 r8192 d30952 u139264
[ 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] alternatives: applying boot alternatives
[ 0.000000] Kernel command line: androidboot.verifiedbootstate=orange androidboot.keymaster=1 androidboot.vbmeta.device=PARTUUID=251d0ad7-97fe-4260-5aaf-f73c9029a726 androidboot.vbmeta.avb_version=1.0 androidboot.vbmeta.device_state=unlocked androidboot.vbmeta.hash_alg=sha256 androidboot.vbmeta.size=4096 androidboot.vbmeta.digest=2901425dc474bb5c971b596901714a81c6992a65db628b891233ae6b8f311d0f androidboot.vbmeta.invalidate_on_error=yes androidboot.veritymode=enforcing androidboot.bootdevice=7c4000.sdhci androidboot.fstab_suffix=emmc androidboot.boot_devices=soc/7c4000.sdhci androidboot.serialno=ZE222CFSSV androidboot.device=astro androidboot.revision=pvt androidboot.hwrev=0xC000 androidboot.radio=BRLA androidboot.powerup_reason=0x00000080 androidboot.bootreason=power_key_press msm_poweroff.download_mode=0 wifimacaddr=CC:0D:F2:EC:FC:1C,CC:0D:F2:EF:46:0C androidboot.btmacaddr=CC:0D:F2:F1:8F:FC androidboot.bootloader=MBM-3.0-astro_retail-d88b69237fd-220519 androidboot.carrier= androidboot.hardware.sku=XT2073-2 \
[ 0.000000] Kernel command line: androidboot.mode=normal androidboot.baseband=msm msm_drm.dsi_display0=dsi_djn_nt36525b_video_display:config0 androidboot.slot_suffix=_b rootwait ro init=/init storage_mfrid=0x15 androidboot.dualsim=false androidboot.secure_hardware=1 androidboot.cid=0x0032 androidboot.write_protect=0 androidboot.bl_state=2 androidboot.ssm_data=00000000000F2220
[ 0.000000] Unknown kernel command line parameters "wifimacaddr=CC:0D:F2:EC:FC:1C,CC:0D:F2:EF:46:0C storage_mfrid=0x15", 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: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] software IO TLB: area num 8.
[ 0.000000] software IO TLB: mapped [mem 0x00000000ec000000-0x00000000f0000000] (64MB)
[ 0.000000] Fallback order for Node 0: 0
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1041088
[ 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 56760 entries in 224 pages
[ 0.000000] ftrace: allocated 224 pages with 3 groups
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU event tracing is enabled.
[ 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 100 jiffies.
[ 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] RCU Tasks Trace: 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: 768 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=0, SCR_EL3.FIQ=1
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000017a60000
[ 0.000000] ITS: No ITS available, not enabling LPIs
[ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.000000] arch_timer: cp15 timer running at 19.20MHz (virt).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
[ 0.000001] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
[ 0.000579] Console: colour dummy device 80x25
[ 0.000595] printk: legacy console [tty0] enabled
[ 0.001747] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=19200)
[ 0.001778] pid_max: default: 32768 minimum: 301
[ 0.002386] LSM support for eBPF active
[ 0.002497] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.002524] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.005347] rcu: Hierarchical SRCU implementation.
[ 0.005376] rcu: Max phase no-delay instances is 400.
[ 0.005611] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.007120] EFI services will not be available.
[ 0.007492] smp: Bringing up secondary CPUs ...
[ 0.009465] Detected VIPT I-cache on CPU1
[ 0.009682] GICv3: CPU1: found redistributor 100 region 0:0x0000000017a80000
[ 0.009774] CPU1: Booted secondary processor 0x0000000100 [0x517f803c]
[ 0.011659] Detected VIPT I-cache on CPU2
[ 0.011833] GICv3: CPU2: found redistributor 200 region 0:0x0000000017aa0000
[ 0.011900] CPU2: Booted secondary processor 0x0000000200 [0x517f803c]
[ 0.013807] Detected VIPT I-cache on CPU3
[ 0.013959] GICv3: CPU3: found redistributor 300 region 0:0x0000000017ac0000
[ 0.014014] CPU3: Booted secondary processor 0x0000000300 [0x517f803c]
[ 0.016052] Detected VIPT I-cache on CPU4
[ 0.016203] GICv3: CPU4: found redistributor 400 region 0:0x0000000017ae0000
[ 0.016257] CPU4: Booted secondary processor 0x0000000400 [0x517f803c]
[ 0.018466] Detected VIPT I-cache on CPU5
[ 0.018621] GICv3: CPU5: found redistributor 500 region 0:0x0000000017b00000
[ 0.018676] CPU5: Booted secondary processor 0x0000000500 [0x517f803c]
[ 0.021697] CPU features: detected: Spectre-v2
[ 0.021721] CPU features: detected: Spectre-v4
[ 0.021734] CPU features: detected: Spectre-BHB
[ 0.021757] Detected VIPT I-cache on CPU6
[ 0.022176] GICv3: CPU6: found redistributor 600 region 0:0x0000000017b20000
[ 0.022259] CPU6: Booted secondary processor 0x0000000600 [0x516f802d]
[ 0.025086] Detected VIPT I-cache on CPU7
[ 0.025518] GICv3: CPU7: found redistributor 700 region 0:0x0000000017b40000
[ 0.025601] CPU7: Booted secondary processor 0x0000000700 [0x516f802d]
[ 0.025804] smp: Brought up 1 node, 8 CPUs
[ 0.026003] SMP: Total of 8 processors activated.
[ 0.026014] CPU: All CPU(s) started at EL1
[ 0.026041] CPU features: detected: 32-bit EL0 Support
[ 0.026051] CPU features: detected: 32-bit EL1 Support
[ 0.026063] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[ 0.026079] CPU features: detected: Common not Private translations
[ 0.026090] CPU features: detected: CRC32 instructions
[ 0.026106] CPU features: detected: RCpc load-acquire (LDAPR)
[ 0.026120] CPU features: detected: LSE atomic instructions
[ 0.026131] CPU features: detected: Privileged Access Never
[ 0.026142] CPU features: detected: PMUv3
[ 0.026152] CPU features: detected: RAS Extension Support
[ 0.026165] CPU features: detected: XNX
[ 0.026287] alternatives: applying system-wide alternatives
[ 0.034138] CPU features: detected: Hardware dirty bit management on CPU0-7
[ 0.034652] Memory: 3438144K/4164352K available (19392K kernel code, 3446K rwdata, 7664K rodata, 1792K init, 457K bss, 457200K reserved, 262144K cma-reserved)
[ 0.037228] devtmpfs: initialized
[ 0.062924] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.063033] posixtimers hash table entries: 4096 (order: 4, 65536 bytes, linear)
[ 0.063171] futex hash table entries: 2048 (131072 bytes on 1 NUMA nodes, total 128 KiB, linear).
[ 0.066807] 2G module region forced by RANDOMIZE_MODULE_REGION_FULL
[ 0.066863] 0 pages in range for non-PLT usage
[ 0.066873] 516048 pages in range for PLT usage
[ 0.068692] DMI not present or invalid.
[ 0.072911] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.075109] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 0.075388] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.075494] audit: initializing netlink subsys (disabled)
[ 0.075780] audit: type=2000 audit(0.067:1): state=initialized audit_enabled=0 res=1
[ 0.079001] thermal_sys: Registered thermal governor 'step_wise'
[ 0.079017] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.079170] cpuidle: using governor menu
[ 0.080067] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.080462] ASID allocator initialised with 32768 entries
[ 0.081030] Serial: AMBA PL011 UART driver
[ 0.083570] pstore: Using crash dump compression: deflate
[ 0.083614] printk: legacy console [ramoops-1] enabled
[ 0.085229] pstore: Registered ramoops as persistent store backend
[ 0.085270] ramoops: using 0xc0000@0xaf000000, ecc: 0
[ 0.090312] CPUidle PSCI: Initialized CPU PM domain topology using OSI mode
[ 0.109299] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 0.109497] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[ 0.109640] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/display-controller@ae01000
[ 0.109923] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 0.110052] /soc@0/display-subsystem@ae00000/phy@ae94400: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[ 0.110158] /soc@0/clock-controller@af00000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/phy@ae94400
[ 0.110509] /soc@0/interrupt-controller@17a00000: Fixed dependency cycle(s) with /soc@0/interrupt-controller@17a00000
[ 0.127173] /soc@0/display-subsystem@ae00000: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[ 0.127383] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 0.127690] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[ 0.127845] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/display-controller@ae01000
[ 0.128261] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 0.128473] /soc@0/display-subsystem@ae00000/phy@ae94400: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[ 0.128881] /soc@0/display-subsystem@ae00000/phy@ae94400: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[ 0.129119] /soc@0/display-subsystem@ae00000: Fixed dependency cycle(s) with /soc@0/clock-controller@af00000
[ 0.129200] /soc@0/clock-controller@af00000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/phy@ae94400
[ 0.146514] /soc@0/rsc@179c0000/regulators-0: Fixed dependency cycle(s) with /soc@0/rsc@179c0000/regulators-0/smps4
[ 0.146645] /soc@0/rsc@179c0000/regulators-0: Fixed dependency cycle(s) with /soc@0/rsc@179c0000/regulators-0/smps6
[ 0.147171] /soc@0/rsc@179c0000/regulators-1: Fixed dependency cycle(s) with /soc@0/rsc@179c0000/regulators-1/bob
[ 0.155680] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.155753] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.155798] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.155835] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[ 0.155877] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.155911] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.155950] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[ 0.155985] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[ 0.176035] raid6: neonx8 gen() 1198 MB/s
[ 0.193172] raid6: neonx4 gen() 1202 MB/s
[ 0.210313] raid6: neonx2 gen() 921 MB/s
[ 0.227410] raid6: neonx1 gen() 758 MB/s
[ 0.244516] raid6: int64x8 gen() 442 MB/s
[ 0.261618] raid6: int64x4 gen() 498 MB/s
[ 0.278723] raid6: int64x2 gen() 448 MB/s
[ 0.295849] raid6: int64x1 gen() 385 MB/s
[ 0.295882] raid6: using algorithm neonx4 gen() 1202 MB/s
[ 0.312890] raid6: .... xor() 857 MB/s, rmw enabled
[ 0.312926] raid6: using neon recovery algorithm
[ 0.315703] iommu: Default domain type: Translated
[ 0.315754] iommu: DMA domain TLB invalidation policy: strict mode
[ 0.317038] SCSI subsystem initialized
[ 0.317445] usbcore: registered new interface driver usbfs
[ 0.317556] usbcore: registered new interface driver hub
[ 0.317647] usbcore: registered new device driver usb
[ 0.318050] pps_core: LinuxPPS API ver. 1 registered
[ 0.318089] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.318150] PTP clock support registered
[ 0.318239] EDAC MC: Ver: 3.0.0
[ 0.318750] scmi_core: SCMI protocol bus registered
[ 0.319009] qcom_scm firmware:scm: SHM Bridge not supported
[ 0.319108] qcom_scm: convention: smc arm 64
[ 0.319511] qcom_scm firmware:scm: qseecom: found qseecom with version 0x1400000
[ 0.319604] qcom_scm firmware:scm: qseecom: untested machine, skipping
[ 0.323208] clocksource: Switched to clocksource arch_sys_counter
[ 3.067251] VFS: Disk quotas dquot_6.6.0
[ 3.067356] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 3.079578] NET: Registered PF_INET protocol family
[ 3.079944] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 3.088181] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 3.088439] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 3.088508] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 3.089014] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 3.091087] TCP: Hash tables configured (established 32768 bind 32768)
[ 3.091359] UDP hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 3.091802] UDP-Lite hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 3.092516] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 3.093361] RPC: Registered named UNIX socket transport module.
[ 3.093416] RPC: Registered udp transport module.
[ 3.093449] RPC: Registered tcp transport module.
[ 3.093481] RPC: Registered tcp-with-tls transport module.
[ 3.093515] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 3.093893] Trying to unpack rootfs image as initramfs...
[ 3.094714] kvm [1]: HYP mode not available
[ 3.097023] Initialise system trusted keyrings
[ 3.097376] workingset: timestamp_bits=42 max_order=20 bucket_order=0
[ 3.098099] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 3.098653] NFS: Registering the id_resolver key type
[ 3.098722] Key type id_resolver registered
[ 3.098759] Key type id_legacy registered
[ 3.098822] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 3.098873] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[ 3.100267] Key type cifs.idmap registered
[ 3.208683] NET: Registered PF_ALG protocol family
[ 3.208772] xor: measuring software checksum speed
[ 3.211519] 8regs : 1210 MB/sec
[ 3.213972] 32regs : 1360 MB/sec
[ 3.216775] arm64_neon : 1185 MB/sec
[ 3.216810] xor: using function: 32regs (1360 MB/sec)
[ 3.216850] async_tx: api initialized (async)
[ 3.216886] Key type asymmetric registered
[ 3.216920] Asymmetric key parser 'x509' registered
[ 3.216959] Asymmetric key parser 'pkcs8' registered
[ 3.217120] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 241)
[ 3.217501] io scheduler mq-deadline registered
[ 3.217551] io scheduler kyber registered
[ 3.217650] io scheduler bfq registered
[ 3.228759] ledtrig-cpu: registered to indicate activity on CPUs
[ 3.229580] simple-framebuffer 9c000000.framebuffer: framebuffer at 0x9c000000, 0x465000 bytes
[ 3.229643] simple-framebuffer 9c000000.framebuffer: format=a8r8g8b8, mode=720x1600x32, linelength=2880
[ 3.236059] Console: switching to colour frame buffer device 90x100
[ 3.242845] simple-framebuffer 9c000000.framebuffer: fb0: simplefb registered!
[ 3.265216] ldo1: Setting 880000-900000uV
[ 3.265657] ldo2: Setting 1800000-2960000uV
[ 3.265874] ldo3: Setting 2800000-3008000uV
[ 3.266088] ldo4: Setting 2960000-2960000uV
[ 3.266314] ldo5: Setting 2960000-2960000uV
[ 3.266663] ldo6: Setting 3008000-3300000uV
[ 3.266893] ldo7: Setting 3088000-3100000uV
[ 3.267111] ldo8: Setting 3300000-3312000uV
[ 3.267369] bob: Setting 3296000-3328000uV
[ 3.271628] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 3.275594] msm_serial: driver initialized
[ 3.283058] arm-smmu 15000000.iommu: probing hardware configuration...
[ 3.283177] arm-smmu 15000000.iommu: SMMUv2 with:
[ 3.283313] arm-smmu 15000000.iommu: stage 1 translation
[ 3.283406] arm-smmu 15000000.iommu: coherent table walk
[ 3.283488] arm-smmu 15000000.iommu: stream matching with 71 register groups
[ 3.283612] arm-smmu 15000000.iommu: 47 context banks (0 stage-2 only)
[ 3.284699] arm-smmu 15000000.iommu: Supported page sizes: 0x61311000
[ 3.284803] arm-smmu 15000000.iommu: Stage-1: 48-bit VA -> 48-bit IPA
[ 3.285030] arm-smmu 15000000.iommu: preserved 0 boot mappings
[ 3.288563] platform 7c4000.mmc: Adding to iommu group 0
[ 3.288985] platform 800000.dma-controller: Adding to iommu group 1
[ 3.289460] platform 8c0000.geniqup: Adding to iommu group 2
[ 3.289874] platform a00000.dma-controller: Adding to iommu group 3
[ 3.290349] platform ac0000.geniqup: Adding to iommu group 4
[ 3.291028] platform 1e40000.ipa: Adding to iommu group 5
[ 3.291982] platform aa00000.video-codec: Adding to iommu group 6
[ 3.292469] platform ae00000.display-subsystem: Adding to iommu group 7
[ 3.293317] platform 18800000.wifi: Adding to iommu group 8
[ 3.293791] platform 8804000.mmc: Adding to iommu group 9
[ 3.318121] brd: module loaded
[ 3.328045] loop: module loaded
[ 3.330405] spmi_pmic_arb c440000.spmi: PMIC arbiter version v5 (0x50000000)
[ 3.352894] tun: Universal TUN/TAP device driver, 1.6
[ 3.353633] VFIO - User Level meta-driver version: 0.3
[ 3.355990] usbcore: registered new interface driver usb-storage
[ 3.358104] i2c_dev: i2c /dev entries driver
[ 3.361615] input: pm8941_pwrkey as /devices/platform/soc@0/c440000.spmi/spmi-0/0-00/c440000.spmi:pmic@0:pon@800/c440000.spmi:pmic@0:pon@800:pwrkey/input/input0
[ 3.364085] input: pm8941_resin as /devices/platform/soc@0/c440000.spmi/spmi-0/0-00/c440000.spmi:pmic@0:pon@800/c440000.spmi:pmic@0:pon@800:resin/input/input1
[ 3.393678] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
[ 3.397626] sdhci: Secure Digital Host Controller Interface driver
[ 3.397736] sdhci: Copyright(c) Pierre Ossman
[ 3.397842] Synopsys Designware Multimedia Card Interface Driver
[ 3.398166] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.400653] hid: raw HID events driver (C) Jiri Kosina
[ 3.422888] NET: Registered PF_PACKET protocol family
[ 3.423098] Key type dns_resolver registered
[ 3.443718] registered taskstats version 1
[ 3.444590] Loading compiled-in X.509 certificates
[ 3.464964] Demotion targets for Node 0: null
[ 3.465154] Key type .fscrypt registered
[ 3.465253] Key type fscrypt-provisioning registered
[ 3.467467] Btrfs loaded, zoned=no, fsverity=no
[ 3.497924] smps4: Setting 1808000-2040000uV
[ 3.498290] smps6: Setting 1224000-1352000uV
[ 3.498427] arm-smmu 5040000.iommu: probing hardware configuration...
[ 3.498472] arm-smmu 5040000.iommu: SMMUv2 with:
[ 3.498521] ldo1: Setting 1200000-1250000uV
[ 3.498524] arm-smmu 5040000.iommu: stage 1 translation
[ 3.498529] arm-smmu 5040000.iommu: address translation ops
[ 3.498606] arm-smmu 5040000.iommu: non-coherent table walk
[ 3.498636] arm-smmu 5040000.iommu: (IDR0.CTTW overridden by FW configuration)
[ 3.498674] arm-smmu 5040000.iommu: stream matching with 5 register groups
[ 3.498727] arm-smmu 5040000.iommu: 5 context banks (0 stage-2 only)
[ 3.498727] ldo2: Setting 1000000-1000000uV
[ 3.498798] arm-smmu 5040000.iommu: Supported page sizes: 0x61311000
[ 3.499007] ldo3: Setting 1000000-1000000uV
[ 3.499941] arm-smmu 5040000.iommu: Stage-1: 48-bit VA -> 36-bit IPA
[ 3.501265] ldo5: Setting 800000-800000uV
[ 3.502292] arm-smmu 5040000.iommu: preserved 0 boot mappings
[ 3.503511] ldo6: Setting 1248000-1304000uV
[ 3.505235] platform 5000000.gpu: Adding to iommu group 10
[ 3.505809] ldo7: Setting 1200000-1200000uV
[ 3.506910] platform 506a000.gmu: Adding to iommu group 11
[ 3.508081] ldo8: Setting 1800000-1800000uV
[ 3.510417] ldo9: Setting 1800000-1800000uV
[ 3.511315] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 3.511759] ldo10: Setting 1800000-1800000uV
[ 3.515337] ldo11: Setting 1800000-1800000uV
[ 3.515543] /soc@0/display-subsystem@ae00000/display-controller@ae01000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 3.516726] ldo12: Setting 1800000-1800000uV
[ 3.518877] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[ 3.520205] ldo13: Setting 1800000-1800000uV
[ 3.522350] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/display-controller@ae01000
[ 3.523723] ldo14: Setting 1800000-1800000uV
[ 3.526142] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 3.527262] ldo15: Setting 1800000-2950000uV
[ 3.531085] ldo16: Setting 2696000-2696000uV
[ 3.532517] ldo17: Setting 1800000-2950000uV
[ 3.533978] ldo19: Setting 3000000-3312000uV
[ 3.539887] msm_dsi_phy ae94400.phy: [drm:dsi_pll_10nm_vco_prepare] *ERROR* DSI PLL(0) lock failed, status=0x00000000
[ 3.542318] msm_dsi_phy ae94400.phy: [drm:dsi_pll_10nm_vco_prepare] *ERROR* PLL(0) lock failed
[ 3.544789] ------------[ cut here ]------------
[ 3.546032] dsi0_phy_pll_out_dsiclk already disabled
[ 3.547319] WARNING: drivers/clk/clk.c:1188 at clk_core_disable+0xb8/0x200, CPU#1: kworker/u32:1/61
[ 3.549805] Modules linked in:
[ 3.551056] CPU: 1 UID: 0 PID: 61 Comm: kworker/u32:1 Not tainted 6.19.10-sdm670 #1-postmarketos-qcom-sdm670 PREEMPT
[ 3.553581] Hardware name: Motorola motorola one fusion (DT)
[ 3.554859] Workqueue: events_unbound deferred_probe_work_func
[ 3.556148] pstate: 604000c5 (nZCv daIF +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[ 3.557440] pc : clk_core_disable+0xb8/0x200
[ 3.558731] lr : clk_core_disable+0xb8/0x200
[ 3.560015] sp : ffff8000806ab590
[ 3.561288] x29: ffff8000806ab5a0 x28: ffff0000809c6000 x27: 000000007fffffff
[ 3.562588] x26: ffff000080860040 x25: 0000000000000000 x24: ffff0000fdb2c830
[ 3.563884] x23: ffff0000809c6000 x22: ffffc53f07a8c000 x21: ffffc53f07a8c000
[ 3.565179] x20: ffff000081524400 x19: 0000000000000000 x18: ffff800080355118
[ 3.566474] x17: 00000000fed73151 x16: 00000000fed73151 x15: 0000000000000003
[ 3.567773] x14: ffffc53f07717250 x13: 0000000000000003 x12: 0000000000000003
[ 3.569070] x11: 00000000ffffefff x10: c0000000ffffefff x9 : dcd1179975c33200
[ 3.570373] x8 : dcd1179975c33200 x7 : 205d323330363435 x6 : 352e33202020205b
[ 3.571674] x5 : ffffc53f07a5beb8 x4 : ffff8000806ab177 x3 : 0000000000000000
[ 3.572983] x2 : 0000000000000000 x1 : ffff8000806ab360 x0 : 0000000000000028
[ 3.574289] Call trace:
[ 3.575582] clk_core_disable+0xb8/0x200 (P)
[ 3.576879] clk_core_disable_lock+0x94/0x120
[ 3.578169] __clk_set_parent_after+0x5c/0x8c
[ 3.579453] clk_core_reparent_orphans_nolock+0xa8/0xf0
[ 3.580738] clk_core_reparent_orphans+0x78/0xfc
[ 3.582012] of_clk_add_hw_provider+0x9c/0x1a0
[ 3.583278] devm_of_clk_add_hw_provider+0xc0/0x10c
[ 3.584535] dsi_phy_driver_probe+0x334/0x364
[ 3.585785] platform_probe+0x84/0xcc
[ 3.587023] really_probe+0x1dc/0x4f4
[ 3.588246] __driver_probe_device+0xb4/0x12c
[ 3.589460] driver_probe_device+0x4c/0x238
[ 3.590665] __device_attach_driver+0x154/0x224
[ 3.591865] bus_for_each_drv+0x11c/0x17c
[ 3.593065] __device_attach+0x10c/0x1d4
[ 3.594254] device_initial_probe+0x48/0x6c
[ 3.595440] bus_probe_device+0x9c/0x128
[ 3.596628] device_add+0x24c/0x494
[ 3.597809] of_platform_device_create_pdata+0xdc/0x198
[ 3.598998] of_platform_bus_create+0x274/0x4b8
[ 3.600183] of_platform_populate+0x7c/0x168
[ 3.601364] mdss_probe+0x320/0x408
[ 3.602543] platform_probe+0x84/0xcc
[ 3.603718] really_probe+0x1dc/0x4f4
[ 3.604888] __driver_probe_device+0xb4/0x12c
[ 3.606058] driver_probe_device+0x4c/0x238
[ 3.607233] __device_attach_driver+0x154/0x224
[ 3.608405] bus_for_each_drv+0x11c/0x17c
[ 3.609578] __device_attach+0x10c/0x1d4
[ 3.610747] device_initial_probe+0x48/0x6c
[ 3.611916] bus_probe_device+0x9c/0x128
[ 3.613088] deferred_probe_work_func+0xb0/0x11c
[ 3.614263] process_scheduled_works+0x19c/0x418
[ 3.615441] worker_thread+0x280/0x3fc
[ 3.616614] kthread+0x15c/0x264
[ 3.617782] ret_from_fork+0x10/0x20
[ 3.618950] ---[ end trace 0000000000000000 ]---
[ 3.620150] ------------[ cut here ]------------
[ 3.621328] dsi0_phy_pll_out_dsiclk already unprepared
[ 3.622645] WARNING: drivers/clk/clk.c:1048 at clk_core_unprepare+0xe8/0x230, CPU#6: kworker/u32:1/61
[ 3.629297] Modules linked in:
[ 3.632598] CPU: 6 UID: 0 PID: 61 Comm: kworker/u32:1 Tainted: G W 6.19.10-sdm670 #1-postmarketos-qcom-sdm670 PREEMPT
[ 3.639260] Tainted: [W]=WARN
[ 3.642584] Hardware name: Motorola motorola one fusion (DT)
[ 3.645921] Workqueue: events_unbound deferred_probe_work_func
[ 3.649300] pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[ 3.652663] pc : clk_core_unprepare+0xe8/0x230
[ 3.656002] lr : clk_core_unprepare+0xe8/0x230
[ 3.659310] sp : ffff8000806ab5a0
[ 3.662624] x29: ffff8000806ab5a0 x28: ffff0000809c6000 x27: 000000007fffffff
[ 3.665984] x26: ffff000080860040 x25: 0000000000000000 x24: ffff0000fdb2c830
[ 3.669312] x23: ffff0000fdb306d8 x22: ffff0000809c6000 x21: ffffc53f07a8c000
[ 3.672640] x20: ffffc53f07a8c000 x19: ffff000081524400 x18: ffff800080355118
[ 3.675946] x17: 00000000c006287d x16: 00000000c006287d x15: 0000000000000100
[ 3.679239] x14: ffffc53f076dda88 x13: 00000000000121eb x12: 0000000000000038
[ 3.682541] x11: 00000000000000c0 x10: 0000000000000b40 x9 : dcd1179975c33200
[ 3.685816] x8 : dcd1179975c33200 x7 : 000000000000afc8 x6 : ffffffffffffffff
[ 3.689063] x5 : 0000000000000001 x4 : 00000000d7eb9939 x3 : 0000000000000010
[ 3.692312] x2 : 0000000000000000 x1 : ffff0000809c6000 x0 : ffff0000f99d2c00
[ 3.695539] Call trace:
[ 3.698697] clk_core_unprepare+0xe8/0x230 (P)
[ 3.701898] clk_core_unprepare_lock+0x80/0x104
[ 3.705110] __clk_set_parent_after+0x64/0x8c
[ 3.708306] clk_core_reparent_orphans_nolock+0xa8/0xf0
[ 3.711532] clk_core_reparent_orphans+0x78/0xfc
[ 3.714715] of_clk_add_hw_provider+0x9c/0x1a0
[ 3.717865] devm_of_clk_add_hw_provider+0xc0/0x10c
[ 3.720990] dsi_phy_driver_probe+0x334/0x364
[ 3.724095] platform_probe+0x84/0xcc
[ 3.727172] really_probe+0x1dc/0x4f4
[ 3.730238] __driver_probe_device+0xb4/0x12c
[ 3.733287] driver_probe_device+0x4c/0x238
[ 3.736299] __device_attach_driver+0x154/0x224
[ 3.739315] bus_for_each_drv+0x11c/0x17c
[ 3.742311] __device_attach+0x10c/0x1d4
[ 3.745277] device_initial_probe+0x48/0x6c
[ 3.748215] bus_probe_device+0x9c/0x128
[ 3.751156] device_add+0x24c/0x494
[ 3.754059] of_platform_device_create_pdata+0xdc/0x198
[ 3.756962] of_platform_bus_create+0x274/0x4b8
[ 3.759876] of_platform_populate+0x7c/0x168
[ 3.762796] mdss_probe+0x320/0x408
[ 3.765687] platform_probe+0x84/0xcc
[ 3.768560] really_probe+0x1dc/0x4f4
[ 3.771418] __driver_probe_device+0xb4/0x12c
[ 3.774276] driver_probe_device+0x4c/0x238
[ 3.777114] __device_attach_driver+0x154/0x224
[ 3.779980] bus_for_each_drv+0x11c/0x17c
[ 3.782816] __device_attach+0x10c/0x1d4
[ 3.785629] device_initial_probe+0x48/0x6c
[ 3.788408] bus_probe_device+0x9c/0x128
[ 3.791195] deferred_probe_work_func+0xb0/0x11c
[ 3.793959] process_scheduled_works+0x19c/0x418
[ 3.796751] worker_thread+0x280/0x3fc
[ 3.799518] kthread+0x15c/0x264
[ 3.802276] ret_from_fork+0x10/0x20
[ 3.805040] ---[ end trace 0000000000000000 ]---
[ 3.811258] spmi spmi-0: cleanup_irq apid=194 sid=0x3 per=0xd8 irq=1
[ 3.812278] irq 84, desc: 000000009030f107, depth: 0, count: 0, unhandled: 0
[ 3.813266] ->handle_irq(): 00000000e13e5c78, pmic_arb_chained_irq+0x0/0x394
[ 3.814269] ->irq_data.chip(): 00000000fa230806, gic_chip+0x0/0x110
[ 3.815270] ->action(): 00000000b8ceda06
[ 3.816262] ->action->handler(): 000000004402e780, bad_chained_irq+0x0/0x64
[ 3.817279] IRQ_LEVEL set
[ 3.818278] IRQ_NOPROBE set
[ 3.818789] platform a600000.usb: Adding to iommu group 12
[ 3.819269] IRQ_NOREQUEST set
[ 3.819273] IRQ_NOTHREAD set
[ 3.838755] sdhci_msm 8804000.mmc: Got CD GPIO
[ 3.843133] cpu cpu0: EM: created perf domain
[ 3.856884] cpu cpu6: EM: created perf domain
[ 3.870723] 898000.serial: ttyHS1 at MMIO 0x898000 (irq = 120, base_baud = 0) is a MSM
[ 3.872886] serial serial0: tty port ttyHS1 registered
[ 3.878893] a90000.serial: ttyMSM0 at MMIO 0xa90000 (irq = 122, base_baud = 0) is a MSM
[ 3.880685] printk: legacy console [ttyMSM0] enabled
[ 3.909313] Freeing initrd memory: 11184K
[ 3.917170] /soc@0/display-subsystem@ae00000/dsi@ae94000: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0
[ 7.151788] /soc@0/display-subsystem@ae00000/dsi@ae94000/panel@0: Fixed dependency cycle(s) with /soc@0/display-subsystem@ae00000/dsi@ae94000
[ 7.166127] msm_dpu ae01000.display-controller: bound ae94000.dsi (ops dsi_ops)
[ 7.174858] adreno 5000000.gpu: supply vdd not found, using dummy regulator
[ 7.182560] adreno 5000000.gpu: supply vddcx not found, using dummy regulator
[ 7.185132] mmc1: SDHCI controller on 8804000.mmc [8804000.mmc] using ADMA 64-bit
[ 7.193525] msm_dpu ae01000.display-controller: bound 5000000.gpu (ops a3xx_ops)
[ 7.196861] mmc0: SDHCI controller on 7c4000.mmc [7c4000.mmc] using ADMA 64-bit
[ 7.215122] Console: switching to colour dummy device 80x25
[ 7.222286] [drm:dpu_kms_hw_init:1173] dpu hardware revision:0x40010000
[ 7.230515] [drm] Initialized msm 1.13.0 for ae01000.display-controller on minor 0
[ 7.238631] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] loaded qcom/a630_sqe.fw from new location
[ 7.249376] msm_dpu ae01000.display-controller: [drm:adreno_request_fw] loaded qcom/a630_gmu.bin from new location
[ 7.266121] mmc1: new UHS-I speed SDR104 SDXC card at address 0001
[ 7.270511] mmc0: new HS200 MMC card at address 0001
[ 7.273800] mmcblk1: mmc1:0001 GC2QT 59.6 GiB
[ 7.278441] mmcblk0: mmc0:0001 DV6DMB 116 GiB
[ 7.290619] mmcblk1: p1 p2
[ 7.291524] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 p16 p17 p18 p19 p20 p21 p22 p23 p24 p25 p26 p27 p28 p29 p30 p31 p32 p33 p34 p35 p36 p37 p38 p39 p40 p41 p42 p43 p44 p45 p46 p47 p48 p49 p50 p51 p52 p53 p54 p55 p56 p57 p58 p59 p60 p61 p62 p63 p64 p65 p66 p67 p68 p69 p70 p72 p74 p77 p78
[ 7.340620] mmcblk0boot0: mmc0:0001 DV6DMB 4.00 MiB
[ 7.343973] mmcblk0boot1: mmc0:0001 DV6DMB 4.00 MiB
[ 7.347545] mmcblk0rpmb: mmc0:0001 DV6DMB 16.0 MiB, chardev (511:0)
[ 7.502331] [drm:programmable_fetch_get_num_lines:193] low vbp+vfp may lead to perf issues in some cases
[ 7.502624] fb0: sys_imageblit: framebuffer is not in virtual address space.
[ 7.513284] ------------[ cut here ]------------
[ 7.513294] Unbalanced enable for IRQ 108
[ 7.513340] WARNING: kernel/irq/manage.c:764 at enable_irq+0xbc/0x128, CPU#6: kworker/6:6/131
[ 7.513389] Modules linked in:
[ 7.513409] CPU: 6 UID: 0 PID: 131 Comm: kworker/6:6 Tainted: G W 6.19.10-sdm670 #1-postmarketos-qcom-sdm670 PREEMPT
[ 7.513437] Tainted: [W]=WARN
[ 7.513445] Hardware name: Motorola motorola one fusion (DT)
[ 7.513455] Workqueue: events wled_ovp_work
[ 7.513484] pstate: 604000c5 (nZCv daIF +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[ 7.513503] pc : enable_irq+0xbc/0x128
[ 7.513527] lr : enable_irq+0xbc/0x128
[ 7.513547] sp : ffff800081743d30
[ 7.513555] x29: ffff800081743d50 x28: ffff00008306e000 x27: 000000007fffffff
[ 7.513587] x26: ffff00008338b580 x25: 0000000000000000 x24: ffff000082dccd28
[ 7.513612] x23: ffff000080115c05 x22: ffff0000f99d2580 x21: ffff000080115c00
[ 7.513636] x20: 00000000000001c8 x19: 000000000000006c x18: ffff800080f53028
[ 7.513661] x17: 00000000c006287d x16: 00000000c006287d x15: 0000000000000003
[ 7.513684] x14: ffffc53f07717250 x13: 0000000000000003 x12: 0000000000000001
[ 7.513708] x11: 00000000ffffefff x10: 00000000ffffffff x9 : c4671f8df9259700
[ 7.513732] x8 : c4671f8df9259700 x7 : 6c62616e65206465 x6 : 636e616c61626e55
[ 7.513755] x5 : ffffc53f07a450d5 x4 : ffffc53f07a450d7 x3 : 0000000000000000
[ 7.513778] x2 : 0000000000000000 x1 : 0000000000000000 x0 : 000000000000001d
[ 7.513803] Call trace:
[ 7.513811] enable_irq+0xbc/0x128 (P)
[ 7.513840] wled_ovp_work+0x24/0x38
[ 7.513860] process_scheduled_works+0x19c/0x418
[ 7.513887] worker_thread+0x280/0x3fc
[ 7.513910] kthread+0x15c/0x264
[ 7.513930] ret_from_fork+0x10/0x20
[ 7.513961] ---[ end trace 0000000000000000 ]---
[ 7.538841] Console: switching to colour frame buffer device 90x100
[ 7.782168] msm_dpu ae01000.display-controller: [drm] fb0: msmdrmfb frame buffer device
[ 7.795618] input: gpio-keys as /devices/platform/gpio-keys/input/input2
[ 7.802936] clk: Disabling unused clocks
[ 7.807464] PM: genpd: Disabling unused power domains
[ 7.816063] Freeing unused kernel memory: 1792K
[ 7.821060] Run /init as init process
[ 7.878956] syslogd started: BusyBox v1.37.0
[ 7.883602] [pmOS-rd]: ❬❬ PMOS STAGE 1 ❭❭
[ 7.888760] [pmOS-rd]: initramfs version: 3.9.6-r0
[ 7.893792] [pmOS-rd]: ❬❬ PMOS STAGE 2 ❭❭
[ 8.739887] [NVT-ts-spi] nvt_ts_probe 1234: probe start
[ 8.745604] [NVT-ts-spi] nvt_ts_probe 1286: mode=0, max_speed_hz=9600000
[ 8.752619] [NVT-ts-spi] nvt_parse_dt 681: novatek,irq-gpio=662
[ 8.758759] [NVT-ts-spi] nvt_parse_dt 684: novatek,pen-support=0
[ 8.764980] [NVT-ts-spi] nvt_parse_dt 687: novatek,wgp-stylus=0
[ 8.771120] [NVT-ts-spi] nvt_parse_dt 694: SWRST_N8_ADDR=0x03F0FE
[ 8.777434] [NVT-ts-spi] nvt_parse_dt 703: SPI_RD_FAST_ADDR=0x03F310
[ 8.784012] [NVT-ts-spi] nvt_parse_dt 717: spi-max-frequency: 9600000
[ 8.805213] [NVT-ts-spi] nvt_ts_probe 1363: Set default fw_ver=0, x_num=32, y_num=50, abs_x_max=720, abs_y_max=1600, max_button_num=0!
[ 8.817765] input: NVTCapacitiveTouchScreen as /devices/virtual/input/input3
[ 8.825643] [NVT-ts-spi] nvt_ts_probe 1455: int_trigger_type=1
[ 8.832664] [NVT-ts-spi] nvt_ts_probe 1464: request irq 133 succeed
[ 8.839138] [NVT-ts-spi] update_firmware_request 331: filename is qcom/sdm710/astro/novatek_ts_fw.bin
[ 8.849150] [NVT-ts-spi] nvt_get_fw_need_write_size 62: fw_need_write_size = 110592(0x1b000), NVT end flag
[ 8.859094] [NVT-ts-spi] nvt_bin_header_parser 154: cascade_2nd_header_info = 0
[ 8.866624] [NVT-ts-spi] nvt_bin_header_parser 186: ovly_info = 0, ilm_dlm_num = 2, ovly_sec_num = 0, info_sec_num = 13, partition = 15
[ 8.977940] [NVT-ts-spi] nvt_update_firmware 856: Update firmware success! <98796 us>
[ 8.986497] [NVT-ts-spi] nvt_get_fw_info 639: fw_ver = 0x03, fw_type = 0x01, x_num=18, y_num=32
[ 8.997531] fb0: sys_fillrect: framebuffer is not in virtual address space.
[ 9.010112] [NVT-ts-spi] nvt_read_pid 576: PID=601C
[ 9.016888] [NVT-ts-spi] nvt_ts_probe 1491: NVT_TOUCH_ESD_PROTECT is 1
[ 9.025640] [NVT-ts-spi] disable_pen_input_device 1175: ++
[ 9.071836] [NVT-ts-spi] disable_pen_input_device 1201: pen charge state is DISABLE, ENABLE pen input device
[ 9.087144] [NVT-ts-spi] disable_pen_input_device 1204: --
[ 9.094788] [NVT-ts-spi] nvt_ts_probe 1525: end
[ 9.118637] [pmOS-rd]: Setting up USB gadget through configfs
[ 9.135016] configfs-gadget.g1 gadget.0: HOST MAC fe:ff:9c:87:54:17
[ 9.143295] configfs-gadget.g1 gadget.0: MAC fe:12:66:db:3a:7c
[ 9.182828] [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
[ 9.198500] [pmOS-rd]: Setting framebuffer mode to: U:720x1600p-0
[ 10.339591] [pmOS-rd]: Trying to mount subpartitions for 10 seconds...
[ 10.889274] [pmOS-rd]: Unable to resize root partition: failed to find qualifying partition
[ 10.896700] [pmOS-rd]: WARNING: fsck not supported for 'btrfs' filesystem (/dev/mmcblk1p2).
[ 11.067713] [pmOS-rd]: Mount root partition (/dev/mmcblk1p2) to /sysroot (read-write) with options
[ 11.081245] [pmOS-rd]: Scanning for Btrfs filesystems
[ 11.438375] [pmOS-rd]: registered: /dev/mmcblk1p2
[ 11.441157] BTRFS: device label pmOS_root devid 1 transid 69 /dev/mmcblk1p2 (179:2) scanned by mount (299)
[ 11.442610] BTRFS info (device mmcblk1p2): first mount of filesystem 65004247-2820-48b6-911b-8f98b5392ebf
[ 11.442636] BTRFS info (device mmcblk1p2): using crc32c (crc32c-lib) checksum algorithm
[ 11.457549] BTRFS info (device mmcblk1p2): start tree-log replay
[ 11.568332] BTRFS info (device mmcblk1p2): checking UUID tree
[ 11.568762] BTRFS info (device mmcblk1p2): enabling ssd optimizations
[ 11.568774] BTRFS info (device mmcblk1p2): turning on async discard
[ 11.568782] BTRFS info (device mmcblk1p2): enabling free space tree
[ 11.596433] [pmOS-rd]: Resize 'btrfs' filesystem (/sysroot)
[ 11.602593] [pmOS-rd]: Resize device id 1 (/dev/mmcblk1p2) from 59.39GiB to max
[ 11.613470] [pmOS-rd]: Switching root
[ 11.804220] syslogd exiting
[ 12.069368] systemd[1]: System time advanced to built-in epoch: Thu 2026-04-16 18:03:39 -04
[ 12.574147] NET: Registered PF_INET6 protocol family
[ 12.577070] Segment Routing with IPv6
[ 12.577098] In-situ OAM (IOAM) with IPv6
[ 12.726587] systemd[1]: systemd 260.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)
[ 12.726674] systemd[1]: Detected architecture arm64.
Welcome to postmarketOS edge!
[ 12.793807] systemd[1]: Hostname set to <motorola-astro>.
[ 13.815594] systemd[1]: Queued start job for default target Graphical Interface.
[ 13.843535] systemd[1]: Created slice Slice /system/getty.
[ OK ] Created slice Slice /system/getty.
[ 13.859522] systemd[1]: Created slice Slice /system/modprobe.
[ OK ] Created slice Slice /system/modprobe.
[ 13.893272] systemd[1]: Created slice Slice /system/serial-getty.
[ OK ] Created slice Slice /system/serial-getty.
[ 13.926738] systemd[1]: Created slice User and Session Slice.
[ OK ] Created slice User and Session Slice.
[ 13.959328] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ OK ] Started Dispatch Password Requests to Console Directory Watch.
[ 13.994851] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ OK ] Started Forward Password Requests to Wall Directory Watch.
[ 14.028255] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ OK ] Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 14.063021] systemd[1]: Expecting device /dev/disk/by-uuid/48d160bf-f2c5-4edf-bb51-944d5d777c40...
Expecting device /dev/disk/by-uuid/48d160bf-f2c5-4edf-bb51-944d5d777c40...
[ 14.095601] systemd[1]: Expecting device /dev/disk/by-uuid/65004247-2820-48b6-911b-8f98b5392ebf...
Expecting device /dev/disk/by-uuid/65004247-2820-48b6-911b-8f98b5392ebf...
[ 14.129381] systemd[1]: Expecting device /dev/ttyMSM0...
Expecting device /dev/ttyMSM0...
[ 14.158854] systemd[1]: Reached target Local Encrypted Volumes.
[ OK ] Reached target Local Encrypted Volumes.
[ 14.192946] systemd[1]: Reached target Image Downloads.
[ OK ] Reached target Image Downloads.
[ 14.225455] systemd[1]: Reached target Local Integrity Protected Volumes.
[ OK ] Reached target Local Integrity Protected Volumes.
[ 14.260667] systemd[1]: Reached target Path Units.
[ OK ] Reached target Path Units.
[ 14.291548] systemd[1]: Reached target Remote Encrypted Volumes.
[ OK ] Reached target Remote Encrypted Volumes.
[ 14.326085] systemd[1]: Reached target Remote File Systems.
[ OK ] Reached target Remote File Systems.
[ 14.358981] systemd[1]: Reached target Remote Integrity Protected Volumes.
[ OK ] Reached target Remote Integrity Protected Volumes.
[ 14.393644] systemd[1]: Reached target Remote Verity Protected Volumes.
[ OK ] Reached target Remote Verity Protected Volumes.
[ 14.426715] systemd[1]: Reached target Slice Units.
[ OK ] Reached target Slice Units.
[ 14.458541] systemd[1]: Reached target Local Verity Protected Volumes.
[ OK ] Reached target Local Verity Protected Volumes.
[ 14.506773] systemd[1]: Listening on Query the User Interactively for a Password.
[ OK ] Listening on Query the User Interactively for a Password.
[ 14.558265] systemd[1]: Listening on Process Core Dump Socket.
[ OK ] Listening on Process Core Dump Socket.
[ 14.601284] systemd[1]: Listening on Credential Encryption/Decryption.
[ OK ] Listening on Credential Encryption/Decryption.
[ 14.639804] systemd[1]: Listening on Factory Reset Management.
[ OK ] Listening on Factory Reset Management.
[ 14.660057] systemd[1]: Listening on Journal Socket (/dev/log).
[ OK ] Listening on Journal Socket (/dev/log).
[ 14.693429] systemd[1]: Listening on Journal Sockets.
[ OK ] Listening on Journal Sockets.
[ 14.725773] systemd[1]: Listening on DDI File System Mounter Socket.
[ OK ] Listening on DDI File System Mounter Socket.
[ 14.773422] systemd[1]: Listening on Console Output Muting Service Socket.
[ OK ] Listening on Console Output Muting Service Socket.
[ 14.794235] systemd[1]: Listening on Namespace Resource Manager Socket.
[ OK ] Listening on Namespace Resource Manager Socket.
[ 14.827718] systemd[1]: Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ OK ] Listening on Userspace Out-Of-Memory (OOM) Killer Socket.
[ 14.869917] systemd[1]: Listening on Disk Repartitioning Service Socket.
[ OK ] Listening on Disk Repartitioning Service Socket.
[ 14.894172] systemd[1]: Listening on udev Control Socket.
[ OK ] Listening on udev Control Socket.
[ 14.925834] systemd[1]: Listening on udev Kernel Socket.
[ OK ] Listening on udev Kernel Socket.
[ 14.959269] systemd[1]: Listening on udev Varlink Socket.
[ OK ] Listening on udev Varlink Socket.
[ 15.006525] systemd[1]: Mounting Huge Pages File System...
Mounting Huge Pages File System...
[ 15.040425] systemd[1]: Mounting POSIX Message Queue File System...
Mounting POSIX Message Queue File System...
[ 15.098532] systemd[1]: Mounting Kernel Debug File System...
Mounting Kernel Debug File System...
[ 15.169821] systemd[1]: Mounting Kernel Trace File System...
Mounting Kernel Trace File System...
[ 15.203018] systemd[1]: Starting Create List of Static Device Nodes...
Starting Create List of Static Device Nodes...
[ 15.227089] systemd[1]: Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
[ 15.227228] systemd[1]: Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
[ 15.227307] systemd[1]: Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
[ 15.237498] systemd[1]: Starting Load Kernel Module fuse...
Starting Load Kernel Module fuse...
[ 15.331466] systemd[1]: Starting nftables static rule set...
Starting nftables static rule set...
[ 15.401941] fuse: init (API version 7.45)
[ 15.402906] systemd[1]: Starting Enable compressed swap in memory using zram...
Starting Enable compressed swap in memory using zram...
[ 15.468461] systemd[1]: Starting Setting the system time according to an offset file...
Starting Setting the system time according to an offset file...
[ 15.520175] 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
[ 15.549340] systemd[1]: Starting Journal Service...
Starting Journal Service...
[ 15.621319] systemd[1]: Starting Load Kernel Modules...
Starting Load Kernel Modules...
[ 15.655093] systemd[1]: Starting Remount Root and Kernel File Systems...
Starting Remount Root and Kernel File Systems...
[ 15.683603] systemd[1]: Starting Wait Until Kernel Time Synchronized...
[ 15.722113] systemd-journald[380]: Collecting audit messages is disabled.
Starting Wait Until Kernel Time Synchronized...
[ 15.761053] systemd[1]: Starting Load udev Rules from Credentials...
Starting Load udev Rules from Credentials...
[ 15.857519] systemd[1]: Starting Coldplug All udev Devices...
Starting Coldplug All udev Devices...
[ 15.911602] systemd[1]: Started Journal Service.
[ OK ] Started Journal Service.
[ OK ] Mounted Huge Pages File System.
[ OK ] Mounted POSIX Message Queue File System.
[ OK ] Mounted Kernel Debug File System.
[ OK ] Mounted Kernel Trace File System.
[ OK ] Finished Create List of Static Device Nodes.
[ OK ] Finished Load Kernel Module fuse.
[ OK ] Finished nftables static rule set.
[ 16.207273] BTRFS info (device mmcblk1p2 state M): use zstd compression, level 2
[ OK ] Finished Setting the system time according to an offset file.
[ OK ] Finished Load Kernel Modules.
[ 16.310212] zram: Added device: zram0
[ 16.322070] zram0: detected capacity change from 0 to 11159552
[ 16.338316] Adding 5579772k swap on /dev/zram0. Priority:-1 extents:1 across:5579772k SS
[ OK ] Finished Remount Root and Kernel File Systems.
[ OK ] Finished Load udev Rules from Credentials.
[ OK ] Finished Coldplug All udev Devices.
[ OK ] Finished Enable compressed swap in memory using zram.
[ OK ] Reached target Preparation for Network.
[ OK ] Reached target Swaps.
Mounting FUSE Control File System...
Mounting Temporary Directory /tmp...
Starting Apply Kernel Variables...
Starting Create Static Device Nodes in /dev gracefully...
[ OK ] Mounted FUSE Control File System.
[ OK ] Mounted Temporary Directory /tmp.
[ OK ] Finished Apply Kernel Variables.
[ OK ] Finished Create Static Device Nodes in /dev gracefully.
Starting Journal Log Access Socket...
Starting Userspace Out-Of-Memory (OOM) Killer...
Starting Create Static Device Nodes in /dev...
[ OK ] Listening on Journal Log Access Socket.
[ OK ] Finished Create Static Device Nodes in /dev.
[ OK ] Reached target Preparation for Local File Systems.
Mounting Arbitrary Executable File Formats File System...
Starting Rule-based Manager for Device Events and Files...
[ OK ] Mounted Arbitrary Executable File Formats File System.
Starting Load Kernel Module tun...
[ OK ] Started Userspace Out-Of-Memory (OOM) Killer.
[ OK ] Finished Load Kernel Module tun.
Starting Namespace Resource Manager...
[ OK ] Started Namespace Resource Manager.
[ OK ] Started Rule-based Manager for Device Events and Files.
[ 18.561675] mc: Linux media interface: v0.10
[ 18.590388] videodev: Linux video capture interface: v2.00
[ 18.603706] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 18.616798] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 18.617241] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 18.676563] NET: Registered PF_QIPCRTR protocol family
[ 18.694524] qcom-venus aa00000.video-codec: non legacy binding
[ 18.694907] remoteproc remoteproc0: cdsp is available
[ 18.714392] remoteproc remoteproc1: adsp is available
[ 18.741246] remoteproc remoteproc0: powering up cdsp
[ 18.744717] remoteproc remoteproc0: Booting fw image qcom/sdm710/astro/cdsp.mbn, size 2848020
[ 18.747560] rtc-pm8xxx c440000.spmi:pmic@0:rtc@6000: registered as rtc0
[ 18.747641] rtc-pm8xxx c440000.spmi:pmic@0:rtc@6000: setting system clock to 1970-01-18T05:40:11 UTC (1489211)
[ 18.771816] systemd-journald[380]: Time jumped backwards, rotating.
[ 18.871874] remoteproc remoteproc0: remote processor cdsp is now up
[ 18.911018] Bluetooth: Core ver 2.22
[ 18.911180] NET: Registered PF_BLUETOOTH protocol family
[ 18.911185] Bluetooth: HCI device and connection manager initialized
[ 18.911236] Bluetooth: HCI socket layer initialized
[ 18.911245] Bluetooth: L2CAP socket layer initialized
[ 18.911260] Bluetooth: SCO socket layer initialized
[ 18.941632] Bluetooth: HCI UART driver ver 2.3
[ 18.955731] Bluetooth: HCI UART protocol H4 registered
[ 18.955821] Bluetooth: HCI UART protocol LL registered
[ 18.955890] remoteproc remoteproc1: powering up adsp
[ 18.970433] Bluetooth: HCI UART protocol QCA registered
[ 18.973541] remoteproc remoteproc1: Booting fw image qcom/sdm710/astro/adsp.mbn, size 14499032
[ 19.082675] Bluetooth: hci0: setting up wcn399x
[ 19.114746] qcom,fastrpc 8300000.remoteproc:glink-edge.fastrpcglink-apps-dsp.-1.-1: no reserved DMA memory for FASTRPC
[ 19.125446] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@1: Adding to iommu group 13
[ 19.126315] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@2: Adding to iommu group 14
[ 19.127021] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@3: Adding to iommu group 15
[ 19.128383] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@4: Adding to iommu group 16
[ 19.129499] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@5: Adding to iommu group 17
[ 19.130634] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@6: Adding to iommu group 18
[ 19.131724] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@7: Adding to iommu group 19
[ 19.133036] platform 8300000.remoteproc:glink-edge:fastrpc:compute-cb@8: Adding to iommu group 20
[ 19.204006] remoteproc remoteproc1: remote processor adsp is now up
[ 19.207222] qcom,fastrpc 62400000.remoteproc:glink-edge.fastrpcglink-apps-dsp.-1.-1: no reserved DMA memory for FASTRPC
[ 19.208140] Bluetooth: hci0: QCA Product ID :0x0000000a
[ 19.208147] Bluetooth: hci0: QCA SOC Version :0x40010214
[ 19.208151] Bluetooth: hci0: QCA ROM Version :0x00000201
[ 19.208155] Bluetooth: hci0: QCA Patch Version:0x00000001
[ 19.211666] platform 62400000.remoteproc:glink-edge:fastrpc:compute-cb@3: Adding to iommu group 21
[ 19.260668] Bluetooth: hci0: QCA controller version 0x02140201
[ 19.271260] platform 62400000.remoteproc:glink-edge:fastrpc:compute-cb@4: Adding to iommu group 22
[ 19.275872] Bluetooth: hci0: QCA Downloading qca/crbtfw21.tlv
[ 19.286372] platform 62400000.remoteproc:glink-edge:fastrpc:compute-cb@5: Adding to iommu group 23
[ 19.302113] platform 62400000.remoteproc:glink-edge:fastrpc:compute-cb@6: Adding to iommu group 24
[ 19.305090] qcom,apr 62400000.remoteproc:glink-edge.apr_audio_svc.-1.-1: Adding APR/GPR dev: aprsvc:service:4:9
[ 19.305229] qcom,apr 62400000.remoteproc:glink-edge.apr_audio_svc.-1.-1: Adding APR/GPR dev: aprsvc:service:4:a
[ 19.305285] qcom,apr 62400000.remoteproc:glink-edge.apr_audio_svc.-1.-1: Adding APR/GPR dev: aprsvc:service:4:b
[ OK ] Found device /dev/ttyMSM0.
[ OK ] Found device /dev/disk/by-uuid/48d160bf-f2c5-4edf-bb51-944d5d777c40.
[ 20.101400] Bluetooth: hci0: QCA Downloading qca/crnv21.bin
[ 20.252309] Bluetooth: hci0: QCA setup on UART is completed
[ OK ] Found device /dev/disk/by-uuid/65004247-2820-48b6-911b-8f98b5392ebf.
[ OK ] Created slice Slice /system/bootmac.
[ OK ] Created slice Slice /system/systemd-backlight.
[ OK ] Reached target Hardware activated USB gadget.
Mounting /.snapshots...
[ 20.501454] EXT4-fs (mmcblk1p1): mounting ext2 file system using the ext4 subsystem
[ 20.502788] EXT4-fs (mmcblk1p1): warning: mounting unchecked fs, running e2fsck is recommended
[ 20.509277] EXT4-fs (mmcblk1p1): mounted filesystem 48d160bf-f2c5-4edf-bb51-944d5d777c40 r/w without journal. Quota mode: none.
Mounting /boot...
Mounting /home...
Mounting /root...
Mounting /srv...
Mounting /var...
Starting Setting the system time according to an offset file...
Starting Virtual Console Setup...
[ OK ] Mounted /.snapshots.
[ OK ] Mounted /boot.
[ OK ] Mounted /home.
[ OK ] Mounted /root.
[ OK ] Mounted /srv.
[ OK ] Mounted /var.
[ OK ] Finished Setting the system time according to an offset file.
[ OK ] Finished Virtual Console Setup.
[ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[ OK ] Reached target Local File Systems.
[ OK ] Reached target Virtual Machines and Containers.
[ OK ] Listening on Boot Loader Control Service Socket.
[ OK ] Listening on Disk Image Download Service Socket.
[ OK ] Listening on System Extension Image Management.
Starting Load/Save Screen Backlight Brightness of backlight:backlight...
Starting Automatic Boot Loader Update...
Starting Flush Journal to Persistent Storage...
[ 21.631172] systemd-journald[380]: Received client request to flush runtime journal.
Starting Load/Save OS Random Seed...
Starting Network Time Synchronization...
[ 21.720492] systemd-journald[380]: File /var/log/journal/269fa271419d442fb3adeb2da51291fe/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ OK ] Finished Load/Save Screen Backlight Brightness of backlight:backlight.
[ OK ] Finished Automatic Boot Loader Update.
Starting Load/Save RF Kill Switch Status...
[ OK ] Started Network Time Synchronization.
[ OK ] Finished Load/Save OS Random Seed.
[ 21.870356] systemd-journald[380]: /var/log/journal/269fa271419d442fb3adeb2da51291fe/system.journal: Realtime clock jumped backwards relative to last journal entry, rotating.
[ 21.870371] systemd-journald[380]: Rotating system journal.
[ OK ] Started Load/Save RF Kill Switch Status.
[ OK ] Reached target System Time Set.
[ OK ] Finished Flush Journal to Persistent Storage.
Starting Create System Files and Directories...
[ OK ] Finished Create System Files and Directories.
Starting Rebuild Dynamic Linker Cache...
[ OK ] Finished Rebuild Dynamic Linker Cache.
[ OK ] Reached target System Initialization.
[ OK ] Started Daily Cleanup of Temporary Directories.
[ OK ] Reached target Timer Units.
[ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[ OK ] Listening on D-Bus System Message Bus Socket.
[ OK ] Listening on Hostname Service Socket.
[ OK ] Listening on User Login Management Varlink Socket.
[ OK ] Listening on Virtual Machine and Container Registration Service Socket.
[ OK ] Reached target Socket Units.
Starting D-Bus System Message Bus...
[ OK ] Started D-Bus System Message Bus.
[ OK ] Reached target Basic System.
Starting Avahi mDNS/DNS-SD Stack...
Starting Bluetooth service...
Starting Set bluetooth MAC address...
[ 25.060858] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 25.060872] Bluetooth: BNEP filters: protocol multicast
[ 25.060886] Bluetooth: BNEP socket layer initialized
[ OK ] Started Server for FastRPC remote procedure calls from Qualcomm ADSP - RootPD.
[ 25.106880] Bluetooth: MGMT ver 1.23
[ 25.107693] Bluetooth: hci0: setting up wcn399x
[ OK ] Started Server for FastRPC remote procedure calls from Qualcomm ADSP - sensorspd.
[ OK ] Started Hotkey Daemon for Mobile.
[ 25.241743] Bluetooth: hci0: QCA Product ID :0x0000000a
[ 25.241765] Bluetooth: hci0: QCA SOC Version :0x40010214
[ 25.241773] Bluetooth: hci0: QCA ROM Version :0x00000201
[ 25.241779] Bluetooth: hci0: QCA Patch Version:0x00000001
[ 25.254606] Bluetooth: hci0: QCA controller version 0x02140201
[ 25.254634] Bluetooth: hci0: QCA Downloading qca/crbtfw21.tlv
Starting IIO Sensor Proxy service...
Starting Wireless service...
Starting Authorization Manager...
Starting Qualcomm boot slot ctrl mark boot successful...
[ OK ] Started Qualcomm remotefs service.
Starting Network Manager...
Starting MSM Modem UIM Slot Selection...
Starting RealtimeKit Scheduling Policy Service...
[ OK ] Started Sleep Inhibitor Service.
Starting User Login Management...
[ OK ] Started QRTR TFTP service.
Starting Disk Manager...
[ OK ] Started Authorization Manager.
[ 26.050233] Bluetooth: hci0: QCA Downloading qca/crnv21.bin
[ OK ] Finished Set bluetooth MAC address.
[ 26.091071] Bluetooth: hci0: QCA setup on UART is completed
[ OK ] Finished Qualcomm boot slot ctrl mark boot successful.
[ OK ] Started Avahi mDNS/DNS-SD Stack.
[ OK ] Started Bluetooth service.
[ OK ] Started IIO Sensor Proxy service.
[ OK ] Started Wireless service.
[ OK ] Started RealtimeKit Scheduling Policy Service.
[ OK ] Reached target Bluetooth Support.
Starting Hostname Service...
[ OK ] Started Disk Manager.
[ OK ] Started User Login Management.
[ OK ] Started Hostname Service.
Starting Network Manager Script Dispatcher Service...
[ OK ] Started Network Manager.
[ OK ] Reached target Network.
[ OK ] Started OpenSSH Daemon.
Starting Permit User Sessions...
Starting Dynamic System Tuning Daemon...
[ OK ] Started Network Manager Script Dispatcher Service.
[ OK ] Finished Permit User Sessions.
Starting Open-source user interface for phones, based on Plasma technologies...
[ OK ] Started Serial Getty on ttyMSM0.
[ OK ] Reached target Login Prompts.
[ OK ] Stopped MSM Modem UIM Slot Selection.
[ OK ] Started Qualcomm remotefs service.
Starting MSM Modem UIM Slot Selection...
[ OK ] Started Dynamic System Tuning Daemon.
Starting PPD-to-TuneD API Translation Daemon...
[ OK ] Started Open-source user interface for phones, based on Plasma technologies.
[ OK ] Created slice User Slice of UID 10000.
Starting User Runtime Directory /run/user/10000...
[ OK ] Finished User Runtime Directory /run/user/10000.
Starting User Manager for UID 10000...
Starting Daemon for power management...
[ OK ] Stopped MSM Modem UIM Slot Selection.
[ OK ] Started Qualcomm remotefs service.
Starting MSM Modem UIM Slot Selection...
[ OK ] Started Daemon for power management.
[ OK ] Started PPD-to-TuneD API Translation Daemon.
[ 29.673425] qnoc-sdm670 1500000.interconnect: sync_state() pending due to 1e40000.ipa
[ 29.682165] qnoc-sdm670 1620000.interconnect: sync_state() pending due to 1e40000.ipa
[ 29.690297] qnoc-sdm670 1380000.interconnect: sync_state() pending due to 1e40000.ipa
[ 29.698400] qnoc-sdm670 1700000.interconnect: sync_state() pending due to 1e40000.ipa
[ 29.706500] gcc-sdm845 100000.clock-controller: sync_state() pending due to 4080000.remoteproc
[ 29.715396] gcc-sdm845 100000.clock-controller: sync_state() pending due to 506a000.gmu
[ 29.723663] sdm845-gpucc 5090000.clock-controller: sync_state() pending due to 506a000.gmu
[ 29.732217] qnoc-sdm670 17900000.interconnect: sync_state() pending due to 1e40000.ipa
[ 29.740412] qcom-rpmhpd 179c0000.rsc:power-controller: sync_state() pending due to 4080000.remoteproc
[ OK ] Stopped MSM Modem UIM Slot Selection.
[ OK ] Started Qualcomm remotefs service.
Starting MSM Modem UIM Slot Selection...
[ OK ] Stopped MSM Modem UIM Slot Selection.
[ OK ] Started Qualcomm remotefs service.
Starting MSM Modem UIM Slot Selection...
[ 31.957974] systemd-journald[380]: File /var/log/journal/269fa271419d442fb3adeb2da51291fe/user-10000.journal corrupted or uncleanly shut down, renaming and replacing.
[ OK ] Started User Manager for UID 10000.
[ OK ] Started Session c1 of User user.
Welcome to postmarketOS
Kernel 6.19.10-sdm670 on an aarch64 (ttyMSM0)
motorola-astro login: [ 42.551127] Bluetooth: RFCOMM TTY layer initialized
[ 42.556251] Bluetooth: RFCOMM socket layer initialized
[ 42.561655] Bluetooth: RFCOMM ver 1.11
Assertion generated by bootloader
Trying to boot from slot _b _b ever booted successfully Mark the slot _b as Active Refreshing BlockIO Handles [ 18144] SOD: Partition table changed, invalidating [ 18144] SOD: updating config DAP version: 10,0 DAP sector size: 0x200 Blkdev: [0] super, sz 0x214000000, start sec 0x800 Groups: [0] default, sz 0x0 [1] mot_dp_group_a, sz 0x109C00000 free sz: 0x17A63000 [2] mot_dp_group_b, sz 0x109C00000 free sz: 0xFFA32000 Partitions: [0] system_a, a=0x1, i=0, n=1, g=1, sz 0x4C61C000 [1] system_b, a=0x1, i=1, n=1, g=2, sz 0xA1CE000 [2] vendor_a, a=0x1, i=2, n=1, g=1, sz 0x1FA48000 [3] vendor_b, a=0x1, i=3, n=0, g=2, sz 0x0 [4] product_a, a=0x1, i=3, n=1, g=1, sz 0x86139000 [5] product_b, a=0x1, i=4, n=0, g=2, sz 0x0 Extents: start 0x800, num 0x2630E0, partition 0 gap: 0xE4000 (num of secs: 0x720) start 0x264000, num 0x50E70, partition 1 gap: 0x32000 (num of secs: 0x190) start 0x2B5000, num 0xFD240, partition 2 gap: 0xB8000 (num of secs: 0x5C0) start 0x3B2800, num 0x4309C8, partition 4 usable space: 0x1179C7000 (num of secs: 0x8BCE38) Sponsor with same callback already exists! [ 18149] SOD: Failed to install boot flag sponsor Booting Into Mission Mode UpdateRollbackSyscall: Older TZ, skipping updatepartition vendor_boot_b does not exit! avb_slot_verify.c:492: DEBUG: Loading vbmeta struct from partition 'vbmeta_b'. Load Image vbmeta_b total time: 1 ms avb_slot_verify.c:178: DEBUG: dtbo_b: Loading entire partition. Load Image dtbo_b total time: 79 ms avb_slot_verify.c:233: ERROR: dtbo_b: Hash of data does not match digest in descriptor. [ 18242] C - vbmeta_b image cached. State: Unlocked, AvbSlotVerify returned ERROR_VERIFICATION, continue boot VB2: Authenticate complete! boot state is: orange VB2: boot state: orange(1) OS FingerPrint: 0xC2224571 Primary display resolution: 720 x 1600 [ 18277] Using orange1 Display dim timer starts Primary display resolution: 720 x 1600 [ 19273] Using orange2 Decompressing kernel image total time: 4470 ms Dtbo hdr magic mismatch 0, with D7B7AB1E DTB offset is incorrect, kernel image does not have appended DTB [ 23921] I - disabling console [ 23922] Unable to fetch channel ID from devtree[ 23922] I - SKU: XT2073-2 DXE_ASSERT!: /localrepo/hudson/workspace/RPLS31.Q2-63-10-2-2_astro-retail_user_mr-2021-q2-stable8.1-RPL31.Q2-63-10-2-2_release-keys_derivative_cid/platform/bootable/bootlo (786): INFO: Received ResetSytem request. INFO: Type :0x0 INFO: DataSize :0x0 Exit USB monitor timer Error: fail to get DSI pll codes Saving log file Log87.txt App Log Flush : 0 ms Exit