Re: [PATCH v1 5/5] driver core: Set fw_devlink=on by default

From: Michael Walle
Date: Tue Jan 19 2021 - 05:57:27 EST


Am 2021-01-18 22:01, schrieb Saravana Kannan:
On Sun, Jan 17, 2021 at 3:01 PM Michael Walle <michael@xxxxxxxx> wrote:
> Cyclic dependencies in some firmware was one of the last remaining
> reasons fw_devlink=on couldn't be set by default. Now that cyclic
> dependencies don't block probing, set fw_devlink=on by default.
>
> Setting fw_devlink=on by default brings a bunch of benefits (currently,
> only for systems with device tree firmware):
> * Significantly cuts down deferred probes.
> * Device probe is effectively attempted in graph order.
> * Makes it much easier to load drivers as modules without having to
> worry about functional dependencies between modules (depmod is still
> needed for symbol dependencies).
>
> If this patch prevents some devices from probing, it's very likely due
> to the system having one or more device drivers that "probe"/set up a
> device (DT node with compatible property) without creating a struct
> device for it. If we hit such cases, the device drivers need to be
> fixed so that they populate struct devices and probe them like normal
> device drivers so that the driver core is aware of the devices and their
> status. See [1] for an example of such a case.
>
> [1] - https://lore.kernel.org/lkml/CAGETcx9PiX==mLxB9PO8Myyk6u2vhPVwTMsA5NkD-ywH5xhusw@xxxxxxxxxxxxxx/
> Signed-off-by: Saravana Kannan <saravanak@xxxxxxxxxx>

This breaks (at least) probing of the PCIe controllers of my board. The
driver in question is
drivers/pci/controller/dwc/pci-layerscape.c
I've also put the maintainers of this driver on CC. Looks like it uses a
proper struct device. But it uses builtin_platform_driver_probe() and
apparently it waits for the iommu which uses module_platform_driver().
Dunno if that will work together.

Yeah, the builtin vs module doesn't matter. I've had fw_devlink work
multiple times with the consumer driver being built in and the
supplier actually loaded as a module. Making that work is one of the
goals of fw_devlink.

Ok.

The board device tree can be found here:
arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var3-ads2.dts

Attached is the log with enabled "probe deferral" messages enabled.

I took a look at the logs. As you said, pci seems to be waiting on
iommu, but it's not clear why the iommu didn't probe by then. Can you
add initcall_debug=1 and enable the logs in device_link_add()? Btw, I
realize one compromise on the logs is to send them as an attachment
instead of inline. That way, it's still archived in the list, but I
don't have to deal with log lines getting wrapped, etc.

Thanks for reporting the issues. Also, could you try picking up all of
these changes and giving it a shot. It's unlikely to help, but I want
to rule out issues related to fixes in progress.

https://lore.kernel.org/lkml/20210116011412.3211292-1-saravanak@xxxxxxxxxx/
https://lore.kernel.org/lkml/20210115210159.3090203-1-saravanak@xxxxxxxxxx/
https://lore.kernel.org/lkml/20201218210750.3455872-1-saravanak@xxxxxxxxxx/

Did pick them up, the last one had a conflict due some superfluous lines.
Maybe they got reordered in that arrray.

Issue still persist. I've enabled the debug in device_link_add(), in
device_links_check_suppliers() and booted with initcall_debug. Please
see attached log. Lets see how that goes ;)

[ 0.132687] calling ls_pcie_driver_init+0x0/0x38 @ 1
[ 0.132762] platform 3400000.pcie: probe deferral - supplier 5000000.iommu not ready
[ 0.132777] platform 3500000.pcie: probe deferral - supplier 5000000.iommu not ready
[ 0.132818] initcall ls_pcie_driver_init+0x0/0x38 returned -19 after 119 usecs

After that, ls_pcie_driver_init() is never called again.

-michael[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd083]
[ 0.000000] Linux version 5.11.0-rc4-next-20210119-00011-g04c7947f0b7e-dirty (mwalle@mwalle01) (aarch64-linux-gnu-gcc (Debian 8.3.0-2) 8.3.0, GNU ld (GNU Binutils for Debian) 2.31.1) #359 SMP PREEMPT Tue Jan 19 09:22:23 CET 2021
[ 0.000000] Machine model: Kontron KBox A-230-LS
[ 0.000000] efi: UEFI not found.
[ 0.000000] NUMA: No NUMA configuration found
[ 0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x00000020ffffffff]
[ 0.000000] NUMA: NODE_DATA [mem 0x20ff7d9200-0x20ff7dafff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[ 0.000000] DMA32 empty
[ 0.000000] Normal [mem 0x0000000100000000-0x00000020ffffffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000080000000-0x00000000ffffffff]
[ 0.000000] node 0: [mem 0x0000002080000000-0x00000020ffffffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000020ffffffff]
[ 0.000000] On node 0 totalpages: 1048576
[ 0.000000] DMA zone: 8192 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 524288 pages, LIFO batch:63
[ 0.000000] Normal zone: 8192 pages used for memmap
[ 0.000000] Normal zone: 524288 pages, LIFO batch:63
[ 0.000000] cma: Reserved 32 MiB at 0x00000000fcc00000
[ 0.000000] percpu: Embedded 31 pages/cpu s89752 r8192 d29032 u126976
[ 0.000000] pcpu-alloc: s89752 r8192 d29032 u126976 alloc=31*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1
[ 0.000000] Detected PIPT I-cache on CPU0
[ 0.000000] CPU features: detected: GIC system register CPU interface
[ 0.000000] CPU features: detected: Spectre-v3a
[ 0.000000] CPU features: detected: Spectre-v2
[ 0.000000] CPU features: detected: Spectre-v4
[ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1032192
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: debug root=/dev/mmcblk0p2 rootwait initcall_debug
[ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] software IO TLB: mapped [mem 0x00000000f8c00000-0x00000000fcc00000] (64MB)
[ 0.000000] Memory: 3987140K/4194304K available (14592K kernel code, 2024K rwdata, 5780K rodata, 4800K init, 848K bss, 174396K reserved, 32768K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] ftrace: allocating 51181 entries in 200 pages
[ 0.000000] ftrace: allocated 200 pages with 3 groups
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Rude 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=2
[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[ 0.000000] GICv3: 256 SPIs implemented
[ 0.000000] GICv3: 0 Extended SPIs implemented
[ 0.000000] GICv3: Distributor has no Range Selector support
[ 0.000000] GICv3: 16 PPIs implemented
[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000006040000
[ 0.000000] ITS [mem 0x06020000-0x0603ffff]
[ 0.000000] ITS@0x0000000006020000: allocated 65536 Devices @2080180000 (flat, esz 8, psz 64K, shr 0)
[ 0.000000] ITS: using cache flushing for cmd queue
[ 0.000000] GICv3: using LPI property table @0x0000002080200000
[ 0.000000] GIC: using cache flushing for LPI property table
[ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000002080210000
[ 0.000000] random: get_random_bytes called from start_kernel+0x668/0x830 with crng_init=0
[ 0.000000] arch_timer: cp15 timer(s) running at 25.00MHz (phys).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns
[ 0.000000] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns
[ 0.000093] calling con_init+0x0/0x220 @ 0
[ 0.000130] Console: colour dummy device 80x25
[ 0.000406] printk: console [tty0] enabled
[ 0.000413] initcall con_init+0x0/0x220 returned 0 after 0 usecs
[ 0.000424] calling hvc_console_init+0x0/0x34 @ 0
[ 0.000435] initcall hvc_console_init+0x0/0x34 returned 0 after 0 usecs
[ 0.000445] calling xen_cons_init+0x0/0x88 @ 0
[ 0.000459] initcall xen_cons_init+0x0/0x88 returned 0 after 0 usecs
[ 0.000470] calling univ8250_console_init+0x0/0x50 @ 0
[ 0.000482] initcall univ8250_console_init+0x0/0x50 returned 0 after 0 usecs
[ 0.000527] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=100000)
[ 0.000543] pid_max: default: 32768 minimum: 301
[ 0.000590] LSM: Security Framework initializing
[ 0.000642] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.000677] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.001546] calling trace_init_flags_sys_enter+0x0/0x2c @ 1
[ 0.001570] initcall trace_init_flags_sys_enter+0x0/0x2c returned 0 after 0 usecs
[ 0.001584] calling trace_init_flags_sys_exit+0x0/0x2c @ 1
[ 0.001595] initcall trace_init_flags_sys_exit+0x0/0x2c returned 0 after 0 usecs
[ 0.001607] calling cpu_suspend_init+0x0/0x58 @ 1
[ 0.001619] initcall cpu_suspend_init+0x0/0x58 returned 0 after 0 usecs
[ 0.001630] calling asids_init+0x0/0xc0 @ 1
[ 0.001650] initcall asids_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.001660] calling xen_guest_init+0x0/0x348 @ 1
[ 0.001671] initcall xen_guest_init+0x0/0x348 returned 0 after 0 usecs
[ 0.001683] calling spawn_ksoftirqd+0x0/0x58 @ 1
[ 0.001742] initcall spawn_ksoftirqd+0x0/0x58 returned 0 after 0 usecs
[ 0.001757] calling migration_init+0x0/0x64 @ 1
[ 0.001766] initcall migration_init+0x0/0x64 returned 0 after 0 usecs
[ 0.001776] calling srcu_bootup_announce+0x0/0x50 @ 1
[ 0.001786] rcu: Hierarchical SRCU implementation.
[ 0.001793] initcall srcu_bootup_announce+0x0/0x50 returned 0 after 0 usecs
[ 0.001804] calling rcu_spawn_core_kthreads+0x0/0xcc @ 1
[ 0.001814] initcall rcu_spawn_core_kthreads+0x0/0xcc returned 0 after 0 usecs
[ 0.001826] calling rcu_spawn_gp_kthread+0x0/0x16c @ 1
[ 0.001879] initcall rcu_spawn_gp_kthread+0x0/0x16c returned 0 after 0 usecs
[ 0.001893] calling check_cpu_stall_init+0x0/0x3c @ 1
[ 0.001904] initcall check_cpu_stall_init+0x0/0x3c returned 0 after 0 usecs
[ 0.001915] calling rcu_sysrq_init+0x0/0x48 @ 1
[ 0.001925] initcall rcu_sysrq_init+0x0/0x48 returned 0 after 0 usecs
[ 0.001935] calling cpu_stop_init+0x0/0xd8 @ 1
[ 0.001998] initcall cpu_stop_init+0x0/0xd8 returned 0 after 0 usecs
[ 0.002012] calling init_events+0x0/0x68 @ 1
[ 0.002039] initcall init_events+0x0/0x68 returned 0 after 0 usecs
[ 0.002051] calling init_trace_printk+0x0/0x28 @ 1
[ 0.002063] initcall init_trace_printk+0x0/0x28 returned 0 after 0 usecs
[ 0.002075] calling event_trace_enable_again+0x0/0x38 @ 1
[ 0.002087] initcall event_trace_enable_again+0x0/0x38 returned 0 after 0 usecs
[ 0.002100] calling jump_label_init_module+0x0/0x2c @ 1
[ 0.002109] initcall jump_label_init_module+0x0/0x2c returned 0 after 0 usecs
[ 0.002119] calling initialize_ptr_random+0x0/0x70 @ 1
[ 0.002131] initcall initialize_ptr_random+0x0/0x70 returned 0 after 0 usecs
[ 0.002143] calling its_pmsi_init+0x0/0xb8 @ 1
[ 0.002183] Platform MSI: gic-its@6020000 domain created
[ 0.002247] initcall its_pmsi_init+0x0/0xb8 returned 0 after 0 usecs
[ 0.002259] calling its_pci_msi_init+0x0/0xd4 @ 1
[ 0.002285] PCI/MSI: /interrupt-controller@6000000/gic-its@6020000 domain created
[ 0.002326] initcall its_pci_msi_init+0x0/0xd4 returned 0 after 0 usecs
[ 0.002338] calling brcmstb_soc_device_early_init+0x0/0xb0 @ 1
[ 0.002515] initcall brcmstb_soc_device_early_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.002529] calling brcmstb_biuctrl_init+0x0/0x468 @ 1
[ 0.002570] initcall brcmstb_biuctrl_init+0x0/0x468 returned 0 after 0 usecs
[ 0.002582] calling efi_memreserve_root_init+0x0/0x48 @ 1
[ 0.002594] initcall efi_memreserve_root_init+0x0/0x48 returned 0 after 0 usecs
[ 0.002606] calling arm_enable_runtime_services+0x0/0x1e4 @ 1
[ 0.002617] EFI services will not be available.
[ 0.002624] initcall arm_enable_runtime_services+0x0/0x1e4 returned 0 after 0 usecs
[ 0.002636] calling efi_earlycon_remap_fb+0x0/0x84 @ 1
[ 0.002647] initcall efi_earlycon_remap_fb+0x0/0x84 returned 0 after 0 usecs
[ 0.002659] calling dummy_timer_register+0x0/0x44 @ 1
[ 0.002672] initcall dummy_timer_register+0x0/0x44 returned 0 after 0 usecs
[ 0.002771] smp: Bringing up secondary CPUs ...
[ 0.003048] Detected PIPT I-cache on CPU1
[ 0.003069] GICv3: CPU1: found redistributor 1 region 0:0x0000000006060000
[ 0.003079] GICv3: CPU1: using allocated LPI pending table @0x0000002080220000
[ 0.003107] CPU1: Booted secondary processor 0x0000000001 [0x410fd083]
[ 0.003176] smp: Brought up 1 node, 2 CPUs
[ 0.003204] SMP: Total of 2 processors activated.
[ 0.003212] CPU features: detected: 32-bit EL0 Support
[ 0.003221] CPU features: detected: CRC32 instructions
[ 0.003230] CPU features: detected: 32-bit EL1 Support
[ 0.012372] CPU: All CPU(s) started at EL2
[ 0.012398] alternatives: patching kernel code
[ 0.013127] devtmpfs: initialized
[ 0.015219] calling bpf_jit_charge_init+0x0/0x4c @ 1
[ 0.015251] initcall bpf_jit_charge_init+0x0/0x4c returned 0 after 0 usecs
[ 0.015265] calling ipc_ns_init+0x0/0x4c @ 1
[ 0.015280] initcall ipc_ns_init+0x0/0x4c returned 0 after 0 usecs
[ 0.015291] calling init_mmap_min_addr+0x0/0x28 @ 1
[ 0.015301] initcall init_mmap_min_addr+0x0/0x28 returned 0 after 0 usecs
[ 0.015311] calling pci_realloc_setup_params+0x0/0x54 @ 1
[ 0.015324] initcall pci_realloc_setup_params+0x0/0x54 returned 0 after 0 usecs
[ 0.015337] calling net_ns_init+0x0/0x164 @ 1
[ 0.015501] initcall net_ns_init+0x0/0x164 returned 0 after 0 usecs
[ 0.015517] calling inet_frag_wq_init+0x0/0x5c @ 1
[ 0.015587] initcall inet_frag_wq_init+0x0/0x5c returned 0 after 0 usecs
[ 0.015639] calling fpsimd_init+0x0/0xd4 @ 1
[ 0.015652] initcall fpsimd_init+0x0/0xd4 returned 0 after 0 usecs
[ 0.015663] calling tagged_addr_init+0x0/0x40 @ 1
[ 0.015679] initcall tagged_addr_init+0x0/0x40 returned 0 after 0 usecs
[ 0.015690] calling enable_mrs_emulation+0x0/0x34 @ 1
[ 0.015701] initcall enable_mrs_emulation+0x0/0x34 returned 0 after 0 usecs
[ 0.015712] calling kaslr_init+0x0/0x84 @ 1
[ 0.015723] KASLR disabled due to lack of seed
[ 0.015729] initcall kaslr_init+0x0/0x84 returned 0 after 0 usecs
[ 0.015740] calling map_entry_trampoline+0x0/0x118 @ 1
[ 0.015764] initcall map_entry_trampoline+0x0/0x118 returned 0 after 0 usecs
[ 0.015776] calling alloc_frozen_cpus+0x0/0x18 @ 1
[ 0.015788] initcall alloc_frozen_cpus+0x0/0x18 returned 0 after 0 usecs
[ 0.015799] calling cpu_hotplug_pm_sync_init+0x0/0x34 @ 1
[ 0.015811] initcall cpu_hotplug_pm_sync_init+0x0/0x34 returned 0 after 0 usecs
[ 0.015824] calling wq_sysfs_init+0x0/0x50 @ 1
[ 0.015868] initcall wq_sysfs_init+0x0/0x50 returned 0 after 0 usecs
[ 0.015880] calling ksysfs_init+0x0/0xc8 @ 1
[ 0.015901] initcall ksysfs_init+0x0/0xc8 returned 0 after 0 usecs
[ 0.015911] calling schedutil_gov_init+0x0/0x2c @ 1
[ 0.015921] initcall schedutil_gov_init+0x0/0x2c returned 0 after 0 usecs
[ 0.015931] calling pm_init+0x0/0x88 @ 1
[ 0.015968] initcall pm_init+0x0/0x88 returned 0 after 0 usecs
[ 0.015979] calling pm_disk_init+0x0/0x34 @ 1
[ 0.015993] initcall pm_disk_init+0x0/0x34 returned 0 after 0 usecs
[ 0.016004] calling swsusp_header_init+0x0/0x48 @ 1
[ 0.016014] initcall swsusp_header_init+0x0/0x48 returned 0 after 0 usecs
[ 0.016024] calling rcu_set_runtime_mode+0x0/0x34 @ 1
[ 0.016035] initcall rcu_set_runtime_mode+0x0/0x34 returned 0 after 0 usecs
[ 0.016045] calling dma_init_reserved_memory+0x0/0x74 @ 1
[ 0.016056] initcall dma_init_reserved_memory+0x0/0x74 returned -12 after 0 usecs
[ 0.016068] calling dma_debug_init+0x0/0x220 @ 1
[ 0.021866] DMA-API: preallocated 65536 debug entries
[ 0.021890] DMA-API: debugging enabled by kernel config
[ 0.021898] initcall dma_debug_init+0x0/0x220 returned 0 after 3906 usecs
[ 0.021920] calling init_jiffies_clocksource+0x0/0x34 @ 1
[ 0.021934] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.021948] initcall init_jiffies_clocksource+0x0/0x34 returned 0 after 0 usecs
[ 0.021960] calling futex_init+0x0/0x114 @ 1
[ 0.021975] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[ 0.022009] initcall futex_init+0x0/0x114 returned 0 after 0 usecs
[ 0.022020] calling cgroup_wq_init+0x0/0x48 @ 1
[ 0.022044] initcall cgroup_wq_init+0x0/0x48 returned 0 after 0 usecs
[ 0.022055] calling cgroup1_wq_init+0x0/0x48 @ 1
[ 0.022069] initcall cgroup1_wq_init+0x0/0x48 returned 0 after 0 usecs
[ 0.022081] calling ftrace_mod_cmd_init+0x0/0x28 @ 1
[ 0.022094] initcall ftrace_mod_cmd_init+0x0/0x28 returned 0 after 0 usecs
[ 0.022105] calling init_graph_trace+0x0/0x88 @ 1
[ 0.022124] initcall init_graph_trace+0x0/0x88 returned 0 after 0 usecs
[ 0.022136] calling cpu_pm_init+0x0/0x30 @ 1
[ 0.022150] initcall cpu_pm_init+0x0/0x30 returned 0 after 0 usecs
[ 0.022161] calling init_zero_pfn+0x0/0x38 @ 1
[ 0.022170] initcall init_zero_pfn+0x0/0x38 returned 0 after 0 usecs
[ 0.022180] calling mem_cgroup_swap_init+0x0/0x80 @ 1
[ 0.022201] initcall mem_cgroup_swap_init+0x0/0x80 returned 0 after 0 usecs
[ 0.022212] calling memory_failure_init+0x0/0xb0 @ 1
[ 0.022222] initcall memory_failure_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.022233] calling cma_init_reserved_areas+0x0/0x194 @ 1
[ 0.022705] initcall cma_init_reserved_areas+0x0/0x194 returned 0 after 0 usecs
[ 0.022719] calling fsnotify_init+0x0/0x64 @ 1
[ 0.022758] initcall fsnotify_init+0x0/0x64 returned 0 after 0 usecs
[ 0.022770] calling filelock_init+0x0/0xdc @ 1
[ 0.022792] initcall filelock_init+0x0/0xdc returned 0 after 0 usecs
[ 0.022804] calling init_script_binfmt+0x0/0x34 @ 1
[ 0.022815] initcall init_script_binfmt+0x0/0x34 returned 0 after 0 usecs
[ 0.022827] calling init_elf_binfmt+0x0/0x34 @ 1
[ 0.022838] initcall init_elf_binfmt+0x0/0x34 returned 0 after 0 usecs
[ 0.022849] calling init_compat_elf_binfmt+0x0/0x34 @ 1
[ 0.022860] initcall init_compat_elf_binfmt+0x0/0x34 returned 0 after 0 usecs
[ 0.022872] calling configfs_init+0x0/0xc4 @ 1
[ 0.022894] initcall configfs_init+0x0/0xc4 returned 0 after 0 usecs
[ 0.022906] calling debugfs_init+0x0/0x98 @ 1
[ 0.022917] initcall debugfs_init+0x0/0x98 returned 0 after 0 usecs
[ 0.022927] calling tracefs_init+0x0/0x5c @ 1
[ 0.022938] initcall tracefs_init+0x0/0x5c returned 0 after 0 usecs
[ 0.022948] calling securityfs_init+0x0/0xa0 @ 1
[ 0.023017] initcall securityfs_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.023032] calling prandom_init_early+0x0/0x12c @ 1
[ 0.023043] initcall prandom_init_early+0x0/0x12c returned 0 after 0 usecs
[ 0.023053] calling pinctrl_init+0x0/0xd0 @ 1
[ 0.023065] pinctrl core: initialized pinctrl subsystem
[ 0.023096] initcall pinctrl_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.023109] calling gpiolib_dev_init+0x0/0x14c @ 1
[ 0.023180] initcall gpiolib_dev_init+0x0/0x14c returned 0 after 0 usecs
[ 0.023194] calling fsl_guts_init+0x0/0x30 @ 1
[ 0.023220] initcall fsl_guts_init+0x0/0x30 returned 0 after 0 usecs
[ 0.023232] calling virtio_init+0x0/0x40 @ 1
[ 0.023254] initcall virtio_init+0x0/0x40 returned 0 after 0 usecs
[ 0.023265] calling regulator_init+0x0/0xc4 @ 1
[ 0.023424] initcall regulator_init+0x0/0xc4 returned 0 after 0 usecs
[ 0.023437] calling iommu_init+0x0/0x50 @ 1
[ 0.023453]
[ 0.023459] *************************************************************
[ 0.023466] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
[ 0.023473] ** **
[ 0.023480] ** IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL **
[ 0.023487] ** **
[ 0.023494] ** This means that this kernel is built to expose internal **
[ 0.023500] ** IOMMU data structures, which may compromise security on **
[ 0.023507] ** your system. **
[ 0.023514] ** **
[ 0.023520] ** If you see this message and you are not debugging the **
[ 0.023527] ** kernel, report this immediately to your vendor! **
[ 0.023534] ** **
[ 0.023540] ** NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE **
[ 0.023547] *************************************************************
[ 0.023554] initcall iommu_init+0x0/0x50 returned 0 after 0 usecs
[ 0.023564] calling component_debug_init+0x0/0x3c @ 1
[ 0.023578] initcall component_debug_init+0x0/0x3c returned 0 after 0 usecs
[ 0.023590] calling genpd_bus_init+0x0/0x30 @ 1
[ 0.023611] initcall genpd_bus_init+0x0/0x30 returned 0 after 0 usecs
[ 0.023622] calling soc_bus_register+0x0/0x64 @ 1
[ 0.023642] initcall soc_bus_register+0x0/0x64 returned 0 after 0 usecs
[ 0.023653] calling register_cpufreq_notifier+0x0/0x70 @ 1
[ 0.023664] initcall register_cpufreq_notifier+0x0/0x70 returned -22 after 0 usecs
[ 0.023676] calling opp_debug_init+0x0/0x3c @ 1
[ 0.023697] initcall opp_debug_init+0x0/0x3c returned 0 after 0 usecs
[ 0.023709] calling cpufreq_core_init+0x0/0x88 @ 1
[ 0.023723] initcall cpufreq_core_init+0x0/0x88 returned 0 after 0 usecs
[ 0.023733] calling cpufreq_gov_performance_init+0x0/0x2c @ 1
[ 0.023745] initcall cpufreq_gov_performance_init+0x0/0x2c returned 0 after 0 usecs
[ 0.023756] calling cpufreq_gov_userspace_init+0x0/0x2c @ 1
[ 0.023767] initcall cpufreq_gov_userspace_init+0x0/0x2c returned 0 after 0 usecs
[ 0.023778] calling CPU_FREQ_GOV_ONDEMAND_init+0x0/0x30 @ 1
[ 0.023789] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x30 returned 0 after 0 usecs
[ 0.023800] calling cpufreq_dt_platdev_init+0x0/0x150 @ 1
[ 0.023837] initcall cpufreq_dt_platdev_init+0x0/0x150 returned -19 after 0 usecs
[ 0.023849] calling cpuidle_init+0x0/0x40 @ 1
[ 0.023867] initcall cpuidle_init+0x0/0x40 returned 0 after 0 usecs
[ 0.023878] calling capsule_reboot_register+0x0/0x30 @ 1
[ 0.023890] initcall capsule_reboot_register+0x0/0x30 returned 0 after 0 usecs
[ 0.023902] calling arm_dmi_init+0x0/0x40 @ 1
[ 0.023914] DMI not present or invalid.
[ 0.023920] initcall arm_dmi_init+0x0/0x40 returned 0 after 0 usecs
[ 0.023931] calling sock_init+0x0/0xc4 @ 1
[ 0.024163] initcall sock_init+0x0/0xc4 returned 0 after 3906 usecs
[ 0.024177] calling net_inuse_init+0x0/0x40 @ 1
[ 0.024191] initcall net_inuse_init+0x0/0x40 returned 0 after 0 usecs
[ 0.024201] calling net_defaults_init+0x0/0x40 @ 1
[ 0.024211] initcall net_defaults_init+0x0/0x40 returned 0 after 0 usecs
[ 0.024221] calling init_default_flow_dissectors+0x0/0x6c @ 1
[ 0.024232] initcall init_default_flow_dissectors+0x0/0x6c returned 0 after 0 usecs
[ 0.024244] calling netlink_proto_init+0x0/0x178 @ 1
[ 0.024302] NET: Registered protocol family 16
[ 0.024331] initcall netlink_proto_init+0x0/0x178 returned 0 after 0 usecs
[ 0.024344] calling genl_init+0x0/0x5c @ 1
[ 0.024362] initcall genl_init+0x0/0x5c returned 0 after 0 usecs
[ 0.024373] calling trace_boot_init+0x0/0xf0 @ 1
[ 0.024386] initcall trace_boot_init+0x0/0xf0 returned 0 after 0 usecs
[ 0.024397] calling __gnttab_init+0x0/0x48 @ 1
[ 0.024408] initcall __gnttab_init+0x0/0x48 returned -19 after 0 usecs
[ 0.024484] calling debug_monitors_init+0x0/0x44 @ 1
[ 0.024532] initcall debug_monitors_init+0x0/0x44 returned 0 after 0 usecs
[ 0.024545] calling irq_sysfs_init+0x0/0xc0 @ 1
[ 0.024663] initcall irq_sysfs_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.024674] calling dma_atomic_pool_init+0x0/0x154 @ 1
[ 0.025243] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 0.025353] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.025526] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.025555] initcall dma_atomic_pool_init+0x0/0x154 returned 0 after 0 usecs
[ 0.025568] calling audit_init+0x0/0x154 @ 1
[ 0.025582] audit: initializing netlink subsys (disabled)
[ 0.025709] initcall audit_init+0x0/0x154 returned 0 after 0 usecs
[ 0.025712] audit: type=2000 audit(0.024:1): state=initialized audit_enabled=0 res=1
[ 0.025730] calling release_early_probes+0x0/0x64 @ 1
[ 0.025742] initcall release_early_probes+0x0/0x64 returned 0 after 0 usecs
[ 0.025753] calling bdi_class_init+0x0/0x88 @ 1
[ 0.025781] initcall bdi_class_init+0x0/0x88 returned 0 after 0 usecs
[ 0.025792] calling mm_sysfs_init+0x0/0x4c @ 1
[ 0.025804] initcall mm_sysfs_init+0x0/0x4c returned 0 after 0 usecs
[ 0.025814] calling init_per_zone_wmark_min+0x0/0x90 @ 1
[ 0.025832] initcall init_per_zone_wmark_min+0x0/0x90 returned 0 after 0 usecs
[ 0.025845] calling mpi_init+0x0/0x8c @ 1
[ 0.025858] initcall mpi_init+0x0/0x8c returned 0 after 0 usecs
[ 0.025868] calling kobject_uevent_init+0x0/0x24 @ 1
[ 0.025896] initcall kobject_uevent_init+0x0/0x24 returned 0 after 0 usecs
[ 0.025908] calling acpi_gpio_setup_params+0x0/0x80 @ 1
[ 0.025921] initcall acpi_gpio_setup_params+0x0/0x80 returned 0 after 0 usecs
[ 0.025933] calling pcibus_class_init+0x0/0x34 @ 1
[ 0.025953] initcall pcibus_class_init+0x0/0x34 returned 0 after 0 usecs
[ 0.025965] calling pci_driver_init+0x0/0x5c @ 1
[ 0.026005] initcall pci_driver_init+0x0/0x5c returned 0 after 0 usecs
[ 0.026018] calling backlight_class_init+0x0/0xcc @ 1
[ 0.026033] initcall backlight_class_init+0x0/0xcc returned 0 after 0 usecs
[ 0.026044] calling amba_init+0x0/0x2c @ 1
[ 0.026067] initcall amba_init+0x0/0x2c returned 0 after 0 usecs
[ 0.026079] calling xenbus_init+0x0/0x2b0 @ 1
[ 0.026091] initcall xenbus_init+0x0/0x2b0 returned -19 after 0 usecs
[ 0.026103] calling tty_class_init+0x0/0x68 @ 1
[ 0.026117] initcall tty_class_init+0x0/0x68 returned 0 after 0 usecs
[ 0.026127] calling vtconsole_class_init+0x0/0x104 @ 1
[ 0.026171] initcall vtconsole_class_init+0x0/0x104 returned 0 after 0 usecs
[ 0.026183] calling serdev_init+0x0/0x3c @ 1
[ 0.026202] initcall serdev_init+0x0/0x3c returned 0 after 0 usecs
[ 0.026213] calling iommu_dev_init+0x0/0x34 @ 1
[ 0.026229] initcall iommu_dev_init+0x0/0x34 returned 0 after 0 usecs
[ 0.026240] calling devlink_class_init+0x0/0x70 @ 1
[ 0.026256] initcall devlink_class_init+0x0/0x70 returned 0 after 0 usecs
[ 0.026267] calling software_node_init+0x0/0x50 @ 1
[ 0.026279] initcall software_node_init+0x0/0x50 returned 0 after 0 usecs
[ 0.026290] calling wakeup_sources_debugfs_init+0x0/0x44 @ 1
[ 0.026305] initcall wakeup_sources_debugfs_init+0x0/0x44 returned 0 after 0 usecs
[ 0.026318] calling wakeup_sources_sysfs_init+0x0/0x50 @ 1
[ 0.026336] initcall wakeup_sources_sysfs_init+0x0/0x50 returned 0 after 0 usecs
[ 0.026348] calling register_node_type+0x0/0x30 @ 1
[ 0.026386] initcall register_node_type+0x0/0x30 returned 0 after 0 usecs
[ 0.026398] calling regmap_initcall+0x0/0x28 @ 1
[ 0.026413] initcall regmap_initcall+0x0/0x28 returned 0 after 0 usecs
[ 0.026424] calling sram_init+0x0/0x30 @ 1
[ 0.026447] initcall sram_init+0x0/0x30 returned 0 after 0 usecs
[ 0.026459] calling syscon_init+0x0/0x34 @ 1
[ 0.026478] initcall syscon_init+0x0/0x34 returned 0 after 0 usecs
[ 0.026489] calling spi_init+0x0/0xd4 @ 1
[ 0.026519] initcall spi_init+0x0/0xd4 returned 0 after 0 usecs
[ 0.026530] calling spmi_init+0x0/0x40 @ 1
[ 0.026550] initcall spmi_init+0x0/0x40 returned 0 after 0 usecs
[ 0.026562] calling i2c_init+0x0/0x10c @ 1
[ 0.026593] initcall i2c_init+0x0/0x10c returned 0 after 0 usecs
[ 0.026603] calling thermal_init+0x0/0x15c @ 1
[ 0.026634] thermal_sys: Registered thermal governor 'step_wise'
[ 0.026793] initcall thermal_init+0x0/0x15c returned 0 after 0 usecs
[ 0.026810] calling init_menu+0x0/0x2c @ 1
[ 0.026909] cpuidle: using governor menu
[ 0.026919] initcall init_menu+0x0/0x2c returned 0 after 0 usecs
[ 0.026931] calling pcc_init+0x0/0x74 @ 1
[ 0.026941] initcall pcc_init+0x0/0x74 returned -19 after 0 usecs
[ 0.026951] calling rpmsg_init+0x0/0x5c @ 1
[ 0.026974] initcall rpmsg_init+0x0/0x5c returned 0 after 0 usecs
[ 0.027035] calling reserve_memblock_reserved_regions+0x0/0x16c @ 1
[ 0.027065] initcall reserve_memblock_reserved_regions+0x0/0x16c returned 0 after 0 usecs
[ 0.027078] calling aarch32_alloc_vdso_pages+0x0/0xd8 @ 1
[ 0.027094] initcall aarch32_alloc_vdso_pages+0x0/0xd8 returned 0 after 0 usecs
[ 0.027105] calling vdso_init+0x0/0xf8 @ 1
[ 0.027116] initcall vdso_init+0x0/0xf8 returned 0 after 0 usecs
[ 0.027126] calling arch_hw_breakpoint_init+0x0/0x100 @ 1
[ 0.027138] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[ 0.027183] initcall arch_hw_breakpoint_init+0x0/0x100 returned 0 after 0 usecs
[ 0.027197] calling asids_update_limit+0x0/0x120 @ 1
[ 0.027209] ASID allocator initialised with 65536 entries
[ 0.027216] initcall asids_update_limit+0x0/0x120 returned 0 after 0 usecs
[ 0.027226] calling hugetlbpage_init+0x0/0x44 @ 1
[ 0.027240] initcall hugetlbpage_init+0x0/0x44 returned 0 after 0 usecs
[ 0.027252] calling p2m_init+0x0/0x20 @ 1
[ 0.027264] initcall p2m_init+0x0/0x20 returned 0 after 0 usecs
[ 0.027276] calling xen_mm_init+0x0/0x9c @ 1
[ 0.027286] initcall xen_mm_init+0x0/0x9c returned 0 after 0 usecs
[ 0.027297] calling cryptomgr_init+0x0/0x2c @ 1
[ 0.027308] initcall cryptomgr_init+0x0/0x2c returned 0 after 0 usecs
[ 0.027318] calling mpc8xxx_init+0x0/0x30 @ 1
[ 0.027342] initcall mpc8xxx_init+0x0/0x30 returned 0 after 0 usecs
[ 0.027354] calling acpi_pci_init+0x0/0x8c @ 1
[ 0.027363] initcall acpi_pci_init+0x0/0x8c returned 0 after 0 usecs
[ 0.027373] calling dma_channel_table_init+0x0/0x158 @ 1
[ 0.027403] initcall dma_channel_table_init+0x0/0x158 returned 0 after 0 usecs
[ 0.027416] calling dma_bus_init+0x0/0x18c @ 1
[ 0.027477] initcall dma_bus_init+0x0/0x18c returned 0 after 0 usecs
[ 0.027491] calling brcmstb_soc_device_init+0x0/0x144 @ 1
[ 0.027698] initcall brcmstb_soc_device_init+0x0/0x144 returned 0 after 0 usecs
[ 0.027711] calling register_xen_platform_notifier+0x0/0x60 @ 1
[ 0.027723] initcall register_xen_platform_notifier+0x0/0x60 returned 0 after 0 usecs
[ 0.027736] calling register_xen_amba_notifier+0x0/0x64 @ 1
[ 0.027748] initcall register_xen_amba_notifier+0x0/0x64 returned 0 after 0 usecs
[ 0.027761] calling register_xen_pci_notifier+0x0/0x54 @ 1
[ 0.027772] initcall register_xen_pci_notifier+0x0/0x54 returned 0 after 0 usecs
[ 0.027785] calling pl011_init+0x0/0x60 @ 1
[ 0.027794] Serial: AMBA PL011 UART driver
[ 0.027816] initcall pl011_init+0x0/0x60 returned 0 after 0 usecs
[ 0.027827] calling cdns_uart_init+0x0/0x30 @ 1
[ 0.027844] initcall cdns_uart_init+0x0/0x30 returned 0 after 0 usecs
[ 0.027854] calling iommu_dma_init+0x0/0x28 @ 1
[ 0.027867] initcall iommu_dma_init+0x0/0x28 returned 0 after 0 usecs
[ 0.027877] calling dmi_id_init+0x0/0x2ec @ 1
[ 0.027889] initcall dmi_id_init+0x0/0x2ec returned -19 after 0 usecs
[ 0.027899] calling of_platform_default_populate_init+0x0/0xdc @ 1
[ 0.029744] Machine: Kontron KBox A-230-LS
[ 0.029754] SoC family: QorIQ LS1028A
[ 0.029760] SoC ID: svr:0x870b0110, Revision: 1.0
[ 0.030477] platform 20c0000.spi: Linked as a consumer to 1e00900.clock-controller
[ 0.031380] platform 2270000.serial: Linked as a consumer to 22c0000.dma-controller
[ 0.031418] platform 2120000.spi: Linked as a consumer to 22c0000.dma-controller
[ 0.031853] platform 2000000.i2c: Linked as a sync state only consumer to 2310000.gpio
[ 0.034671] platform 3500000.pcie: Linked as a consumer to 5000000.iommu
[ 0.034712] platform 3400000.pcie: Linked as a consumer to 5000000.iommu
[ 0.034744] platform 3200000.sata: Linked as a consumer to 5000000.iommu
[ 0.034776] platform 3110000.usb: Linked as a consumer to 5000000.iommu
[ 0.034811] platform 3100000.usb: Linked as a consumer to 5000000.iommu
[ 0.034846] platform 22c0000.dma-controller: Linked as a consumer to 5000000.iommu
[ 0.034886] platform 2150000.mmc: Linked as a consumer to 5000000.iommu
[ 0.034921] platform 2140000.mmc: Linked as a consumer to 5000000.iommu
[ 0.035058] platform 8000000.crypto: Linked as a sync state only consumer to 5000000.iommu
[ 0.035339] platform 8380000.dma-controller: Linked as a consumer to 5000000.iommu
[ 0.035777] platform 1f0000000.pcie: Linked as a consumer to 5000000.iommu
[ 0.036163] platform f080000.display: Linked as a consumer to f1f0000.clock-controller
[ 0.036201] platform f080000.display: Linked as a consumer to 5000000.iommu
[ 0.036438] initcall of_platform_default_populate_init+0x0/0xdc returned 0 after 11718 usecs
[ 0.036519] calling topology_init+0x0/0x130 @ 1
[ 0.036651] initcall topology_init+0x0/0x130 returned 0 after 0 usecs
[ 0.036664] calling uid_cache_init+0x0/0xac @ 1
[ 0.036684] initcall uid_cache_init+0x0/0xac returned 0 after 0 usecs
[ 0.036694] calling param_sysfs_init+0x0/0x1e8 @ 1
[ 0.041587] initcall param_sysfs_init+0x0/0x1e8 returned 0 after 3906 usecs
[ 0.041604] calling user_namespace_sysctl_init+0x0/0x5c @ 1
[ 0.041633] initcall user_namespace_sysctl_init+0x0/0x5c returned 0 after 0 usecs
[ 0.041645] calling pm_sysrq_init+0x0/0x34 @ 1
[ 0.041778] initcall pm_sysrq_init+0x0/0x34 returned 0 after 0 usecs
[ 0.041794] calling create_proc_profile+0x0/0x118 @ 1
[ 0.041807] initcall create_proc_profile+0x0/0x118 returned 0 after 0 usecs
[ 0.041817] calling time_ns_init+0x0/0x18 @ 1
[ 0.041829] initcall time_ns_init+0x0/0x18 returned 0 after 0 usecs
[ 0.041840] calling crash_save_vmcoreinfo_init+0x0/0x694 @ 1
[ 0.041923] initcall crash_save_vmcoreinfo_init+0x0/0x694 returned 0 after 0 usecs
[ 0.041936] calling crash_notes_memory_init+0x0/0x50 @ 1
[ 0.041952] initcall crash_notes_memory_init+0x0/0x50 returned 0 after 0 usecs
[ 0.041965] calling cgroup_sysfs_init+0x0/0x38 @ 1
[ 0.041982] initcall cgroup_sysfs_init+0x0/0x38 returned 0 after 0 usecs
[ 0.041993] calling cgroup_namespaces_init+0x0/0x18 @ 1
[ 0.042004] initcall cgroup_namespaces_init+0x0/0x18 returned 0 after 0 usecs
[ 0.042016] calling user_namespaces_init+0x0/0x48 @ 1
[ 0.042038] initcall user_namespaces_init+0x0/0x48 returned 0 after 0 usecs
[ 0.042050] calling oom_init+0x0/0x4c @ 1
[ 0.042116] initcall oom_init+0x0/0x4c returned 0 after 0 usecs
[ 0.042130] calling default_bdi_init+0x0/0xa8 @ 1
[ 0.042251] initcall default_bdi_init+0x0/0xa8 returned 0 after 0 usecs
[ 0.042264] calling cgwb_init+0x0/0x4c @ 1
[ 0.042276] initcall cgwb_init+0x0/0x4c returned 0 after 0 usecs
[ 0.042286] calling percpu_enable_async+0x0/0x24 @ 1
[ 0.042295] initcall percpu_enable_async+0x0/0x24 returned 0 after 0 usecs
[ 0.042305] calling kcompactd_init+0x0/0xcc @ 1
[ 0.042364] initcall kcompactd_init+0x0/0xcc returned 0 after 0 usecs
[ 0.042378] calling init_user_reserve+0x0/0x40 @ 1
[ 0.042389] initcall init_user_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.042399] calling init_admin_reserve+0x0/0x40 @ 1
[ 0.042409] initcall init_admin_reserve+0x0/0x40 returned 0 after 0 usecs
[ 0.042419] calling init_reserve_notifier+0x0/0x10 @ 1
[ 0.042431] initcall init_reserve_notifier+0x0/0x10 returned 0 after 0 usecs
[ 0.042443] calling swap_init_sysfs+0x0/0x84 @ 1
[ 0.042458] initcall swap_init_sysfs+0x0/0x84 returned 0 after 0 usecs
[ 0.042469] calling swapfile_init+0x0/0xd0 @ 1
[ 0.042479] initcall swapfile_init+0x0/0xd0 returned 0 after 0 usecs
[ 0.042489] calling hugetlb_init+0x0/0x4bc @ 1
[ 0.042503] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.042513] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[ 0.042521] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.042529] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[ 0.042630] initcall hugetlb_init+0x0/0x4bc returned 0 after 0 usecs
[ 0.042643] calling ksm_init+0x0/0x198 @ 1
[ 0.042729] initcall ksm_init+0x0/0x198 returned 0 after 0 usecs
[ 0.042743] calling hugepage_init+0x0/0x168 @ 1
[ 0.042835] initcall hugepage_init+0x0/0x168 returned 0 after 0 usecs
[ 0.042850] calling mem_cgroup_init+0x0/0x178 @ 1
[ 0.042862] initcall mem_cgroup_init+0x0/0x178 returned 0 after 0 usecs
[ 0.042873] calling io_wq_init+0x0/0x54 @ 1
[ 0.042884] initcall io_wq_init+0x0/0x54 returned 0 after 0 usecs
[ 0.042895] calling echainiv_module_init+0x0/0x2c @ 1
[ 0.042906] initcall echainiv_module_init+0x0/0x2c returned 0 after 0 usecs
[ 0.042916] calling rsa_init+0x0/0x68 @ 1
[ 0.042986] initcall rsa_init+0x0/0x68 returned 0 after 0 usecs
[ 0.043001] calling hmac_module_init+0x0/0x2c @ 1
[ 0.043011] initcall hmac_module_init+0x0/0x2c returned 0 after 0 usecs
[ 0.043021] calling crypto_null_mod_init+0x0/0x90 @ 1
[ 0.043267] initcall crypto_null_mod_init+0x0/0x90 returned 0 after 0 usecs
[ 0.043282] calling md5_mod_init+0x0/0x2c @ 1
[ 0.043338] initcall md5_mod_init+0x0/0x2c returned 0 after 0 usecs
[ 0.043352] calling sha1_generic_mod_init+0x0/0x2c @ 1
[ 0.043407] initcall sha1_generic_mod_init+0x0/0x2c returned 0 after 0 usecs
[ 0.043422] calling sha256_generic_mod_init+0x0/0x30 @ 1
[ 0.043523] initcall sha256_generic_mod_init+0x0/0x30 returned 0 after 0 usecs
[ 0.043538] calling crypto_ecb_module_init+0x0/0x2c @ 1
[ 0.043548] initcall crypto_ecb_module_init+0x0/0x2c returned 0 after 0 usecs
[ 0.043558] calling crypto_cbc_module_init+0x0/0x2c @ 1
[ 0.043568] initcall crypto_cbc_module_init+0x0/0x2c returned 0 after 0 usecs
[ 0.043579] calling cryptd_init+0x0/0x138 @ 1
[ 0.043634] cryptd: max_cpu_qlen set to 1000
[ 0.043644] initcall cryptd_init+0x0/0x138 returned 0 after 0 usecs
[ 0.043656] calling aes_init+0x0/0x2c @ 1
[ 0.043716] initcall aes_init+0x0/0x2c returned 0 after 0 usecs
[ 0.043729] calling deflate_mod_init+0x0/0x60 @ 1
[ 0.043882] initcall deflate_mod_init+0x0/0x60 returned 0 after 0 usecs
[ 0.043896] calling crc32c_mod_init+0x0/0x2c @ 1
[ 0.043951] initcall crc32c_mod_init+0x0/0x2c returned 0 after 0 usecs
[ 0.043965] calling crct10dif_mod_init+0x0/0x2c @ 1
[ 0.044020] initcall crct10dif_mod_init+0x0/0x2c returned 0 after 0 usecs
[ 0.044034] calling prng_mod_init+0x0/0x30 @ 1
[ 0.044104] initcall prng_mod_init+0x0/0x30 returned 0 after 0 usecs
[ 0.044117] calling drbg_init+0x0/0xfc @ 1
[ 0.044532] initcall drbg_init+0x0/0xfc returned 0 after 0 usecs
[ 0.044548] calling init_bio+0x0/0xfc @ 1
[ 0.044634] initcall init_bio+0x0/0xfc returned 0 after 0 usecs
[ 0.044649] calling blk_settings_init+0x0/0x40 @ 1
[ 0.044659] initcall blk_settings_init+0x0/0x40 returned 0 after 0 usecs
[ 0.044670] calling blk_ioc_init+0x0/0x48 @ 1
[ 0.044680] initcall blk_ioc_init+0x0/0x48 returned 0 after 0 usecs
[ 0.044691] calling blk_mq_init+0x0/0x104 @ 1
[ 0.044702] initcall blk_mq_init+0x0/0x104 returned 0 after 0 usecs
[ 0.044713] calling genhd_device_init+0x0/0x8c @ 1
[ 0.044817] initcall genhd_device_init+0x0/0x8c returned 0 after 0 usecs
[ 0.044832] calling blkcg_init+0x0/0x4c @ 1
[ 0.044923] initcall blkcg_init+0x0/0x4c returned 0 after 0 usecs
[ 0.044937] calling irq_poll_setup+0x0/0xb0 @ 1
[ 0.044949] initcall irq_poll_setup+0x0/0xb0 returned 0 after 0 usecs
[ 0.044959] calling gpiolib_debugfs_init+0x0/0x48 @ 1
[ 0.044978] initcall gpiolib_debugfs_init+0x0/0x48 returned 0 after 0 usecs
[ 0.044990] calling max732x_init+0x0/0x30 @ 1
[ 0.045015] initcall max732x_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045027] calling pca953x_init+0x0/0x30 @ 1
[ 0.045047] initcall pca953x_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045059] calling pwm_debugfs_init+0x0/0x44 @ 1
[ 0.045074] initcall pwm_debugfs_init+0x0/0x44 returned 0 after 0 usecs
[ 0.045087] calling pwm_sysfs_init+0x0/0x34 @ 1
[ 0.045105] initcall pwm_sysfs_init+0x0/0x34 returned 0 after 0 usecs
[ 0.045117] calling pci_slot_init+0x0/0x68 @ 1
[ 0.045133] initcall pci_slot_init+0x0/0x68 returned 0 after 0 usecs
[ 0.045144] calling xgene_pcie_msi_init+0x0/0x30 @ 1
[ 0.045240] initcall xgene_pcie_msi_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045251] calling altera_msi_init+0x0/0x30 @ 1
[ 0.045295] initcall altera_msi_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045305] calling fbmem_init+0x0/0x108 @ 1
[ 0.045354] initcall fbmem_init+0x0/0x108 returned 0 after 0 usecs
[ 0.045365] calling acpi_init+0x0/0x328 @ 1
[ 0.045374] ACPI: Interpreter disabled.
[ 0.045381] initcall acpi_init+0x0/0x328 returned -19 after 0 usecs
[ 0.045391] calling pnp_init+0x0/0x2c @ 1
[ 0.045414] initcall pnp_init+0x0/0x2c returned 0 after 0 usecs
[ 0.045425] calling fsl_edma_init+0x0/0x30 @ 1
[ 0.045474] platform 22c0000.dma-controller: probe deferral - supplier 5000000.iommu not ready
[ 0.045516] initcall fsl_edma_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045528] calling balloon_init+0x0/0xec @ 1
[ 0.045540] initcall balloon_init+0x0/0xec returned -19 after 0 usecs
[ 0.045552] calling xen_setup_shutdown_event+0x0/0x58 @ 1
[ 0.045564] initcall xen_setup_shutdown_event+0x0/0x58 returned -19 after 0 usecs
[ 0.045576] calling xenbus_probe_backend_init+0x0/0x64 @ 1
[ 0.045600] initcall xenbus_probe_backend_init+0x0/0x64 returned 0 after 0 usecs
[ 0.045614] calling xenbus_probe_frontend_init+0x0/0x4c @ 1
[ 0.045640] initcall xenbus_probe_frontend_init+0x0/0x4c returned 0 after 0 usecs
[ 0.045654] calling regulator_fixed_voltage_init+0x0/0x30 @ 1
[ 0.045711] initcall regulator_fixed_voltage_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045723] calling gpio_regulator_init+0x0/0x30 @ 1
[ 0.045767] initcall gpio_regulator_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045777] calling max8973_init+0x0/0x30 @ 1
[ 0.045794] initcall max8973_init+0x0/0x30 returned 0 after 0 usecs
[ 0.045805] calling misc_init+0x0/0xec @ 1
[ 0.045823] initcall misc_init+0x0/0xec returned 0 after 0 usecs
[ 0.045833] calling tpm_init+0x0/0x128 @ 1
[ 0.045914] initcall tpm_init+0x0/0x128 returned 0 after 0 usecs
[ 0.045927] calling iommu_subsys_init+0x0/0x88 @ 1
[ 0.045938] iommu: Default domain type: Translated
[ 0.045945] initcall iommu_subsys_init+0x0/0x88 returned 0 after 0 usecs
[ 0.045955] calling vga_arb_device_init+0x0/0x1c8 @ 1
[ 0.046044] vgaarb: loaded
[ 0.046051] initcall vga_arb_device_init+0x0/0x1c8 returned 0 after 0 usecs
[ 0.046063] calling register_cpu_capacity_sysctl+0x0/0xa8 @ 1
[ 0.046080] initcall register_cpu_capacity_sysctl+0x0/0xa8 returned 0 after 0 usecs
[ 0.046091] calling sec_pmic_init+0x0/0x30 @ 1
[ 0.046112] initcall sec_pmic_init+0x0/0x30 returned 0 after 0 usecs
[ 0.046124] calling bd718xx_i2c_init+0x0/0x30 @ 1
[ 0.046143] initcall bd718xx_i2c_init+0x0/0x30 returned 0 after 0 usecs
[ 0.046154] calling dma_buf_init+0x0/0xc8 @ 1
[ 0.046197] initcall dma_buf_init+0x0/0xc8 returned 0 after 0 usecs
[ 0.046210] calling init_scsi+0x0/0x94 @ 1
[ 0.046319] SCSI subsystem initialized
[ 0.046326] initcall init_scsi+0x0/0x94 returned 0 after 0 usecs
[ 0.046338] calling ata_init+0x0/0x360 @ 1
[ 0.046427] libata version 3.00 loaded.
[ 0.046436] initcall ata_init+0x0/0x360 returned 0 after 0 usecs
[ 0.046448] calling pl022_init+0x0/0x2c @ 1
[ 0.046475] initcall pl022_init+0x0/0x2c returned 0 after 0 usecs
[ 0.046487] calling phy_init+0x0/0x470 @ 1
[ 0.046532] initcall phy_init+0x0/0x470 returned 0 after 0 usecs
[ 0.046544] calling hnae_init+0x0/0x50 @ 1
[ 0.046560] initcall hnae_init+0x0/0x50 returned 0 after 0 usecs
[ 0.046572] calling usb_common_init+0x0/0x3c @ 1
[ 0.046588] initcall usb_common_init+0x0/0x3c returned 0 after 0 usecs
[ 0.046601] calling ulpi_init+0x0/0x2c @ 1
[ 0.046623] initcall ulpi_init+0x0/0x2c returned 0 after 0 usecs
[ 0.046635] calling usb_init+0x0/0x160 @ 1
[ 0.046696] usbcore: registered new interface driver usbfs
[ 0.046721] usbcore: registered new interface driver hub
[ 0.046742] usbcore: registered new device driver usb
[ 0.046750] initcall usb_init+0x0/0x160 returned 0 after 0 usecs
[ 0.046762] calling usb_phy_generic_init+0x0/0x30 @ 1
[ 0.046827] initcall usb_phy_generic_init+0x0/0x30 returned 0 after 0 usecs
[ 0.046840] calling usb_udc_init+0x0/0x74 @ 1
[ 0.046854] initcall usb_udc_init+0x0/0x74 returned 0 after 0 usecs
[ 0.046864] calling typec_init+0x0/0xb0 @ 1
[ 0.046896] initcall typec_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.046906] calling usb_roles_init+0x0/0x50 @ 1
[ 0.046923] initcall usb_roles_init+0x0/0x50 returned 0 after 0 usecs
[ 0.046933] calling serio_init+0x0/0x54 @ 1
[ 0.046952] initcall serio_init+0x0/0x54 returned 0 after 0 usecs
[ 0.046961] calling input_init+0x0/0x130 @ 1
[ 0.046982] initcall input_init+0x0/0x130 returned 0 after 0 usecs
[ 0.046992] calling rtc_init+0x0/0x74 @ 1
[ 0.047007] initcall rtc_init+0x0/0x74 returned 0 after 0 usecs
[ 0.047017] calling dw_i2c_init_driver+0x0/0x30 @ 1
[ 0.047074] initcall dw_i2c_init_driver+0x0/0x30 returned 0 after 0 usecs
[ 0.047085] calling i2c_adap_imx_init+0x0/0x30 @ 1
[ 0.047229] imx-i2c 2000000.i2c: can't get pinctrl, bus recovery not supported
[ 0.047438] i2c 0-004a: Linked as a sync state only consumer to 2310000.gpio
[ 0.047522] i2c i2c-0: IMX I2C adapter registered
[ 0.047671] imx-i2c 2030000.i2c: can't get pinctrl, bus recovery not supported
[ 0.047781] i2c i2c-1: IMX I2C adapter registered
[ 0.047881] imx-i2c 2040000.i2c: can't get pinctrl, bus recovery not supported
[ 0.047983] i2c i2c-2: IMX I2C adapter registered
[ 0.048061] initcall i2c_adap_imx_init+0x0/0x30 returned 0 after 3906 usecs
[ 0.048075] calling media_devnode_init+0x0/0xa0 @ 1
[ 0.048086] mc: Linux media interface: v0.10
[ 0.048108] initcall media_devnode_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.048119] calling videodev_init+0x0/0xa8 @ 1
[ 0.048129] videodev: Linux video capture interface: v2.00
[ 0.048142] initcall videodev_init+0x0/0xa8 returned 0 after 0 usecs
[ 0.048152] calling init_dvbdev+0x0/0x100 @ 1
[ 0.048170] initcall init_dvbdev+0x0/0x100 returned 0 after 0 usecs
[ 0.048181] calling pps_init+0x0/0xdc @ 1
[ 0.048198] pps_core: LinuxPPS API ver. 1 registered
[ 0.048205] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
[ 0.048214] initcall pps_init+0x0/0xdc returned 0 after 0 usecs
[ 0.048225] calling ptp_init+0x0/0xc0 @ 1
[ 0.048239] PTP clock support registered
[ 0.048246] initcall ptp_init+0x0/0xc0 returned 0 after 0 usecs
[ 0.048256] calling brcmstb_reboot_init+0x0/0x38 @ 1
[ 0.048316] initcall brcmstb_reboot_init+0x0/0x38 returned -19 after 0 usecs
[ 0.048327] calling power_supply_class_init+0x0/0x6c @ 1
[ 0.048350] initcall power_supply_class_init+0x0/0x6c returned 0 after 0 usecs
[ 0.048361] calling hwmon_init+0x0/0x58 @ 1
[ 0.048376] initcall hwmon_init+0x0/0x58 returned 0 after 0 usecs
[ 0.048387] calling edac_init+0x0/0x98 @ 1
[ 0.048396] EDAC MC: Ver: 3.0.0
[ 0.048518] initcall edac_init+0x0/0x98 returned 0 after 0 usecs
[ 0.048532] calling psci_idle_init_domains+0x0/0x30 @ 1
[ 0.048586] initcall psci_idle_init_domains+0x0/0x30 returned 0 after 0 usecs
[ 0.048598] calling mmc_init+0x0/0x58 @ 1
[ 0.048634] initcall mmc_init+0x0/0x58 returned 0 after 0 usecs
[ 0.048645] calling leds_init+0x0/0x78 @ 1
[ 0.048661] initcall leds_init+0x0/0x78 returned 0 after 0 usecs
[ 0.048671] calling dmi_init+0x0/0x124 @ 1
[ 0.048681] initcall dmi_init+0x0/0x124 returned 0 after 0 usecs
[ 0.048692] calling efisubsys_init+0x0/0x4f4 @ 1
[ 0.048703] initcall efisubsys_init+0x0/0x4f4 returned 0 after 0 usecs
[ 0.048713] calling register_gop_device+0x0/0xac @ 1
[ 0.048725] initcall register_gop_device+0x0/0xac returned 0 after 0 usecs
[ 0.048736] calling remoteproc_init+0x0/0x4c @ 1
[ 0.048764] initcall remoteproc_init+0x0/0x4c returned 0 after 0 usecs
[ 0.048775] calling glink_rpm_init+0x0/0x30 @ 1
[ 0.048821] initcall glink_rpm_init+0x0/0x30 returned 0 after 0 usecs
[ 0.048832] calling devfreq_init+0x0/0x10c @ 1
[ 0.048912] initcall devfreq_init+0x0/0x10c returned 0 after 0 usecs
[ 0.048926] calling devfreq_event_init+0x0/0x80 @ 1
[ 0.048948] initcall devfreq_event_init+0x0/0x80 returned 0 after 0 usecs
[ 0.048959] calling devfreq_simple_ondemand_init+0x0/0x2c @ 1
[ 0.048970] initcall devfreq_simple_ondemand_init+0x0/0x2c returned 0 after 0 usecs
[ 0.048981] calling iio_init+0x0/0xb4 @ 1
[ 0.049022] initcall iio_init+0x0/0xb4 returned 0 after 0 usecs
[ 0.049034] calling arm_pmu_hp_init+0x0/0x70 @ 1
[ 0.049046] initcall arm_pmu_hp_init+0x0/0x70 returned 0 after 0 usecs
[ 0.049056] calling arm_pmu_acpi_init+0x0/0x1f0 @ 1
[ 0.049065] initcall arm_pmu_acpi_init+0x0/0x1f0 returned 0 after 0 usecs
[ 0.049075] calling ras_init+0x0/0x28 @ 1
[ 0.049093] initcall ras_init+0x0/0x28 returned 0 after 0 usecs
[ 0.049104] calling nvmem_init+0x0/0x30 @ 1
[ 0.049124] initcall nvmem_init+0x0/0x30 returned 0 after 0 usecs
[ 0.049135] calling fpga_mgr_class_init+0x0/0x88 @ 1
[ 0.049144] FPGA manager framework
[ 0.049155] initcall fpga_mgr_class_init+0x0/0x88 returned 0 after 0 usecs
[ 0.049166] calling tee_init+0x0/0xf4 @ 1
[ 0.049190] initcall tee_init+0x0/0xf4 returned 0 after 0 usecs
[ 0.049200] calling init_soundcore+0x0/0x6c @ 1
[ 0.049215] initcall init_soundcore+0x0/0x6c returned 0 after 0 usecs
[ 0.049225] calling alsa_sound_init+0x0/0xc8 @ 1
[ 0.049246] Advanced Linux Sound Architecture Driver Initialized.
[ 0.049254] initcall alsa_sound_init+0x0/0xc8 returned 0 after 0 usecs
[ 0.049264] calling proto_init+0x0/0x2c @ 1
[ 0.049277] initcall proto_init+0x0/0x2c returned 0 after 0 usecs
[ 0.049287] calling net_dev_init+0x0/0x210 @ 1
[ 0.049472] initcall net_dev_init+0x0/0x210 returned 0 after 0 usecs
[ 0.049485] calling neigh_init+0x0/0xb4 @ 1
[ 0.049496] initcall neigh_init+0x0/0xb4 returned 0 after 0 usecs
[ 0.049506] calling fib_notifier_init+0x0/0x2c @ 1
[ 0.049518] initcall fib_notifier_init+0x0/0x2c returned 0 after 0 usecs
[ 0.049529] calling devlink_init+0x0/0x48 @ 1
[ 0.049586] initcall devlink_init+0x0/0x48 returned 0 after 0 usecs
[ 0.049598] calling ethnl_init+0x0/0x84 @ 1
[ 0.049627] initcall ethnl_init+0x0/0x84 returned 0 after 0 usecs
[ 0.049638] calling nexthop_init+0x0/0x104 @ 1
[ 0.049653] initcall nexthop_init+0x0/0x104 returned 0 after 0 usecs
[ 0.049664] calling watchdog_init+0x0/0xa0 @ 1
[ 0.049749] initcall watchdog_init+0x0/0xa0 returned 0 after 0 usecs
[ 0.049821] calling create_debug_debugfs_entry+0x0/0x40 @ 1
[ 0.049841] initcall create_debug_debugfs_entry+0x0/0x40 returned 0 after 0 usecs
[ 0.049853] calling iomem_init_inode+0x0/0xbc @ 1
[ 0.049891] initcall iomem_init_inode+0x0/0xbc returned 0 after 0 usecs
[ 0.049903] calling clocksource_done_booting+0x0/0x68 @ 1
[ 0.049935] clocksource: Switched to clocksource arch_sys_counter
[ 0.049944] initcall clocksource_done_booting+0x0/0x68 returned 0 after 15 usecs
[ 0.049957] calling tracer_init_tracefs+0x0/0x2d4 @ 1
[ 0.072446] initcall tracer_init_tracefs+0x0/0x2d4 returned 0 after 21948 usecs
[ 0.072500] calling init_trace_printk_function_export+0x0/0x44 @ 1
[ 0.072519] initcall init_trace_printk_function_export+0x0/0x44 returned 0 after 5 usecs
[ 0.072533] calling init_graph_tracefs+0x0/0x44 @ 1
[ 0.072549] initcall init_graph_tracefs+0x0/0x44 returned 0 after 3 usecs
[ 0.072562] calling init_dynamic_event+0x0/0x54 @ 1
[ 0.072576] initcall init_dynamic_event+0x0/0x54 returned 0 after 3 usecs
[ 0.072589] calling init_uprobe_trace+0x0/0x80 @ 1
[ 0.072614] initcall init_uprobe_trace+0x0/0x80 returned 0 after 13 usecs
[ 0.072627] calling secretmem_init+0x0/0x40 @ 1
[ 0.072675] initcall secretmem_init+0x0/0x40 returned 0 after 34 usecs
[ 0.072687] calling init_pipe_fs+0x0/0x68 @ 1
[ 0.072723] initcall init_pipe_fs+0x0/0x68 returned 0 after 22 usecs
[ 0.072736] calling cgroup_writeback_init+0x0/0x4c @ 1
[ 0.072751] initcall cgroup_writeback_init+0x0/0x4c returned 0 after 4 usecs
[ 0.072762] calling inotify_user_setup+0x0/0xd8 @ 1
[ 0.072788] initcall inotify_user_setup+0x0/0xd8 returned 0 after 14 usecs
[ 0.072800] calling eventpoll_init+0x0/0xf4 @ 1
[ 0.072823] initcall eventpoll_init+0x0/0xf4 returned 0 after 12 usecs
[ 0.072835] calling anon_inode_init+0x0/0x78 @ 1
[ 0.072862] initcall anon_inode_init+0x0/0x78 returned 0 after 15 usecs
[ 0.072875] calling proc_locks_init+0x0/0x4c @ 1
[ 0.072892] initcall proc_locks_init+0x0/0x4c returned 0 after 5 usecs
[ 0.072903] calling iomap_init+0x0/0x38 @ 1
[ 0.072940] initcall iomap_init+0x0/0x38 returned 0 after 25 usecs
[ 0.072952] calling dquot_init+0x0/0x13c @ 1
[ 0.072963] VFS: Disk quotas dquot_6.6.0
[ 0.073000] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.073011] initcall dquot_init+0x0/0x13c returned 0 after 47 usecs
[ 0.073023] calling proc_cmdline_init+0x0/0x44 @ 1
[ 0.073037] initcall proc_cmdline_init+0x0/0x44 returned 0 after 2 usecs
[ 0.073049] calling proc_consoles_init+0x0/0x48 @ 1
[ 0.073063] initcall proc_consoles_init+0x0/0x48 returned 0 after 3 usecs
[ 0.073076] calling proc_cpuinfo_init+0x0/0x40 @ 1
[ 0.073088] initcall proc_cpuinfo_init+0x0/0x40 returned 0 after 1 usecs
[ 0.073100] calling proc_devices_init+0x0/0x48 @ 1
[ 0.073112] initcall proc_devices_init+0x0/0x48 returned 0 after 1 usecs
[ 0.073124] calling proc_interrupts_init+0x0/0x48 @ 1
[ 0.073137] initcall proc_interrupts_init+0x0/0x48 returned 0 after 1 usecs
[ 0.073149] calling proc_loadavg_init+0x0/0x44 @ 1
[ 0.073161] initcall proc_loadavg_init+0x0/0x44 returned 0 after 1 usecs
[ 0.073173] calling proc_meminfo_init+0x0/0x44 @ 1
[ 0.073185] initcall proc_meminfo_init+0x0/0x44 returned 0 after 1 usecs
[ 0.073197] calling proc_stat_init+0x0/0x40 @ 1
[ 0.073209] initcall proc_stat_init+0x0/0x40 returned 0 after 1 usecs
[ 0.073221] calling proc_uptime_init+0x0/0x44 @ 1
[ 0.073233] initcall proc_uptime_init+0x0/0x44 returned 0 after 1 usecs
[ 0.073245] calling proc_version_init+0x0/0x44 @ 1
[ 0.073257] initcall proc_version_init+0x0/0x44 returned 0 after 1 usecs
[ 0.073269] calling proc_softirqs_init+0x0/0x44 @ 1
[ 0.073281] initcall proc_softirqs_init+0x0/0x44 returned 0 after 1 usecs
[ 0.073293] calling vmcore_init+0x0/0x558 @ 1
[ 0.073304] initcall vmcore_init+0x0/0x558 returned 0 after 1 usecs
[ 0.073316] calling proc_kmsg_init+0x0/0x40 @ 1
[ 0.073328] initcall proc_kmsg_init+0x0/0x40 returned 0 after 1 usecs
[ 0.073340] calling proc_page_init+0x0/0x7c @ 1
[ 0.073354] initcall proc_page_init+0x0/0x7c returned 0 after 3 usecs
[ 0.073366] calling proc_boot_config_init+0x0/0xb0 @ 1
[ 0.073380] initcall proc_boot_config_init+0x0/0xb0 returned 0 after 2 usecs
[ 0.073392] calling init_ramfs_fs+0x0/0x2c @ 1
[ 0.073404] initcall init_ramfs_fs+0x0/0x2c returned 0 after 1 usecs
[ 0.073416] calling init_hugetlbfs_fs+0x0/0x13c @ 1
[ 0.073490] initcall init_hugetlbfs_fs+0x0/0x13c returned 0 after 63 usecs
[ 0.073502] calling blk_scsi_ioctl_init+0x0/0xb0 @ 1
[ 0.073513] initcall blk_scsi_ioctl_init+0x0/0xb0 returned 0 after 0 usecs
[ 0.073523] calling acpi_event_init+0x0/0x54 @ 1
[ 0.073534] initcall acpi_event_init+0x0/0x54 returned 0 after 0 usecs
[ 0.073544] calling pnp_system_init+0x0/0x2c @ 1
[ 0.073584] initcall pnp_system_init+0x0/0x2c returned 0 after 28 usecs
[ 0.073596] calling pnpacpi_init+0x0/0x9c @ 1
[ 0.073606] pnp: PnP ACPI: disabled
[ 0.073612] initcall pnpacpi_init+0x0/0x9c returned 0 after 5 usecs
[ 0.073623] calling chr_dev_init+0x0/0xd4 @ 1
[ 0.080996] initcall chr_dev_init+0x0/0xd4 returned 0 after 7190 usecs
[ 0.081018] calling firmware_class_init+0x0/0xe8 @ 1
[ 0.081044] initcall firmware_class_init+0x0/0xe8 returned 0 after 14 usecs
[ 0.081056] calling sysctl_core_init+0x0/0x50 @ 1
[ 0.081097] initcall sysctl_core_init+0x0/0x50 returned 0 after 29 usecs
[ 0.081108] calling eth_offload_init+0x0/0x30 @ 1
[ 0.081118] initcall eth_offload_init+0x0/0x30 returned 0 after 0 usecs
[ 0.081129] calling ipv4_offload_init+0x0/0x90 @ 1
[ 0.081140] initcall ipv4_offload_init+0x0/0x90 returned 0 after 1 usecs
[ 0.081151] calling inet_init+0x0/0x258 @ 1
[ 0.081199] NET: Registered protocol family 2
[ 0.081504] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.081533] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.081628] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[ 0.081974] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.082076] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.082108] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.082197] initcall inet_init+0x0/0x258 returned 0 after 1010 usecs
[ 0.082218] calling af_unix_init+0x0/0x74 @ 1
[ 0.082237] NET: Registered protocol family 1
[ 0.082251] initcall af_unix_init+0x0/0x74 returned 0 after 20 usecs
[ 0.082264] calling ipv6_offload_init+0x0/0x94 @ 1
[ 0.082277] initcall ipv6_offload_init+0x0/0x94 returned 0 after 1 usecs
[ 0.082289] calling init_sunrpc+0x0/0x8c @ 1
[ 0.082608] RPC: Registered named UNIX socket transport module.
[ 0.082620] RPC: Registered udp transport module.
[ 0.082627] RPC: Registered tcp transport module.
[ 0.082634] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 0.082641] initcall init_sunrpc+0x0/0x8c returned 0 after 333 usecs
[ 0.082655] calling pci_apply_final_quirks+0x0/0x170 @ 1
[ 0.082669] PCI: CLS 0 bytes, default 64
[ 0.082676] initcall pci_apply_final_quirks+0x0/0x170 returned 0 after 9 usecs
[ 0.082686] calling acpi_reserve_resources+0x0/0x104 @ 1
[ 0.082697] initcall acpi_reserve_resources+0x0/0x104 returned 0 after 0 usecs
[ 0.082708] calling populate_rootfs+0x0/0x13c @ 1
[ 0.082814] initcall populate_rootfs+0x0/0x13c returned 0 after 92 usecs
[ 0.082893] calling register_arm64_panic_block+0x0/0x38 @ 1
[ 0.082905] initcall register_arm64_panic_block+0x0/0x38 returned 0 after 0 usecs
[ 0.082917] calling cpuinfo_regs_init+0x0/0xe0 @ 1
[ 0.082984] initcall cpuinfo_regs_init+0x0/0xe0 returned 0 after 55 usecs
[ 0.082997] calling armv8_pmu_driver_init+0x0/0x4c @ 1
[ 0.083158] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[ 0.083338] initcall armv8_pmu_driver_init+0x0/0x4c returned 0 after 321 usecs
[ 0.083352] calling arch_init_uprobes+0x0/0x44 @ 1
[ 0.083364] initcall arch_init_uprobes+0x0/0x44 returned 0 after 0 usecs
[ 0.083375] calling arm_init+0x0/0x38 @ 1
[ 0.083392] kvm [1]: IPA Size Limit: 44 bits
[ 0.083925] kvm [1]: GICv3: no GICV resource entry
[ 0.083935] kvm [1]: disabling GICv2 emulation
[ 0.083954] kvm [1]: GIC system register CPU interface enabled
[ 0.083993] kvm [1]: vgic interrupt IRQ9
[ 0.084053] kvm [1]: Hyp mode initialized successfully
[ 0.084201] initcall arm_init+0x0/0x38 returned 0 after 794 usecs
[ 0.084216] calling cpu_feature_match_SHA1_init+0x0/0x4c @ 1
[ 0.084229] initcall cpu_feature_match_SHA1_init+0x0/0x4c returned -19 after 0 usecs
[ 0.084242] calling cpu_feature_match_SHA2_init+0x0/0x50 @ 1
[ 0.084253] initcall cpu_feature_match_SHA2_init+0x0/0x50 returned -19 after 0 usecs
[ 0.084266] calling ghash_ce_mod_init+0x0/0x60 @ 1
[ 0.084375] initcall ghash_ce_mod_init+0x0/0x60 returned 0 after 94 usecs
[ 0.084389] calling cpu_feature_match_AES_init+0x0/0x4c @ 1
[ 0.084400] initcall cpu_feature_match_AES_init+0x0/0x4c returned -19 after 0 usecs
[ 0.084413] calling aes_mod_init+0x0/0x44 @ 1
[ 0.084424] initcall aes_mod_init+0x0/0x44 returned -19 after 0 usecs
[ 0.084436] calling cpu_feature_match_AES_init+0x0/0xd8 @ 1
[ 0.084447] initcall cpu_feature_match_AES_init+0x0/0xd8 returned -19 after 0 usecs
[ 0.084459] calling sha256_mod_init+0x0/0x84 @ 1
[ 0.093974] initcall sha256_mod_init+0x0/0x84 returned 0 after 9281 usecs
[ 0.093994] calling aes_init+0x0/0x2c @ 1
[ 0.094062] initcall aes_init+0x0/0x2c returned 0 after 56 usecs
[ 0.094077] calling proc_execdomains_init+0x0/0x44 @ 1
[ 0.094093] initcall proc_execdomains_init+0x0/0x44 returned 0 after 4 usecs
[ 0.094105] calling register_warn_debugfs+0x0/0x44 @ 1
[ 0.094125] initcall register_warn_debugfs+0x0/0x44 returned 0 after 7 usecs
[ 0.094138] calling cpuhp_sysfs_init+0x0/0xc8 @ 1
[ 0.094170] initcall cpuhp_sysfs_init+0x0/0xc8 returned 0 after 20 usecs
[ 0.094183] calling ioresources_init+0x0/0x7c @ 1
[ 0.094196] initcall ioresources_init+0x0/0x7c returned 0 after 4 usecs
[ 0.094206] calling snapshot_device_init+0x0/0x2c @ 1
[ 0.094273] initcall snapshot_device_init+0x0/0x2c returned 0 after 56 usecs
[ 0.094285] calling irq_pm_init_ops+0x0/0x30 @ 1
[ 0.094295] initcall irq_pm_init_ops+0x0/0x30 returned 0 after 0 usecs
[ 0.094306] calling irq_debugfs_init+0x0/0xa8 @ 1
[ 0.094744] initcall irq_debugfs_init+0x0/0xa8 returned 0 after 418 usecs
[ 0.094757] calling timekeeping_init_ops+0x0/0x34 @ 1
[ 0.094769] initcall timekeeping_init_ops+0x0/0x34 returned 0 after 0 usecs
[ 0.094779] calling init_clocksource_sysfs+0x0/0x48 @ 1
[ 0.094846] initcall init_clocksource_sysfs+0x0/0x48 returned 0 after 54 usecs
[ 0.094860] calling init_timer_list_procfs+0x0/0x50 @ 1
[ 0.094873] initcall init_timer_list_procfs+0x0/0x50 returned 0 after 2 usecs
[ 0.094884] calling alarmtimer_init+0x0/0xc8 @ 1
[ 0.094945] initcall alarmtimer_init+0x0/0xc8 returned 0 after 49 usecs
[ 0.094957] calling init_posix_timers+0x0/0x48 @ 1
[ 0.094975] initcall init_posix_timers+0x0/0x48 returned 0 after 6 usecs
[ 0.094986] calling clockevents_init_sysfs+0x0/0xfc @ 1
[ 0.095073] initcall clockevents_init_sysfs+0x0/0xfc returned 0 after 75 usecs
[ 0.095088] calling sched_clock_syscore_init+0x0/0x34 @ 1
[ 0.095098] initcall sched_clock_syscore_init+0x0/0x34 returned 0 after 0 usecs
[ 0.095110] calling proc_modules_init+0x0/0x44 @ 1
[ 0.095123] initcall proc_modules_init+0x0/0x44 returned 0 after 2 usecs
[ 0.095135] calling kallsyms_init+0x0/0x40 @ 1
[ 0.095147] initcall kallsyms_init+0x0/0x40 returned 0 after 1 usecs
[ 0.095158] calling pid_namespaces_init+0x0/0x48 @ 1
[ 0.095185] initcall pid_namespaces_init+0x0/0x48 returned 0 after 15 usecs
[ 0.095197] calling ikconfig_init+0x0/0x64 @ 1
[ 0.095210] initcall ikconfig_init+0x0/0x64 returned 0 after 2 usecs
[ 0.095222] calling audit_watch_init+0x0/0x54 @ 1
[ 0.095233] initcall audit_watch_init+0x0/0x54 returned 0 after 0 usecs
[ 0.095244] calling audit_fsnotify_init+0x0/0x54 @ 1
[ 0.095257] initcall audit_fsnotify_init+0x0/0x54 returned 0 after 2 usecs
[ 0.095269] calling audit_tree_init+0x0/0x9c @ 1
[ 0.095282] initcall audit_tree_init+0x0/0x9c returned 0 after 2 usecs
[ 0.095294] calling seccomp_sysctl_init+0x0/0x44 @ 1
[ 0.095314] initcall seccomp_sysctl_init+0x0/0x44 returned 0 after 9 usecs
[ 0.095326] calling utsname_sysctl_init+0x0/0x30 @ 1
[ 0.095347] initcall utsname_sysctl_init+0x0/0x30 returned 0 after 9 usecs
[ 0.095358] calling init_tracepoints+0x0/0x50 @ 1
[ 0.095371] initcall init_tracepoints+0x0/0x50 returned 0 after 1 usecs
[ 0.095382] calling perf_event_sysfs_init+0x0/0xb8 @ 1
[ 0.095535] initcall perf_event_sysfs_init+0x0/0xb8 returned 0 after 137 usecs
[ 0.095550] calling system_trusted_keyring_init+0x0/0x78 @ 1
[ 0.095559] Initialise system trusted keyrings
[ 0.095573] initcall system_trusted_keyring_init+0x0/0x78 returned 0 after 12 usecs
[ 0.095584] calling kswapd_init+0x0/0x90 @ 1
[ 0.095674] initcall kswapd_init+0x0/0x90 returned 0 after 79 usecs
[ 0.095687] calling extfrag_debug_init+0x0/0x80 @ 1
[ 0.095709] initcall extfrag_debug_init+0x0/0x80 returned 0 after 12 usecs
[ 0.095719] calling mm_compute_batch_init+0x0/0x30 @ 1
[ 0.095729] initcall mm_compute_batch_init+0x0/0x30 returned 0 after 0 usecs
[ 0.095739] calling slab_proc_init+0x0/0x44 @ 1
[ 0.095751] initcall slab_proc_init+0x0/0x44 returned 0 after 3 usecs
[ 0.095762] calling workingset_init+0x0/0xc4 @ 1
[ 0.095771] workingset: timestamp_bits=44 max_order=20 bucket_order=0
[ 0.095784] initcall workingset_init+0x0/0xc4 returned 0 after 13 usecs
[ 0.095795] calling proc_vmalloc_init+0x0/0x50 @ 1
[ 0.095806] initcall proc_vmalloc_init+0x0/0x50 returned 0 after 1 usecs
[ 0.095816] calling memblock_init_debugfs+0x0/0x90 @ 1
[ 0.095836] initcall memblock_init_debugfs+0x0/0x90 returned 0 after 9 usecs
[ 0.095847] calling procswaps_init+0x0/0x44 @ 1
[ 0.095859] initcall procswaps_init+0x0/0x44 returned 0 after 2 usecs
[ 0.095870] calling slab_sysfs_init+0x0/0x128 @ 1
[ 0.098572] initcall slab_sysfs_init+0x0/0x128 returned 0 after 2628 usecs
[ 0.098593] calling fcntl_init+0x0/0x48 @ 1
[ 0.098610] initcall fcntl_init+0x0/0x48 returned 0 after 5 usecs
[ 0.098621] calling proc_filesystems_init+0x0/0x44 @ 1
[ 0.098637] initcall proc_filesystems_init+0x0/0x44 returned 0 after 5 usecs
[ 0.098649] calling start_dirtytime_writeback+0x0/0x4c @ 1
[ 0.098664] initcall start_dirtytime_writeback+0x0/0x4c returned 0 after 3 usecs
[ 0.098676] calling blkdev_init+0x0/0x38 @ 1
[ 0.098699] initcall blkdev_init+0x0/0x38 returned 0 after 12 usecs
[ 0.098711] calling dio_init+0x0/0x48 @ 1
[ 0.098771] initcall dio_init+0x0/0x48 returned 0 after 49 usecs
[ 0.098784] calling dnotify_init+0x0/0x98 @ 1
[ 0.098837] initcall dnotify_init+0x0/0x98 returned 0 after 41 usecs
[ 0.098850] calling fanotify_user_setup+0x0/0xb4 @ 1
[ 0.098917] initcall fanotify_user_setup+0x0/0xb4 returned 0 after 54 usecs
[ 0.098930] calling aio_setup+0x0/0xa0 @ 1
[ 0.099022] initcall aio_setup+0x0/0xa0 returned 0 after 79 usecs
[ 0.099036] calling io_uring_init+0x0/0x4c @ 1
[ 0.099053] initcall io_uring_init+0x0/0x4c returned 0 after 5 usecs
[ 0.099065] calling mbcache_init+0x0/0x54 @ 1
[ 0.099115] initcall mbcache_init+0x0/0x54 returned 0 after 38 usecs
[ 0.099128] calling init_grace+0x0/0x2c @ 1
[ 0.099141] initcall init_grace+0x0/0x2c returned 0 after 2 usecs
[ 0.099152] calling init_devpts_fs+0x0/0x4c @ 1
[ 0.099179] initcall init_devpts_fs+0x0/0x4c returned 0 after 15 usecs
[ 0.099191] calling ext4_init_fs+0x0/0x1a8 @ 1
[ 0.099510] initcall ext4_init_fs+0x0/0x1a8 returned 0 after 300 usecs
[ 0.099524] calling init_ext2_fs+0x0/0x88 @ 1
[ 0.099568] initcall init_ext2_fs+0x0/0x88 returned 0 after 32 usecs
[ 0.099581] calling journal_init+0x0/0x13c @ 1
[ 0.099677] initcall journal_init+0x0/0x13c returned 0 after 82 usecs
[ 0.099691] calling init_squashfs_fs+0x0/0x94 @ 1
[ 0.099736] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.099744] initcall init_squashfs_fs+0x0/0x94 returned 0 after 40 usecs
[ 0.099756] calling init_fat_fs+0x0/0x6c @ 1
[ 0.099827] initcall init_fat_fs+0x0/0x6c returned 0 after 61 usecs
[ 0.099838] calling init_vfat_fs+0x0/0x2c @ 1
[ 0.099847] initcall init_vfat_fs+0x0/0x2c returned 0 after 1 usecs
[ 0.099857] calling init_nfs_fs+0x0/0x168 @ 1
[ 0.100196] initcall init_nfs_fs+0x0/0x168 returned 0 after 322 usecs
[ 0.100210] calling init_nfs_v2+0x0/0x30 @ 1
[ 0.100219] initcall init_nfs_v2+0x0/0x30 returned 0 after 0 usecs
[ 0.100229] calling init_nfs_v3+0x0/0x30 @ 1
[ 0.100237] initcall init_nfs_v3+0x0/0x30 returned 0 after 0 usecs
[ 0.100247] calling init_nfs_v4+0x0/0x6c @ 1
[ 0.100255] NFS: Registering the id_resolver key type
[ 0.100273] Key type id_resolver registered
[ 0.100280] Key type id_legacy registered
[ 0.100332] initcall init_nfs_v4+0x0/0x6c returned 0 after 74 usecs
[ 0.100344] calling nfs4filelayout_init+0x0/0x44 @ 1
[ 0.100353] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[ 0.100361] initcall nfs4filelayout_init+0x0/0x44 returned 0 after 8 usecs
[ 0.100371] calling init_nlm+0x0/0x8c @ 1
[ 0.100389] initcall init_nlm+0x0/0x8c returned 0 after 10 usecs
[ 0.100400] calling init_nls_cp437+0x0/0x30 @ 1
[ 0.100409] initcall init_nls_cp437+0x0/0x30 returned 0 after 0 usecs
[ 0.100419] calling init_nls_iso8859_1+0x0/0x30 @ 1
[ 0.100428] initcall init_nls_iso8859_1+0x0/0x30 returned 0 after 0 usecs
[ 0.100437] calling init_autofs_fs+0x0/0x48 @ 1
[ 0.100528] initcall init_autofs_fs+0x0/0x48 returned 0 after 80 usecs
[ 0.100540] calling init_v9fs+0x0/0x10c @ 1
[ 0.100549] 9p: Installing v9fs 9p2000 file system support
[ 0.100594] initcall init_v9fs+0x0/0x10c returned 0 after 44 usecs
[ 0.100606] calling efivarfs_init+0x0/0x3c @ 1
[ 0.100615] initcall efivarfs_init+0x0/0x3c returned -19 after 0 usecs
[ 0.100625] calling ipc_init+0x0/0x40 @ 1
[ 0.100646] initcall ipc_init+0x0/0x40 returned 0 after 12 usecs
[ 0.100657] calling ipc_sysctl_init+0x0/0x30 @ 1
[ 0.100679] initcall ipc_sysctl_init+0x0/0x30 returned 0 after 12 usecs
[ 0.100690] calling init_mqueue_fs+0x0/0x104 @ 1
[ 0.100772] initcall init_mqueue_fs+0x0/0x104 returned 0 after 71 usecs
[ 0.100785] calling key_proc_init+0x0/0x94 @ 1
[ 0.100798] initcall key_proc_init+0x0/0x94 returned 0 after 4 usecs
[ 0.100808] calling crypto_algapi_init+0x0/0x28 @ 1
[ 0.100820] initcall crypto_algapi_init+0x0/0x28 returned 0 after 2 usecs
[ 0.100830] calling jent_mod_init+0x0/0x4c @ 1
[ 0.130699] initcall jent_mod_init+0x0/0x4c returned 0 after 29159 usecs
[ 0.130714] calling asymmetric_key_init+0x0/0x2c @ 1
[ 0.130725] Key type asymmetric registered
[ 0.130731] initcall asymmetric_key_init+0x0/0x2c returned 0 after 7 usecs
[ 0.130742] calling x509_key_init+0x0/0x2c @ 1
[ 0.130751] Asymmetric key parser 'x509' registered
[ 0.130758] initcall x509_key_init+0x0/0x2c returned 0 after 7 usecs
[ 0.130768] calling proc_genhd_init+0x0/0x74 @ 1
[ 0.130782] initcall proc_genhd_init+0x0/0x74 returned 0 after 4 usecs
[ 0.130793] calling bsg_init+0x0/0x134 @ 1
[ 0.130816] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 0.130825] initcall bsg_init+0x0/0x134 returned 0 after 22 usecs
[ 0.130835] calling deadline_init+0x0/0x2c @ 1
[ 0.130846] io scheduler mq-deadline registered
[ 0.130853] initcall deadline_init+0x0/0x2c returned 0 after 7 usecs
[ 0.130863] calling kyber_init+0x0/0x2c @ 1
[ 0.130873] io scheduler kyber registered
[ 0.130879] initcall kyber_init+0x0/0x2c returned 0 after 7 usecs
[ 0.130890] calling crc_t10dif_mod_init+0x0/0x5c @ 1
[ 0.130911] initcall crc_t10dif_mod_init+0x0/0x5c returned 0 after 11 usecs
[ 0.130922] calling percpu_counter_startup+0x0/0x74 @ 1
[ 0.130957] initcall percpu_counter_startup+0x0/0x74 returned 0 after 23 usecs
[ 0.130977] calling audit_classes_init+0x0/0xb8 @ 1
[ 0.130996] initcall audit_classes_init+0x0/0xb8 returned 0 after 7 usecs
[ 0.131008] calling sg_pool_init+0x0/0xf4 @ 1
[ 0.131105] initcall sg_pool_init+0x0/0xf4 returned 0 after 84 usecs
[ 0.131118] calling ls_scfg_msi_driver_init+0x0/0x34 @ 1
[ 0.131259] initcall ls_scfg_msi_driver_init+0x0/0x34 returned 0 after 125 usecs
[ 0.131273] calling sl28cpld_intc_driver_init+0x0/0x30 @ 1
[ 0.131322] initcall sl28cpld_intc_driver_init+0x0/0x30 returned 0 after 35 usecs
[ 0.131336] calling brcm_gisb_driver_init+0x0/0x38 @ 1
[ 0.131415] initcall brcm_gisb_driver_init+0x0/0x38 returned -19 after 65 usecs
[ 0.131429] calling simple_pm_bus_driver_init+0x0/0x30 @ 1
[ 0.131478] initcall simple_pm_bus_driver_init+0x0/0x30 returned 0 after 36 usecs
[ 0.131493] calling vexpress_syscfg_driver_init+0x0/0x30 @ 1
[ 0.131529] initcall vexpress_syscfg_driver_init+0x0/0x30 returned 0 after 24 usecs
[ 0.131544] calling phy_core_init+0x0/0x78 @ 1
[ 0.131562] initcall phy_core_init+0x0/0x78 returned 0 after 6 usecs
[ 0.131574] calling xgene_phy_driver_init+0x0/0x30 @ 1
[ 0.131621] initcall xgene_phy_driver_init+0x0/0x30 returned 0 after 35 usecs
[ 0.131634] calling imx8mq_usb_phy_driver_init+0x0/0x30 @ 1
[ 0.131690] initcall imx8mq_usb_phy_driver_init+0x0/0x30 returned 0 after 42 usecs
[ 0.131704] calling qcom_usb_hs_phy_driver_init+0x0/0x30 @ 1
[ 0.131725] initcall qcom_usb_hs_phy_driver_init+0x0/0x30 returned 0 after 9 usecs
[ 0.131738] calling samsung_usb2_phy_driver_init+0x0/0x30 @ 1
[ 0.131777] initcall samsung_usb2_phy_driver_init+0x0/0x30 returned 0 after 26 usecs
[ 0.131791] calling max77620_pinctrl_driver_init+0x0/0x30 @ 1
[ 0.131825] initcall max77620_pinctrl_driver_init+0x0/0x30 returned 0 after 21 usecs
[ 0.131839] calling pcs_driver_init+0x0/0x30 @ 1
[ 0.131915] initcall pcs_driver_init+0x0/0x30 returned 0 after 63 usecs
[ 0.131927] calling bgpio_driver_init+0x0/0x30 @ 1
[ 0.131987] initcall bgpio_driver_init+0x0/0x30 returned 0 after 47 usecs
[ 0.132000] calling dwapb_gpio_driver_init+0x0/0x30 @ 1
[ 0.132055] initcall dwapb_gpio_driver_init+0x0/0x30 returned 0 after 42 usecs
[ 0.132068] calling max77620_gpio_driver_init+0x0/0x30 @ 1
[ 0.132102] initcall max77620_gpio_driver_init+0x0/0x30 returned 0 after 21 usecs
[ 0.132116] calling mb86s70_gpio_driver_init+0x0/0x30 @ 1
[ 0.132163] initcall mb86s70_gpio_driver_init+0x0/0x30 returned 0 after 35 usecs
[ 0.132177] calling pl061_gpio_driver_init+0x0/0x2c @ 1
[ 0.132200] initcall pl061_gpio_driver_init+0x0/0x2c returned 0 after 11 usecs
[ 0.132214] calling sl28cpld_gpio_driver_init+0x0/0x30 @ 1
[ 0.132271] initcall sl28cpld_gpio_driver_init+0x0/0x30 returned 0 after 44 usecs
[ 0.132285] calling xgene_gpio_driver_init+0x0/0x30 @ 1
[ 0.132332] initcall xgene_gpio_driver_init+0x0/0x30 returned 0 after 34 usecs
[ 0.132345] calling sl28cpld_pwm_driver_init+0x0/0x30 @ 1
[ 0.132392] initcall sl28cpld_pwm_driver_init+0x0/0x30 returned 0 after 34 usecs
[ 0.132406] calling pcie_portdrv_init+0x0/0x60 @ 1
[ 0.132471] initcall pcie_portdrv_init+0x0/0x60 returned 0 after 52 usecs
[ 0.132484] calling pci_proc_init+0x0/0xa0 @ 1
[ 0.132498] initcall pci_proc_init+0x0/0xa0 returned 0 after 5 usecs
[ 0.132508] calling pci_hotplug_init+0x0/0x18 @ 1
[ 0.132518] initcall pci_hotplug_init+0x0/0x18 returned 0 after 0 usecs
[ 0.132527] calling gen_pci_driver_init+0x0/0x30 @ 1
[ 0.132588] platform 1f0000000.pcie: probe deferral - supplier 5000000.iommu not ready
[ 0.132614] initcall gen_pci_driver_init+0x0/0x30 returned 0 after 76 usecs
[ 0.132625] calling altera_pcie_driver_init+0x0/0x30 @ 1
[ 0.132676] initcall altera_pcie_driver_init+0x0/0x30 returned 0 after 40 usecs
[ 0.132687] calling ls_pcie_driver_init+0x0/0x38 @ 1
[ 0.132762] platform 3400000.pcie: probe deferral - supplier 5000000.iommu not ready
[ 0.132777] platform 3500000.pcie: probe deferral - supplier 5000000.iommu not ready
[ 0.132818] initcall ls_pcie_driver_init+0x0/0x38 returned -19 after 119 usecs
[ 0.132830] calling kirin_pcie_driver_init+0x0/0x34 @ 1
[ 0.132874] initcall kirin_pcie_driver_init+0x0/0x34 returned 0 after 33 usecs
[ 0.132885] calling hisi_pcie_almost_ecam_driver_init+0x0/0x30 @ 1
[ 0.132935] initcall hisi_pcie_almost_ecam_driver_init+0x0/0x30 returned 0 after 38 usecs
[ 0.132947] calling thunder_ecam_driver_init+0x0/0x30 @ 1
[ 0.132991] initcall thunder_ecam_driver_init+0x0/0x30 returned 0 after 33 usecs
[ 0.133002] calling thunder_pem_driver_init+0x0/0x30 @ 1
[ 0.133047] initcall thunder_pem_driver_init+0x0/0x30 returned 0 after 35 usecs
[ 0.133059] calling xgene_pcie_driver_init+0x0/0x30 @ 1
[ 0.133102] initcall xgene_pcie_driver_init+0x0/0x30 returned 0 after 33 usecs
[ 0.133113] calling xenfb_init+0x0/0x5c @ 1
[ 0.133122] initcall xenfb_init+0x0/0x5c returned -19 after 0 usecs
[ 0.133132] calling efifb_driver_init+0x0/0x30 @ 1
[ 0.133162] initcall efifb_driver_init+0x0/0x30 returned 0 after 21 usecs
[ 0.133173] calling ged_driver_init+0x0/0x30 @ 1
[ 0.133208] initcall ged_driver_init+0x0/0x30 returned 0 after 24 usecs
[ 0.133219] calling acpi_ac_init+0x0/0xd0 @ 1
[ 0.133229] initcall acpi_ac_init+0x0/0xd0 returned -19 after 0 usecs
[ 0.133239] calling acpi_button_driver_init+0x0/0x84 @ 1
[ 0.133250] initcall acpi_button_driver_init+0x0/0x84 returned 0 after 0 usecs
[ 0.133261] calling acpi_fan_driver_init+0x0/0x30 @ 1
[ 0.133293] initcall acpi_fan_driver_init+0x0/0x30 returned 0 after 21 usecs
[ 0.133305] calling acpi_processor_driver_init+0x0/0xec @ 1
[ 0.133315] initcall acpi_processor_driver_init+0x0/0xec returned 0 after 0 usecs
[ 0.133327] calling acpi_thermal_init+0x0/0x9c @ 1
[ 0.133979] initcall acpi_thermal_init+0x0/0x9c returned -19 after 627 usecs
[ 0.133995] calling acpi_battery_init+0x0/0x5c @ 1
[ 0.134006] initcall acpi_battery_init+0x0/0x5c returned -19 after 0 usecs
[ 0.134017] calling acpi_hed_driver_init+0x0/0x30 @ 1
[ 0.134027] initcall acpi_hed_driver_init+0x0/0x30 returned -19 after 0 usecs
[ 0.134038] calling erst_init+0x0/0x2fc @ 1
[ 0.134048] initcall erst_init+0x0/0x2fc returned 0 after 0 usecs
[ 0.134058] calling ghes_init+0x0/0x118 @ 1
[ 0.134068] initcall ghes_init+0x0/0x118 returned -19 after 0 usecs
[ 0.134078] calling einj_init+0x0/0x4a8 @ 1
[ 0.134088] EINJ: ACPI disabled.
[ 0.134094] initcall einj_init+0x0/0x4a8 returned -19 after 5 usecs
[ 0.134105] calling gtdt_sbsa_gwdt_init+0x0/0x120 @ 1
[ 0.134116] initcall gtdt_sbsa_gwdt_init+0x0/0x120 returned 0 after 0 usecs
[ 0.134127] calling of_fixed_factor_clk_driver_init+0x0/0x30 @ 1
[ 0.134184] initcall of_fixed_factor_clk_driver_init+0x0/0x30 returned 0 after 44 usecs
[ 0.134198] calling of_fixed_clk_driver_init+0x0/0x30 @ 1
[ 0.134247] initcall of_fixed_clk_driver_init+0x0/0x30 returned 0 after 37 usecs
[ 0.134260] calling gpio_clk_driver_init+0x0/0x30 @ 1
[ 0.134314] initcall gpio_clk_driver_init+0x0/0x30 returned 0 after 41 usecs
[ 0.134326] calling cs2000_driver_init+0x0/0x30 @ 1
[ 0.134362] initcall cs2000_driver_init+0x0/0x30 returned 0 after 24 usecs
[ 0.134374] calling fsl_flexspi_clk_driver_init+0x0/0x30 @ 1
[ 0.134534] initcall fsl_flexspi_clk_driver_init+0x0/0x30 returned 0 after 145 usecs
[ 0.134550] calling fsl_sai_clk_driver_init+0x0/0x30 @ 1
[ 0.134600] initcall fsl_sai_clk_driver_init+0x0/0x30 returned 0 after 38 usecs
[ 0.134614] calling plldig_clk_driver_init+0x0/0x30 @ 1
[ 0.134716] initcall plldig_clk_driver_init+0x0/0x30 returned 0 after 88 usecs
[ 0.134731] calling clk_pwm_driver_init+0x0/0x30 @ 1
[ 0.134779] initcall clk_pwm_driver_init+0x0/0x30 returned 0 after 36 usecs
[ 0.134792] calling clockgen_cpufreq_init+0x0/0xac @ 1
[ 0.134858] initcall clockgen_cpufreq_init+0x0/0xac returned 0 after 54 usecs
[ 0.134872] calling rk808_clkout_driver_init+0x0/0x30 @ 1
[ 0.134910] initcall rk808_clkout_driver_init+0x0/0x30 returned 0 after 26 usecs
[ 0.134924] calling s2mps11_clk_driver_init+0x0/0x30 @ 1
[ 0.134960] initcall s2mps11_clk_driver_init+0x0/0x30 returned 0 after 24 usecs
[ 0.134973] calling scpi_clocks_driver_init+0x0/0x30 @ 1
[ 0.135021] initcall scpi_clocks_driver_init+0x0/0x30 returned 0 after 35 usecs
[ 0.135035] calling mv_xor_v2_driver_init+0x0/0x30 @ 1
[ 0.135082] initcall mv_xor_v2_driver_init+0x0/0x30 returned 0 after 35 usecs
[ 0.135095] calling pl330_driver_init+0x0/0x2c @ 1
[ 0.135118] initcall pl330_driver_init+0x0/0x2c returned 0 after 11 usecs
[ 0.135130] calling hidma_mgmt_init+0x0/0x1f0 @ 1
[ 0.135233] initcall hidma_mgmt_init+0x0/0x1f0 returned 0 after 89 usecs
[ 0.135245] calling hidma_driver_init+0x0/0x30 @ 1
[ 0.135304] initcall hidma_driver_init+0x0/0x30 returned 0 after 47 usecs
[ 0.135317] calling dpaa2_console_driver_init+0x0/0x30 @ 1
[ 0.135367] initcall dpaa2_console_driver_init+0x0/0x30 returned 0 after 37 usecs
[ 0.135380] calling virtio_mmio_init+0x0/0x30 @ 1
[ 0.135430] initcall virtio_mmio_init+0x0/0x30 returned 0 after 37 usecs
[ 0.135443] calling virtio_pci_driver_init+0x0/0x38 @ 1
[ 0.135473] initcall virtio_pci_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 0.135486] calling virtio_balloon_driver_init+0x0/0x2c @ 1
[ 0.135507] initcall virtio_balloon_driver_init+0x0/0x2c returned 0 after 8 usecs
[ 0.135520] calling xenbus_probe_initcall+0x0/0x44 @ 1
[ 0.135532] initcall xenbus_probe_initcall+0x0/0x44 returned 0 after 0 usecs
[ 0.135544] calling xenbus_init+0x0/0x60 @ 1
[ 0.135554] initcall xenbus_init+0x0/0x60 returned -19 after 0 usecs
[ 0.135566] calling xenbus_backend_init+0x0/0x6c @ 1
[ 0.135577] initcall xenbus_backend_init+0x0/0x6c returned -19 after 0 usecs
[ 0.135589] calling evtchn_init+0x0/0x70 @ 1
[ 0.135600] initcall evtchn_init+0x0/0x70 returned -19 after 0 usecs
[ 0.135612] calling gntdev_init+0x0/0x78 @ 1
[ 0.135623] initcall gntdev_init+0x0/0x78 returned -19 after 0 usecs
[ 0.135634] calling gntalloc_init+0x0/0x60 @ 1
[ 0.135645] initcall gntalloc_init+0x0/0x60 returned -19 after 0 usecs
[ 0.135657] calling xenfs_init+0x0/0x40 @ 1
[ 0.135668] initcall xenfs_init+0x0/0x40 returned 0 after 0 usecs
[ 0.135679] calling hyper_sysfs_init+0x0/0x134 @ 1
[ 0.135691] initcall hyper_sysfs_init+0x0/0x134 returned -19 after 0 usecs
[ 0.135702] calling hypervisor_subsys_init+0x0/0x40 @ 1
[ 0.135714] initcall hypervisor_subsys_init+0x0/0x40 returned -19 after 0 usecs
[ 0.135727] calling privcmd_init+0x0/0x90 @ 1
[ 0.135738] initcall privcmd_init+0x0/0x90 returned -19 after 0 usecs
[ 0.135750] calling axp20x_regulator_driver_init+0x0/0x30 @ 1
[ 0.135783] initcall axp20x_regulator_driver_init+0x0/0x30 returned 0 after 23 usecs
[ 0.135795] calling bd718xx_regulator_init+0x0/0x30 @ 1
[ 0.135828] initcall bd718xx_regulator_init+0x0/0x30 returned 0 after 23 usecs
[ 0.135839] calling bd9571mwv_regulator_driver_init+0x0/0x30 @ 1
[ 0.135872] initcall bd9571mwv_regulator_driver_init+0x0/0x30 returned 0 after 22 usecs
[ 0.135884] calling fan53555_regulator_driver_init+0x0/0x30 @ 1
[ 0.135914] initcall fan53555_regulator_driver_init+0x0/0x30 returned 0 after 20 usecs
[ 0.135926] calling hi6421v530_regulator_driver_init+0x0/0x30 @ 1
[ 0.135962] initcall hi6421v530_regulator_driver_init+0x0/0x30 returned 0 after 25 usecs
[ 0.135974] calling max77620_regulator_driver_init+0x0/0x30 @ 1
[ 0.136008] initcall max77620_regulator_driver_init+0x0/0x30 returned 0 after 23 usecs
[ 0.136020] calling qcom_spmi_regulator_driver_init+0x0/0x30 @ 1
[ 0.136114] initcall qcom_spmi_regulator_driver_init+0x0/0x30 returned 0 after 82 usecs
[ 0.136126] calling pfuze_driver_init+0x0/0x30 @ 1
[ 0.136153] initcall pfuze_driver_init+0x0/0x30 returned 0 after 17 usecs
[ 0.136164] calling pwm_regulator_driver_init+0x0/0x30 @ 1
[ 0.136210] initcall pwm_regulator_driver_init+0x0/0x30 returned 0 after 36 usecs
[ 0.136221] calling rk808_regulator_driver_init+0x0/0x30 @ 1
[ 0.136256] initcall rk808_regulator_driver_init+0x0/0x30 returned 0 after 25 usecs
[ 0.136268] calling s2mps11_pmic_driver_init+0x0/0x30 @ 1
[ 0.136303] initcall s2mps11_pmic_driver_init+0x0/0x30 returned 0 after 25 usecs
[ 0.136314] calling brcm_rescal_reset_driver_init+0x0/0x30 @ 1
[ 0.136360] initcall brcm_rescal_reset_driver_init+0x0/0x30 returned 0 after 35 usecs
[ 0.136372] calling n_null_init+0x0/0x38 @ 1
[ 0.136382] initcall n_null_init+0x0/0x38 returned 0 after 0 usecs
[ 0.136391] calling pty_init+0x0/0x380 @ 1
[ 0.137691] initcall pty_init+0x0/0x380 returned 0 after 1260 usecs
[ 0.137707] calling sysrq_init+0x0/0x90 @ 1
[ 0.137730] initcall sysrq_init+0x0/0x90 returned 0 after 14 usecs
[ 0.137741] calling xen_hvc_init+0x0/0x298 @ 1
[ 0.137750] initcall xen_hvc_init+0x0/0x298 returned -19 after 0 usecs
[ 0.137760] calling serial8250_init+0x0/0x16c @ 1
[ 0.137770] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.138357] initcall serial8250_init+0x0/0x16c returned 0 after 573 usecs
[ 0.138372] calling serial_pci_driver_init+0x0/0x38 @ 1
[ 0.138412] initcall serial_pci_driver_init+0x0/0x38 returned 0 after 30 usecs
[ 0.138424] calling exar_pci_driver_init+0x0/0x38 @ 1
[ 0.138447] initcall exar_pci_driver_init+0x0/0x38 returned 0 after 13 usecs
[ 0.138458] calling fsl8250_platform_driver_init+0x0/0x30 @ 1
[ 0.138496] initcall fsl8250_platform_driver_init+0x0/0x30 returned 0 after 26 usecs
[ 0.138508] calling dw8250_platform_driver_init+0x0/0x30 @ 1
[ 0.138581] initcall dw8250_platform_driver_init+0x0/0x30 returned 0 after 62 usecs
[ 0.138594] calling of_platform_serial_driver_init+0x0/0x30 @ 1
[ 0.138869] 21c0500.serial: ttyS0 at MMIO 0x21c0500 (irq = 24, base_baud = 12500000) is a 16550A
[ 7.542134] printk: console [ttyS0] enabled
[ 7.546792] 21c0600.serial: ttyS1 at MMIO 0x21c0600 (irq = 24, base_baud = 12500000) is a 16550A
[ 7.555855] initcall of_platform_serial_driver_init+0x0/0x30 returned 0 after 7243409 usecs
[ 7.564262] calling lpuart_serial_init+0x0/0x6c @ 1
[ 7.569323] platform 2270000.serial: probe deferral - supplier 22c0000.dma-controller not ready
[ 7.578109] initcall lpuart_serial_init+0x0/0x6c returned 0 after 8648 usecs
[ 7.585195] calling init+0x0/0x124 @ 1
[ 7.589089] initcall init+0x0/0x124 returned 0 after 37 usecs
[ 7.594864] calling tpm_tis_i2c_driver_init+0x0/0x30 @ 1
[ 7.600318] initcall tpm_tis_i2c_driver_init+0x0/0x30 returned 0 after 28 usecs
[ 7.607664] calling arm_smmu_driver_init+0x0/0x30 @ 1
[ 7.613346] arm-smmu 5000000.iommu: probing hardware configuration...
[ 7.619819] arm-smmu 5000000.iommu: SMMUv2 with:
[ 7.624460] arm-smmu 5000000.iommu: stage 1 translation
[ 7.629795] arm-smmu 5000000.iommu: stage 2 translation
[ 7.635130] arm-smmu 5000000.iommu: nested translation
[ 7.640379] arm-smmu 5000000.iommu: stream matching with 128 register groups
[ 7.647549] arm-smmu 5000000.iommu: 64 context banks (0 stage-2 only)
[ 7.654108] arm-smmu 5000000.iommu: Supported page sizes: 0x61311000
[ 7.660577] arm-smmu 5000000.iommu: Stage-1: 48-bit VA -> 48-bit IPA
[ 7.667047] arm-smmu 5000000.iommu: Stage-2: 48-bit IPA -> 48-bit PA
[ 7.673805] initcall arm_smmu_driver_init+0x0/0x30 returned 0 after 59547 usecs
[ 7.681153] calling arm_smmu_driver_init+0x0/0x34 @ 1
[ 7.686361] initcall arm_smmu_driver_init+0x0/0x34 returned 0 after 40 usecs
[ 7.693445] calling drm_kms_helper_init+0x0/0x2c @ 1
[ 7.698522] initcall drm_kms_helper_init+0x0/0x2c returned 0 after 0 usecs
[ 7.705428] calling drm_core_init+0x0/0xc8 @ 1
[ 7.710000] initcall drm_core_init+0x0/0xc8 returned 0 after 18 usecs
[ 7.716474] calling topology_sysfs_init+0x0/0x48 @ 1
[ 7.721584] initcall topology_sysfs_init+0x0/0x48 returned 0 after 33 usecs
[ 7.728581] calling cacheinfo_sysfs_init+0x0/0x48 @ 1
[ 7.733885] initcall cacheinfo_sysfs_init+0x0/0x48 returned 0 after 137 usecs
[ 7.741061] calling devcoredump_init+0x0/0x38 @ 1
[ 7.745885] initcall devcoredump_init+0x0/0x38 returned 0 after 10 usecs
[ 7.752624] calling loop_init+0x0/0x160 @ 1
[ 7.760873] loop: module loaded
[ 7.764056] initcall loop_init+0x0/0x160 returned 0 after 6972 usecs
[ 7.770451] calling init+0x0/0xac @ 1
[ 7.774255] initcall init+0x0/0xac returned 0 after 35 usecs
[ 7.779944] calling xlblk_init+0x0/0x158 @ 1
[ 7.784323] initcall xlblk_init+0x0/0x158 returned -19 after 0 usecs
[ 7.790708] calling at24_init+0x0/0x6c @ 1
[ 7.795017] at24 0-0050: supply vcc not found, using dummy regulator
[ 7.801466] at24 0-0050: Linked as a consumer to regulator.0
[ 7.807945] at24 0-0050: 4096 byte 24c32 EEPROM, writable, 32 bytes/write
[ 7.814852] at24 1-0057: supply vcc not found, using dummy regulator
[ 7.821300] at24 1-0057: Linked as a consumer to regulator.0
[ 7.827752] at24 1-0057: 4096 byte 24c32 EEPROM, writable, 32 bytes/write
[ 7.834649] at24 2-0050: supply vcc not found, using dummy regulator
[ 7.841114] at24 2-0050: Linked as a consumer to regulator.0
[ 7.847564] at24 2-0050: 4096 byte 24c32 EEPROM, writable, 32 bytes/write
[ 7.854427] initcall at24_init+0x0/0x6c returned 0 after 58118 usecs
[ 7.860825] calling at25_driver_init+0x0/0x30 @ 1
[ 7.865655] initcall at25_driver_init+0x0/0x30 returned 0 after 11 usecs
[ 7.872392] calling bd9571mwv_driver_init+0x0/0x30 @ 1
[ 7.877668] initcall bd9571mwv_driver_init+0x0/0x30 returned 0 after 21 usecs
[ 7.884840] calling cros_ec_dev_init+0x0/0x94 @ 1
[ 7.889733] initcall cros_ec_dev_init+0x0/0x94 returned 0 after 76 usecs
[ 7.896470] calling axp20x_i2c_driver_init+0x0/0x30 @ 1
[ 7.901831] initcall axp20x_i2c_driver_init+0x0/0x30 returned 0 after 22 usecs
[ 7.909090] calling max77620_driver_init+0x0/0x30 @ 1
[ 7.914270] initcall max77620_driver_init+0x0/0x30 returned 0 after 15 usecs
[ 7.921354] calling rk808_i2c_driver_init+0x0/0x30 @ 1
[ 7.926625] initcall rk808_i2c_driver_init+0x0/0x30 returned 0 after 20 usecs
[ 7.933796] calling vexpress_sysreg_driver_init+0x0/0x30 @ 1
[ 7.939630] initcall vexpress_sysreg_driver_init+0x0/0x30 returned 0 after 54 usecs
[ 7.947326] calling hi6421_pmic_driver_init+0x0/0x30 @ 1
[ 7.952799] initcall hi6421_pmic_driver_init+0x0/0x30 returned 0 after 44 usecs
[ 7.960146] calling simple_mfd_i2c_driver_init+0x0/0x30 @ 1
[ 7.966642] platform leds: Linked as a sync state only consumer to 2000000.i2c:sl28cpld@4a:gpio@10
[ 7.975682] platform 2000000.i2c:sl28cpld@4a:gpio@10: Linked as a consumer to 2310000.gpio
[ 7.989839] platform leds: Linked as a sync state only consumer to 2000000.i2c:sl28cpld@4a:gpio@15
[ 7.998885] platform 2000000.i2c:sl28cpld@4a:gpio@15: Linked as a consumer to 2310000.gpio
[ 8.013134] platform buttons1: Linked as a sync state only consumer to 2000000.i2c:sl28cpld@4a:gpio@1b
[ 8.022758] platform buttons0: Linked as a sync state only consumer to 2000000.i2c:sl28cpld@4a:interrupt-controller@1c
[ 8.033540] platform 2000000.i2c:sl28cpld@4a:interrupt-controller@1c: Linked as a consumer to 2310000.gpio
[ 8.044098] initcall simple_mfd_i2c_driver_init+0x0/0x30 returned 0 after 76429 usecs
[ 8.051995] calling sas_transport_init+0x0/0xc8 @ 1
[ 8.057034] initcall sas_transport_init+0x0/0xc8 returned 0 after 42 usecs
[ 8.063961] calling sas_class_init+0x0/0x94 @ 1
[ 8.068620] initcall sas_class_init+0x0/0x94 returned 0 after 15 usecs
[ 8.075181] calling ufshcd_core_init+0x0/0x28 @ 1
[ 8.080002] initcall ufshcd_core_init+0x0/0x28 returned 0 after 6 usecs
[ 8.086650] calling init_sd+0x0/0x1a4 @ 1
[ 8.090805] initcall init_sd+0x0/0x1a4 returned 0 after 37 usecs
[ 8.096843] calling hisi_sas_init+0x0/0x98 @ 1
[ 8.101400] initcall hisi_sas_init+0x0/0x98 returned 0 after 3 usecs
[ 8.107785] calling hisi_sas_v1_driver_init+0x0/0x30 @ 1
[ 8.113304] initcall hisi_sas_v1_driver_init+0x0/0x30 returned 0 after 91 usecs
[ 8.120651] calling hisi_sas_v2_driver_init+0x0/0x30 @ 1
[ 8.126133] initcall hisi_sas_v2_driver_init+0x0/0x30 returned 0 after 52 usecs
[ 8.133480] calling sas_v3_pci_driver_init+0x0/0x38 @ 1
[ 8.138856] initcall sas_v3_pci_driver_init+0x0/0x38 returned 0 after 38 usecs
[ 8.146117] calling ahci_pci_driver_init+0x0/0x38 @ 1
[ 8.151298] initcall ahci_pci_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 8.158383] calling ahci_driver_init+0x0/0x30 @ 1
[ 8.163275] initcall ahci_driver_init+0x0/0x30 returned 0 after 75 usecs
[ 8.170010] calling sil24_pci_driver_init+0x0/0x38 @ 1
[ 8.175279] initcall sil24_pci_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 8.182452] calling ceva_ahci_driver_init+0x0/0x30 @ 1
[ 8.187751] initcall ceva_ahci_driver_init+0x0/0x30 returned 0 after 44 usecs
[ 8.194923] calling xgene_ahci_driver_init+0x0/0x30 @ 1
[ 8.200316] initcall xgene_ahci_driver_init+0x0/0x30 returned 0 after 53 usecs
[ 8.207576] calling ahci_qoriq_driver_init+0x0/0x30 @ 1
[ 8.213015] ahci-qoriq 3200000.sata: Adding to iommu group 0
[ 8.218831] ahci-qoriq 3200000.sata: supply ahci not found, using dummy regulator
[ 8.226431] ahci-qoriq 3200000.sata: Linked as a consumer to regulator.0
[ 8.233171] ahci-qoriq 3200000.sata: supply phy not found, using dummy regulator
[ 8.240633] ahci-qoriq 3200000.sata: supply target not found, using dummy regulator
[ 8.248414] ahci-qoriq 3200000.sata: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl platform mode
[ 8.257423] ahci-qoriq 3200000.sata: flags: 64bit ncq sntf pm clo only pmp fbs pio slum part ccc sds apst
[ 8.267588] scsi host0: ahci-qoriq
[ 8.271166] ata1: SATA max UDMA/133 mmio [mem 0x03200000-0x0320ffff] port 0x100 irq 31
[ 8.279248] initcall ahci_qoriq_driver_init+0x0/0x30 returned 0 after 64780 usecs
[ 8.286781] calling pata_platform_driver_init+0x0/0x30 @ 1
[ 8.292434] initcall pata_platform_driver_init+0x0/0x30 returned 0 after 49 usecs
[ 8.299956] calling pata_of_platform_driver_init+0x0/0x30 @ 1
[ 8.305871] initcall pata_of_platform_driver_init+0x0/0x30 returned 0 after 52 usecs
[ 8.313659] calling init_mtd+0x0/0x138 @ 1
[ 8.317945] initcall init_mtd+0x0/0x138 returned 0 after 79 usecs
[ 8.324075] calling ofpart_parser_init+0x0/0x4c @ 1
[ 8.329066] initcall ofpart_parser_init+0x0/0x4c returned 0 after 0 usecs
[ 8.335888] calling init_mtdblock+0x0/0x2c @ 1
[ 8.340444] initcall init_mtdblock+0x0/0x2c returned 0 after 3 usecs
[ 8.346829] calling denali_dt_driver_init+0x0/0x30 @ 1
[ 8.352143] initcall denali_dt_driver_init+0x0/0x30 returned 0 after 63 usecs
[ 8.359317] calling spi_nor_driver_init+0x0/0x30 @ 1
[ 8.364408] initcall spi_nor_driver_init+0x0/0x30 returned 0 after 14 usecs
[ 8.371409] calling fsl_dspi_driver_init+0x0/0x30 @ 1
[ 8.376611] platform 2120000.spi: probe deferral - supplier 22c0000.dma-controller not ready
[ 8.385166] initcall fsl_dspi_driver_init+0x0/0x30 returned 0 after 8391 usecs
[ 8.392426] calling nxp_fspi_driver_init+0x0/0x30 @ 1
[ 8.397950] spi-nor spi0.0: w25q32dw (4096 Kbytes)
[ 8.403027] 8 fixed-partitions partitions found on MTD device 20c0000.spi
[ 8.409854] Creating 8 MTD partitions on "20c0000.spi":
[ 8.415115] 0x000000000000-0x000000010000 : "rcw"
[ 8.422337] 0x000000010000-0x000000100000 : "failsafe bootloader"
[ 8.430296] 0x000000100000-0x000000140000 : "failsafe DP firmware"
[ 8.438280] 0x000000140000-0x0000001e0000 : "failsafe trusted firmware"
[ 8.446296] 0x0000001e0000-0x000000200000 : "reserved"
[ 8.454284] 0x000000200000-0x000000210000 : "configuration store"
[ 8.462302] 0x000000210000-0x0000003e0000 : "bootloader"
[ 8.470291] 0x0000003e0000-0x000000400000 : "bootloader environment"
[ 8.478423] initcall nxp_fspi_driver_init+0x0/0x30 returned 0 after 78937 usecs
[ 8.485790] calling rockchip_spi_driver_init+0x0/0x30 @ 1
[ 8.491433] initcall rockchip_spi_driver_init+0x0/0x30 returned 0 after 124 usecs
[ 8.498956] calling net_olddevs_init+0x0/0xa0 @ 1
[ 8.503778] initcall net_olddevs_init+0x0/0xa0 returned 0 after 6 usecs
[ 8.510429] calling blackhole_netdev_init+0x0/0x9c @ 1
[ 8.515692] initcall blackhole_netdev_init+0x0/0x9c returned 0 after 11 usecs
[ 8.522865] calling phy_module_init+0x0/0x34 @ 1
[ 8.527645] initcall phy_module_init+0x0/0x34 returned 0 after 51 usecs
[ 8.534295] calling phy_module_init+0x0/0x34 @ 1
[ 8.539036] initcall phy_module_init+0x0/0x34 returned 0 after 13 usecs
[ 8.545683] calling fixed_mdio_bus_init+0x0/0x124 @ 1
[ 8.551098] libphy: Fixed MDIO Bus: probed
[ 8.555213] initcall fixed_mdio_bus_init+0x0/0x124 returned 0 after 4264 usecs
[ 8.562472] calling phy_module_init+0x0/0x34 @ 1
[ 8.567335] initcall phy_module_init+0x0/0x34 returned 0 after 132 usecs
[ 8.574076] calling phy_module_init+0x0/0x34 @ 1
[ 8.578944] initcall phy_module_init+0x0/0x34 returned 0 after 136 usecs
[ 8.585679] calling phy_module_init+0x0/0x34 @ 1
[ 8.590415] initcall phy_module_init+0x0/0x34 returned 0 after 10 usecs
[ 8.597062] calling thunder_mdiobus_driver_init+0x0/0x38 @ 1
[ 8.600144] ata1: SATA link down (SStatus 0 SControl 300)
[ 8.602874] initcall thunder_mdiobus_driver_init+0x0/0x38 returned 0 after 36 usecs
[ 8.615949] calling mdio_mux_mmioreg_driver_init+0x0/0x30 @ 1
[ 8.621877] initcall mdio_mux_mmioreg_driver_init+0x0/0x30 returned 0 after 64 usecs
[ 8.629661] calling tun_init+0x0/0xd4 @ 1
[ 8.633777] tun: Universal TUN/TAP device driver, 1.6
[ 8.638936] initcall tun_init+0x0/0xd4 returned 0 after 5038 usecs
[ 8.645152] calling virtio_net_driver_init+0x0/0xc0 @ 1
[ 8.650507] initcall virtio_net_driver_init+0x0/0xc0 returned 0 after 17 usecs
[ 8.657767] calling can_dev_init+0x0/0x44 @ 1
[ 8.662233] CAN device driver interface
[ 8.666082] initcall can_dev_init+0x0/0x44 returned 0 after 3759 usecs
[ 8.672640] calling flexcan_driver_init+0x0/0x30 @ 1
[ 8.678221] initcall flexcan_driver_init+0x0/0x30 returned 0 after 493 usecs
[ 8.685314] calling felix_vsc9959_pci_driver_init+0x0/0x38 @ 1
[ 8.691298] initcall felix_vsc9959_pci_driver_init+0x0/0x38 returned 0 after 30 usecs
[ 8.699173] calling xgbe_mod_init+0x0/0x68 @ 1
[ 8.703804] initcall xgbe_mod_init+0x0/0x68 returned 0 after 74 usecs
[ 8.710279] calling macb_driver_init+0x0/0x30 @ 1
[ 8.715236] initcall macb_driver_init+0x0/0x30 returned 0 after 138 usecs
[ 8.722060] calling xcv_init_module+0x0/0x5c @ 1
[ 8.726788] thunder_xcv, ver 1.0
[ 8.730046] initcall xcv_init_module+0x0/0x5c returned 0 after 3182 usecs
[ 8.736869] calling bgx_init_module+0x0/0x5c @ 1
[ 8.741596] thunder_bgx, ver 1.0
[ 8.744858] initcall bgx_init_module+0x0/0x5c returned 0 after 3184 usecs
[ 8.751680] calling nic_init_module+0x0/0x5c @ 1
[ 8.756407] nicpf, ver 1.0
[ 8.759144] initcall nic_init_module+0x0/0x5c returned 0 after 2673 usecs
[ 8.765969] calling enetc_pf_driver_init+0x0/0x38 @ 1
[ 8.771149] initcall enetc_pf_driver_init+0x0/0x38 returned 0 after 15 usecs
[ 8.778234] calling enetc_pci_mdio_driver_init+0x0/0x38 @ 1
[ 8.783937] initcall enetc_pci_mdio_driver_init+0x0/0x38 returned 0 after 16 usecs
[ 8.791546] calling hix5hd2_dev_driver_init+0x0/0x30 @ 1
[ 8.797043] initcall hix5hd2_dev_driver_init+0x0/0x30 returned 0 after 70 usecs
[ 8.804391] calling hns_mdio_driver_init+0x0/0x30 @ 1
[ 8.809611] initcall hns_mdio_driver_init+0x0/0x30 returned 0 after 54 usecs
[ 8.816697] calling g_dsaf_driver_init+0x0/0x30 @ 1
[ 8.821740] initcall g_dsaf_driver_init+0x0/0x30 returned 0 after 50 usecs
[ 8.828650] calling hns_nic_dev_driver_init+0x0/0x30 @ 1
[ 8.834145] initcall hns_nic_dev_driver_init+0x0/0x30 returned 0 after 62 usecs
[ 8.841495] calling hclge_init+0x0/0x8c @ 1
[ 8.845790] hclge is initializing
[ 8.849126] initcall hclge_init+0x0/0x8c returned 0 after 3258 usecs
[ 8.855511] calling hns3_init_module+0x0/0xe4 @ 1
[ 8.860326] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[ 8.867580] hns3: Copyright (c) 2017 Huawei Corporation.
[ 8.872943] initcall hns3_init_module+0x0/0xe4 returned 0 after 12321 usecs
[ 8.879946] calling igb_init_module+0x0/0x68 @ 1
[ 8.884674] igb: Intel(R) Gigabit Ethernet Network Driver
[ 8.890094] igb: Copyright (c) 2007-2014 Intel Corporation.
[ 8.895706] initcall igb_init_module+0x0/0x68 returned 0 after 10773 usecs
[ 8.902616] calling orion_mdio_driver_init+0x0/0x30 @ 1
[ 8.908007] initcall orion_mdio_driver_init+0x0/0x30 returned 0 after 52 usecs
[ 8.915268] calling sky2_init_module+0x0/0x44 @ 1
[ 8.920082] sky2: driver version 1.30
[ 8.923778] initcall sky2_init_module+0x0/0x44 returned 0 after 3609 usecs
[ 8.930688] calling mscc_ocelot_driver_init+0x0/0x30 @ 1
[ 8.936161] initcall mscc_ocelot_driver_init+0x0/0x30 returned 0 after 46 usecs
[ 8.943511] calling rtl8169_pci_driver_init+0x0/0x38 @ 1
[ 8.948953] initcall rtl8169_pci_driver_init+0x0/0x38 returned 0 after 14 usecs
[ 8.956300] calling smc_driver_init+0x0/0x30 @ 1
[ 8.961080] initcall smc_driver_init+0x0/0x30 returned 0 after 51 usecs
[ 8.967729] calling smsc911x_init_module+0x0/0x30 @ 1
[ 8.972937] initcall smsc911x_init_module+0x0/0x30 returned 0 after 43 usecs
[ 8.980023] calling stmmac_init+0x0/0x60 @ 1
[ 8.984408] initcall stmmac_init+0x0/0x60 returned 0 after 6 usecs
[ 8.990623] calling netif_init+0x0/0x7c @ 1
[ 8.994915] initcall netif_init+0x0/0x7c returned -19 after 0 usecs
[ 9.001213] calling net_failover_init+0x0/0x18 @ 1
[ 9.006118] initcall net_failover_init+0x0/0x18 returned 0 after 0 usecs
[ 9.012853] calling vfio_init+0x0/0x18c @ 1
[ 9.017232] VFIO - User Level meta-driver version: 0.3
[ 9.022396] initcall vfio_init+0x0/0x18c returned 0 after 5128 usecs
[ 9.028782] calling vfio_virqfd_init+0x0/0x54 @ 1
[ 9.033691] initcall vfio_virqfd_init+0x0/0x54 returned 0 after 92 usecs
[ 9.040439] calling vfio_iommu_type1_init+0x0/0x2c @ 1
[ 9.045696] initcall vfio_iommu_type1_init+0x0/0x2c returned 0 after 1 usecs
[ 9.052783] calling vfio_pci_init+0x0/0x198 @ 1
[ 9.057463] initcall vfio_pci_init+0x0/0x198 returned 0 after 38 usecs
[ 9.064026] calling usb_conn_driver_init+0x0/0x30 @ 1
[ 9.069257] initcall usb_conn_driver_init+0x0/0x30 returned 0 after 64 usecs
[ 9.076343] calling dwc3_driver_init+0x0/0x30 @ 1
[ 9.081236] dwc3 3100000.usb: Adding to iommu group 1
[ 9.086752] dwc3 3110000.usb: Adding to iommu group 2
[ 9.092203] initcall dwc3_driver_init+0x0/0x30 returned 0 after 10785 usecs
[ 9.099211] calling dwc3_pci_driver_init+0x0/0x38 @ 1
[ 9.104411] initcall dwc3_pci_driver_init+0x0/0x38 returned 0 after 33 usecs
[ 9.111496] calling dwc3_haps_driver_init+0x0/0x38 @ 1
[ 9.116765] initcall dwc3_haps_driver_init+0x0/0x38 returned 0 after 15 usecs
[ 9.123940] calling dwc3_of_simple_driver_init+0x0/0x30 @ 1
[ 9.129729] initcall dwc3_of_simple_driver_init+0x0/0x30 returned 0 after 98 usecs
[ 9.137338] calling dwc2_platform_driver_init+0x0/0x30 @ 1
[ 9.143083] initcall dwc2_platform_driver_init+0x0/0x30 returned 0 after 140 usecs
[ 9.150697] calling isp1760_init+0x0/0x7c @ 1
[ 9.155383] initcall isp1760_init+0x0/0x7c returned 0 after 213 usecs
[ 9.161860] calling ehci_hcd_init+0x0/0xa8 @ 1
[ 9.166415] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 9.172971] initcall ehci_hcd_init+0x0/0xa8 returned 0 after 6402 usecs
[ 9.179618] calling ehci_pci_init+0x0/0x98 @ 1
[ 9.184171] ehci-pci: EHCI PCI platform driver
[ 9.188648] initcall ehci_pci_init+0x0/0x98 returned 0 after 4372 usecs
[ 9.195298] calling ehci_platform_init+0x0/0x70 @ 1
[ 9.200289] ehci-platform: EHCI generic platform driver
[ 9.205603] initcall ehci_platform_init+0x0/0x70 returned 0 after 5189 usecs
[ 9.212692] calling ohci_hcd_mod_init+0x0/0xb0 @ 1
[ 9.217596] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 9.223810] initcall ohci_hcd_mod_init+0x0/0xb0 returned 0 after 6068 usecs
[ 9.230809] calling ohci_pci_init+0x0/0x98 @ 1
[ 9.235362] ohci-pci: OHCI PCI platform driver
[ 9.239840] initcall ohci_pci_init+0x0/0x98 returned 0 after 4373 usecs
[ 9.246497] calling ohci_platform_init+0x0/0x70 @ 1
[ 9.251488] ohci-platform: OHCI generic platform driver
[ 9.256799] initcall ohci_platform_init+0x0/0x70 returned 0 after 5185 usecs
[ 9.263884] calling xhci_hcd_init+0x0/0x44 @ 1
[ 9.268441] initcall xhci_hcd_init+0x0/0x44 returned 0 after 4 usecs
[ 9.274829] calling xhci_pci_init+0x0/0x78 @ 1
[ 9.279400] initcall xhci_pci_init+0x0/0x78 returned 0 after 18 usecs
[ 9.285871] calling xhci_plat_init+0x0/0x44 @ 1
[ 9.290697] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 9.296220] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
[ 9.304091] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x0000000002010010
[ 9.313556] xhci-hcd xhci-hcd.0.auto: irq 29, io mem 0x03100000
[ 9.319917] hub 1-0:1.0: USB hub found
[ 9.323701] hub 1-0:1.0: 1 port detected
[ 9.327802] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
[ 9.333321] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2
[ 9.341022] xhci-hcd xhci-hcd.0.auto: Host supports USB 3.0 SuperSpeed
[ 9.347623] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 9.356004] hub 2-0:1.0: USB hub found
[ 9.359785] hub 2-0:1.0: 1 port detected
[ 9.363943] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 9.369466] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3
[ 9.377335] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f66d hci version 0x100 quirks 0x0000000002010010
[ 9.386800] xhci-hcd xhci-hcd.1.auto: irq 30, io mem 0x03110000
[ 9.393117] hub 3-0:1.0: USB hub found
[ 9.396900] hub 3-0:1.0: 1 port detected
[ 9.400990] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
[ 9.406509] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4
[ 9.414206] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed
[ 9.420799] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 9.429174] hub 4-0:1.0: USB hub found
[ 9.432965] hub 4-0:1.0: 1 port detected
[ 9.437083] initcall xhci_plat_init+0x0/0x44 returned 0 after 143138 usecs
[ 9.444001] calling usb_storage_driver_init+0x0/0x54 @ 1
[ 9.449487] usbcore: registered new interface driver usb-storage
[ 9.455522] initcall usb_storage_driver_init+0x0/0x54 returned 0 after 5953 usecs
[ 9.463044] calling usb3503_init+0x0/0x74 @ 1
[ 9.467662] initcall usb3503_init+0x0/0x74 returned 0 after 143 usecs
[ 9.474137] calling musb_driver_init+0x0/0x34 @ 1
[ 9.478982] initcall musb_driver_init+0x0/0x34 returned 0 after 31 usecs
[ 9.485716] calling ci_hdrc_platform_register+0x0/0x38 @ 1
[ 9.491345] initcall ci_hdrc_platform_register+0x0/0x38 returned 0 after 30 usecs
[ 9.498864] calling ci_hdrc_usb2_driver_init+0x0/0x30 @ 1
[ 9.504444] initcall ci_hdrc_usb2_driver_init+0x0/0x30 returned 0 after 60 usecs
[ 9.511878] calling ci_hdrc_msm_driver_init+0x0/0x30 @ 1
[ 9.517349] initcall ci_hdrc_msm_driver_init+0x0/0x30 returned 0 after 45 usecs
[ 9.524696] calling ci_hdrc_pci_driver_init+0x0/0x38 @ 1
[ 9.530148] initcall ci_hdrc_pci_driver_init+0x0/0x38 returned 0 after 27 usecs
[ 9.537494] calling ci_hdrc_imx_driver_init+0x0/0x30 @ 1
[ 9.543026] initcall ci_hdrc_imx_driver_init+0x0/0x30 returned 0 after 101 usecs
[ 9.550458] calling usbmisc_imx_driver_init+0x0/0x30 @ 1
[ 9.555996] initcall usbmisc_imx_driver_init+0x0/0x30 returned 0 after 111 usecs
[ 9.563428] calling tegra_usb_driver_init+0x0/0x30 @ 1
[ 9.568756] initcall tegra_usb_driver_init+0x0/0x30 returned 0 after 77 usecs
[ 9.575925] calling gadget_cfs_init+0x0/0x40 @ 1
[ 9.580698] initcall gadget_cfs_init+0x0/0x40 returned 0 after 43 usecs
[ 9.587350] calling udc_plat_driver_init+0x0/0x30 @ 1
[ 9.592577] initcall udc_plat_driver_init+0x0/0x30 returned 0 after 62 usecs
[ 9.599660] calling bdc_driver_init+0x0/0x30 @ 1
[ 9.604439] initcall bdc_driver_init+0x0/0x30 returned 0 after 52 usecs
[ 9.611097] calling bdc_pci_driver_init+0x0/0x38 @ 1
[ 9.616197] initcall bdc_pci_driver_init+0x0/0x38 returned 0 after 23 usecs
[ 9.623192] calling acmmod_init+0x0/0x2c @ 1
[ 9.627570] initcall acmmod_init+0x0/0x2c returned 0 after 0 usecs
[ 9.633777] calling userial_init+0x0/0x170 @ 1
[ 9.638338] initcall userial_init+0x0/0x170 returned 0 after 3 usecs
[ 9.644722] calling gsermod_init+0x0/0x2c @ 1
[ 9.649189] initcall gsermod_init+0x0/0x2c returned 0 after 0 usecs
[ 9.655485] calling obexmod_init+0x0/0x2c @ 1
[ 9.659949] initcall obexmod_init+0x0/0x2c returned 0 after 0 usecs
[ 9.666253] calling ecmmod_init+0x0/0x2c @ 1
[ 9.670631] initcall ecmmod_init+0x0/0x2c returned 0 after 0 usecs
[ 9.676839] calling gethmod_init+0x0/0x2c @ 1
[ 9.681302] initcall gethmod_init+0x0/0x2c returned 0 after 0 usecs
[ 9.687597] calling rndismod_init+0x0/0x2c @ 1
[ 9.692149] initcall rndismod_init+0x0/0x2c returned 0 after 0 usecs
[ 9.698531] calling mass_storagemod_init+0x0/0x30 @ 1
[ 9.703694] initcall mass_storagemod_init+0x0/0x30 returned 0 after 0 usecs
[ 9.710691] calling eth_driver_init+0x0/0x2c @ 1
[ 9.715418] udc-core: couldn't find an available UDC - added [g_ether] to list of pending drivers
[ 9.724331] initcall eth_driver_init+0x0/0x2c returned 0 after 8705 usecs
[ 9.731150] calling msg_driver_init+0x0/0x2c @ 1
[ 9.735875] udc-core: couldn't find an available UDC - added [g_mass_storage] to list of pending drivers
[ 9.737943] usb 3-1: new high-speed USB device number 2 using xhci-hcd
[ 9.745398] initcall msg_driver_init+0x0/0x2c returned 0 after 9299 usecs
[ 9.758774] calling init+0x0/0xd4 @ 1
[ 9.762566] udc-core: couldn't find an available UDC - added [g_serial] to list of pending drivers
[ 9.771575] initcall init+0x0/0xd4 returned 0 after 8798 usecs
[ 9.777439] calling ambakmi_driver_init+0x0/0x2c @ 1
[ 9.782531] initcall ambakmi_driver_init+0x0/0x2c returned 0 after 16 usecs
[ 9.789525] calling input_leds_init+0x0/0x2c @ 1
[ 9.794252] initcall input_leds_init+0x0/0x2c returned 0 after 0 usecs
[ 9.800810] calling evdev_init+0x0/0x2c @ 1
[ 9.805098] initcall evdev_init+0x0/0x2c returned 0 after 0 usecs
[ 9.811219] calling atkbd_init+0x0/0x48 @ 1
[ 9.815547] initcall atkbd_init+0x0/0x48 returned 0 after 32 usecs
[ 9.821762] calling cros_ec_keyb_driver_init+0x0/0x30 @ 1
[ 9.827366] initcall cros_ec_keyb_driver_init+0x0/0x30 returned 0 after 79 usecs
[ 9.834803] calling gpio_keys_polled_driver_init+0x0/0x30 @ 1
[ 9.840824] input: buttons1 as /devices/platform/buttons1/input/input0
[ 9.848159] initcall gpio_keys_polled_driver_init+0x0/0x30 returned 0 after 7319 usecs
[ 9.856136] calling psmouse_init+0x0/0xa4 @ 1
[ 9.860659] initcall psmouse_init+0x0/0xa4 returned 0 after 49 usecs
[ 9.867057] calling xenkbd_init+0x0/0x58 @ 1
[ 9.871436] initcall xenkbd_init+0x0/0x58 returned -19 after 0 usecs
[ 9.877819] calling cros_ec_rtc_driver_init+0x0/0x30 @ 1
[ 9.883287] initcall cros_ec_rtc_driver_init+0x0/0x30 returned 0 after 43 usecs
[ 9.890641] calling ds323x_init+0x0/0x88 @ 1
[ 9.895070] initcall ds323x_init+0x0/0x88 returned 0 after 41 usecs
[ 9.901371] calling efi_rtc_driver_init+0x0/0x38 @ 1
[ 9.906483] initcall efi_rtc_driver_init+0x0/0x38 returned -19 after 36 usecs
[ 9.913654] calling ftm_alarm_init+0x0/0x30 @ 1
[ 9.918744] ftm-alarm 2800000.timer: registered as rtc1
[ 9.924062] initcall ftm_alarm_init+0x0/0x30 returned 0 after 5612 usecs
[ 9.930801] calling max77686_rtc_driver_init+0x0/0x30 @ 1
[ 9.936372] initcall max77686_rtc_driver_init+0x0/0x30 returned 0 after 50 usecs
[ 9.943815] calling pl031_driver_init+0x0/0x2c @ 1
[ 9.948732] initcall pl031_driver_init+0x0/0x2c returned 0 after 14 usecs
[ 9.955557] calling rv8803_driver_init+0x0/0x30 @ 1
[ 9.961178] rtc-rv8803 0-0032: Voltage low, temperature compensation stopped.
[ 9.968359] rtc-rv8803 0-0032: Voltage low, data loss detected.
[ 9.974389] hub 3-1:1.0: USB hub found
[ 9.975394] rtc-rv8803 0-0032: Voltage low, data is invalid.
[ 9.983867] hub 3-1:1.0: 7 ports detected
[ 9.985983] rtc-rv8803 0-0032: registered as rtc0
[ 9.993207] rtc-rv8803 0-0032: Voltage low, data is invalid.
[ 9.998906] rtc-rv8803 0-0032: hctosys: unable to read the hardware clock
[ 10.005869] initcall rv8803_driver_init+0x0/0x30 returned 0 after 44261 usecs
[ 10.013049] calling s5m_rtc_driver_init+0x0/0x30 @ 1
[ 10.018186] initcall s5m_rtc_driver_init+0x0/0x30 returned 0 after 54 usecs
[ 10.025183] calling i2c_dev_init+0x0/0xf0 @ 1
[ 10.029655] i2c /dev entries driver
[ 10.033371] initcall i2c_dev_init+0x0/0xf0 returned 0 after 3629 usecs
[ 10.039947] calling rk3x_i2c_driver_init+0x0/0x30 @ 1
[ 10.045261] initcall rk3x_i2c_driver_init+0x0/0x30 returned 0 after 133 usecs
[ 10.052453] calling ec_i2c_tunnel_driver_init+0x0/0x30 @ 1
[ 10.058134] initcall ec_i2c_tunnel_driver_init+0x0/0x30 returned 0 after 69 usecs
[ 10.065656] calling pca954x_driver_init+0x0/0x30 @ 1
[ 10.070764] initcall pca954x_driver_init+0x0/0x30 returned 0 after 31 usecs
[ 10.077764] calling vexpress_reset_driver_init+0x0/0x30 @ 1
[ 10.083519] initcall vexpress_reset_driver_init+0x0/0x30 returned 0 after 63 usecs
[ 10.091128] calling xgene_reboot_init+0x0/0x30 @ 1
[ 10.096079] initcall xgene_reboot_init+0x0/0x30 returned 0 after 46 usecs
[ 10.102900] calling syscon_reboot_driver_init+0x0/0x30 @ 1
[ 10.108656] initcall syscon_reboot_driver_init+0x0/0x30 returned 0 after 153 usecs
[ 10.116267] calling syscon_reboot_mode_driver_init+0x0/0x30 @ 1
[ 10.122351] initcall syscon_reboot_mode_driver_init+0x0/0x30 returned 0 after 48 usecs
[ 10.130308] calling bq27xxx_battery_i2c_driver_init+0x0/0x30 @ 1
[ 10.136473] initcall bq27xxx_battery_i2c_driver_init+0x0/0x30 returned 0 after 40 usecs
[ 10.144520] calling scpi_hwmon_platdrv_init+0x0/0x30 @ 1
[ 10.150002] initcall scpi_hwmon_platdrv_init+0x0/0x30 returned 0 after 54 usecs
[ 10.157348] calling sl28cpld_hwmon_driver_init+0x0/0x30 @ 1
[ 10.163264] initcall sl28cpld_hwmon_driver_init+0x0/0x30 returned 0 after 202 usecs
[ 10.170990] calling qoriq_tmu_init+0x0/0x30 @ 1
[ 10.189106] initcall qoriq_tmu_init+0x0/0x30 returned 0 after 13131 usecs
[ 10.195939] calling sp805_wdt_driver_init+0x0/0x2c @ 1
[ 10.201364] sp805-wdt c000000.watchdog: registration successful
[ 10.207415] sp805-wdt c010000.watchdog: registration successful
[ 10.213393] initcall sp805_wdt_driver_init+0x0/0x2c returned 0 after 11916 usecs
[ 10.220828] calling dw_wdt_driver_init+0x0/0x30 @ 1
[ 10.225880] initcall dw_wdt_driver_init+0x0/0x30 returned 0 after 61 usecs
[ 10.232790] calling imx2_wdt_driver_init+0x0/0x38 @ 1
[ 10.238009] initcall imx2_wdt_driver_init+0x0/0x38 returned -19 after 55 usecs
[ 10.245270] calling sl28cpld_wdt_driver_init+0x0/0x30 @ 1
[ 10.252587] sl28cpld-wdt 2000000.i2c:sl28cpld@4a:watchdog@4: initial timeout 6 sec
[ 10.260234] initcall sl28cpld_wdt_driver_init+0x0/0x30 returned 0 after 9227 usecs
[ 10.267858] calling dt_cpufreq_platdrv_init+0x0/0x30 @ 1
[ 10.273319] initcall dt_cpufreq_platdrv_init+0x0/0x30 returned 0 after 33 usecs
[ 10.280689] calling scpi_cpufreq_platdrv_init+0x0/0x30 @ 1
[ 10.286334] initcall scpi_cpufreq_platdrv_init+0x0/0x30 returned 0 after 36 usecs
[ 10.293865] calling qoriq_cpufreq_platform_driver_init+0x0/0x30 @ 1
[ 10.300644] qoriq-cpufreq qoriq-cpufreq: Freescale QorIQ CPU frequency scaling driver
[ 10.308555] initcall qoriq_cpufreq_platform_driver_init+0x0/0x30 returned 0 after 8110 usecs
[ 10.317066] calling arm_idle_init+0x0/0x190 @ 1
[ 10.321730] initcall arm_idle_init+0x0/0x190 returned -95 after 12 usecs
[ 10.328466] calling psci_idle_init+0x0/0xc0 @ 1
[ 10.333282] initcall psci_idle_init+0x0/0xc0 returned 0 after 173 usecs
[ 10.339934] calling mmc_pwrseq_simple_driver_init+0x0/0x30 @ 1
[ 10.345948] initcall mmc_pwrseq_simple_driver_init+0x0/0x30 returned 0 after 62 usecs
[ 10.353818] calling mmc_pwrseq_emmc_driver_init+0x0/0x30 @ 1
[ 10.359644] initcall mmc_pwrseq_emmc_driver_init+0x0/0x30 returned 0 after 50 usecs
[ 10.367339] calling mmc_blk_init+0x0/0x124 @ 1
[ 10.371917] initcall mmc_blk_init+0x0/0x124 returned 0 after 24 usecs
[ 10.377945] usb 3-1.6: new full-speed USB device number 3 using xhci-hcd
[ 10.378391] calling mmci_driver_init+0x0/0x30 @ 1
[ 10.389946] initcall mmci_driver_init+0x0/0x30 returned 0 after 18 usecs
[ 10.396703] calling sdhci_drv_init+0x0/0x3c @ 1
[ 10.401369] sdhci: Secure Digital Host Controller Interface driver
[ 10.407577] sdhci: Copyright(c) Pierre Ossman
[ 10.411951] initcall sdhci_drv_init+0x0/0x3c returned 0 after 10346 usecs
[ 10.418773] calling sdhci_acpi_driver_init+0x0/0x30 @ 1
[ 10.424174] initcall sdhci_acpi_driver_init+0x0/0x30 returned 0 after 46 usecs
[ 10.431432] calling sdhci_f_sdh30_driver_init+0x0/0x30 @ 1
[ 10.437084] initcall sdhci_f_sdh30_driver_init+0x0/0x30 returned 0 after 50 usecs
[ 10.444607] calling mmc_spi_driver_init+0x0/0x30 @ 1
[ 10.449728] initcall mmc_spi_driver_init+0x0/0x30 returned 0 after 15 usecs
[ 10.456725] calling dw_mci_init+0x0/0x30 @ 1
[ 10.461103] Synopsys Designware Multimedia Card Interface Driver
[ 10.467134] initcall dw_mci_init+0x0/0x30 returned 0 after 5890 usecs
[ 10.473605] calling dw_mci_pltfm_driver_init+0x0/0x30 @ 1
[ 10.479182] initcall dw_mci_pltfm_driver_init+0x0/0x30 returned 0 after 65 usecs
[ 10.486616] calling dw_mci_exynos_pltfm_driver_init+0x0/0x30 @ 1
[ 10.492825] initcall dw_mci_exynos_pltfm_driver_init+0x0/0x30 returned 0 after 76 usecs
[ 10.500877] calling dw_mci_hi3798cv200_driver_init+0x0/0x30 @ 1
[ 10.506967] initcall dw_mci_hi3798cv200_driver_init+0x0/0x30 returned 0 after 49 usecs
[ 10.514929] calling dw_mci_k3_pltfm_driver_init+0x0/0x30 @ 1
[ 10.520769] initcall dw_mci_k3_pltfm_driver_init+0x0/0x30 returned 0 after 61 usecs
[ 10.528483] calling sdhci_pltfm_drv_init+0x0/0x30 @ 1
[ 10.533663] sdhci-pltfm: SDHCI platform and OF driver helper
[ 10.539362] initcall sdhci_pltfm_drv_init+0x0/0x30 returned 0 after 5565 usecs
[ 10.546636] calling sdhci_cdns_driver_init+0x0/0x30 @ 1
[ 10.552050] initcall sdhci_cdns_driver_init+0x0/0x30 returned 0 after 57 usecs
[ 10.559327] calling sdhci_arasan_driver_init+0x0/0x30 @ 1
[ 10.564965] initcall sdhci_arasan_driver_init+0x0/0x30 returned 0 after 107 usecs
[ 10.572491] calling sdhci_esdhc_driver_init+0x0/0x30 @ 1
[ 10.578046] initcall sdhci_esdhc_driver_init+0x0/0x30 returned 0 after 120 usecs
[ 10.578050] sdhci-esdhc 2140000.mmc: Adding to iommu group 3
[ 10.578284] sdhci-esdhc 2150000.mmc: Adding to iommu group 4
[ 10.585484] calling sdhci_xenon_driver_init+0x0/0x30 @ 1
[ 10.602413] initcall sdhci_xenon_driver_init+0x0/0x30 returned 0 after 124 usecs
[ 10.609876] calling gpio_led_driver_init+0x0/0x30 @ 1
[ 10.614484] mmc1: SDHCI controller on 2140000.mmc [2140000.mmc] using ADMA
[ 10.619830] initcall gpio_led_driver_init+0x0/0x30 returned 0 after 4661 usecs
[ 10.621951] mmc0: SDHCI controller on 2150000.mmc [2150000.mmc] using ADMA
[ 10.629222] calling led_pwm_driver_init+0x0/0x30 @ 1
[ 10.641399] initcall led_pwm_driver_init+0x0/0x30 returned 0 after 171 usecs
[ 10.648543] calling syscon_led_driver_init+0x0/0x30 @ 1
[ 10.653978] initcall syscon_led_driver_init+0x0/0x30 returned 0 after 82 usecs
[ 10.661258] calling ledtrig_disk_init+0x0/0x74 @ 1
[ 10.666179] initcall ledtrig_disk_init+0x0/0x74 returned 0 after 14 usecs
[ 10.673044] calling heartbeat_trig_init+0x0/0x5c @ 1
[ 10.678189] initcall heartbeat_trig_init+0x0/0x5c returned 0 after 57 usecs
[ 10.685267] calling ledtrig_cpu_init+0x0/0x130 @ 1
[ 10.690264] ledtrig-cpu: registered to indicate activity on CPUs
[ 10.696366] initcall ledtrig_cpu_init+0x0/0x130 returned 0 after 6042 usecs
[ 10.703402] calling defon_led_trigger_init+0x0/0x2c @ 1
[ 10.708811] initcall defon_led_trigger_init+0x0/0x2c returned 0 after 60 usecs
[ 10.716123] calling ledtrig_panic_init+0x0/0x5c @ 1
[ 10.721164] initcall ledtrig_panic_init+0x0/0x5c returned 0 after 34 usecs
[ 10.728110] calling scpi_driver_init+0x0/0x30 @ 1
[ 10.733010] initcall scpi_driver_init+0x0/0x30 returned 0 after 74 usecs
[ 10.739772] calling scpi_power_domain_driver_init+0x0/0x30 @ 1
[ 10.745796] initcall scpi_power_domain_driver_init+0x0/0x30 returned 0 after 60 usecs
[ 10.753665] random: fast init done
[ 10.757105] calling esrt_sysfs_init+0x0/0x2b0 @ 1
[ 10.761941] initcall esrt_sysfs_init+0x0/0x2b0 returned -38 after 4 usecs
[ 10.768812] calling efivars_pstore_init+0x0/0xd8 @ 1
[ 10.773901] initcall efivars_pstore_init+0x0/0xd8 returned 0 after 0 usecs
[ 10.780820] calling efi_capsule_loader_init+0x0/0x68 @ 1
[ 10.786247] initcall efi_capsule_loader_init+0x0/0x68 returned -19 after 0 usecs
[ 10.793690] calling smccc_soc_init+0x0/0x27c @ 1
[ 10.798424] initcall smccc_soc_init+0x0/0x27c returned 0 after 0 usecs
[ 10.804985] calling meson_crypto_driver_init+0x0/0x30 @ 1
[ 10.810589] initcall meson_crypto_driver_init+0x0/0x30 returned 0 after 68 usecs
[ 10.818057] calling hid_init+0x0/0x6c @ 1
[ 10.822209] initcall hid_init+0x0/0x6c returned 0 after 22 usecs
[ 10.828255] calling hid_generic_init+0x0/0x38 @ 1
[ 10.833114] initcall hid_generic_init+0x0/0x38 returned 0 after 37 usecs
[ 10.839860] calling a4_driver_init+0x0/0x38 @ 1
[ 10.844579] initcall a4_driver_init+0x0/0x38 returned 0 after 46 usecs
[ 10.851176] calling apple_driver_init+0x0/0x38 @ 1
[ 10.856113] initcall apple_driver_init+0x0/0x38 returned 0 after 24 usecs
[ 10.862943] calling belkin_driver_init+0x0/0x38 @ 1
[ 10.867960] initcall belkin_driver_init+0x0/0x38 returned 0 after 16 usecs
[ 10.874882] calling ch_driver_init+0x0/0x38 @ 1
[ 10.879555] initcall ch_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 10.886145] calling ch_driver_init+0x0/0x38 @ 1
[ 10.890821] initcall ch_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 10.897412] calling cp_driver_init+0x0/0x38 @ 1
[ 10.902091] initcall cp_driver_init+0x0/0x38 returned 0 after 23 usecs
[ 10.905944] usb 3-1.3: new high-speed USB device number 4 using xhci-hcd
[ 10.908678] calling ez_driver_init+0x0/0x38 @ 1
[ 10.920062] initcall ez_driver_init+0x0/0x38 returned 0 after 30 usecs
[ 10.926664] calling ite_driver_init+0x0/0x38 @ 1
[ 10.931432] initcall ite_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 10.938108] calling ks_driver_init+0x0/0x38 @ 1
[ 10.942781] initcall ks_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 10.949352] calling lg_driver_init+0x0/0x38 @ 1
[ 10.954022] initcall lg_driver_init+0x0/0x38 returned 0 after 17 usecs
[ 10.960625] calling lg_g15_driver_init+0x0/0x38 @ 1
[ 10.965653] initcall lg_g15_driver_init+0x0/0x38 returned 0 after 19 usecs
[ 10.972573] calling ms_driver_init+0x0/0x38 @ 1
[ 10.977243] initcall ms_driver_init+0x0/0x38 returned 0 after 20 usecs
[ 10.983816] calling mr_driver_init+0x0/0x38 @ 1
[ 10.988489] initcall mr_driver_init+0x0/0x38 returned 0 after 18 usecs
[ 10.989473] mmc1: new ultra high speed SDR104 SDHC card at address 5048
[ 10.995050] calling redragon_driver_init+0x0/0x38 @ 1
[ 11.002122] mmcblk1: mmc1:5048 SD16G 14.4 GiB
[ 11.006899] initcall redragon_driver_init+0x0/0x38 returned 0 after 32 usecs
[ 11.018481] calling hid_init+0x0/0x84 @ 1
[ 11.022618] mmc0: new HS400 MMC card at address 0001
[ 11.023022] mmcblk0: mmc0:0001 S0J58X 29.6 GiB
[ 11.028965] hid-generic 0003:064F:2AF9.0001: device has no listeners, quitting
[ 11.032658] mmcblk0boot0: mmc0:0001 S0J58X partition 1 31.5 MiB
[ 11.039661] usbcore: registered new interface driver usbhid
[ 11.045740] mmcblk0boot1: mmc0:0001 S0J58X partition 2 31.5 MiB
[ 11.051044] usbhid: USB HID core driver
[ 11.057120] mmcblk0rpmb: mmc0:0001 S0J58X partition 3 4.00 MiB, chardev (241:0)
[ 11.060873] initcall hid_init+0x0/0x84 returned 0 after 32476 usecs
[ 11.074530] calling cros_ec_driver_init+0x0/0x30 @ 1
[ 11.079688] initcall cros_ec_driver_init+0x0/0x30 returned 0 after 44 usecs
[ 11.086761] calling cros_ec_driver_spi_init+0x0/0x30 @ 1
[ 11.086859] mmcblk0: p1 p2
[ 11.092253] initcall cros_ec_driver_spi_init+0x0/0x30 returned 0 after 36 usecs
[ 11.102435] calling cros_ec_chardev_driver_init+0x0/0x30 @ 1
[ 11.108415] initcall cros_ec_chardev_driver_init+0x0/0x30 returned 0 after 164 usecs
[ 11.116249] calling cros_ec_lightbar_driver_init+0x0/0x30 @ 1
[ 11.122200] initcall cros_ec_lightbar_driver_init+0x0/0x30 returned 0 after 59 usecs
[ 11.130040] calling cros_ec_vbc_driver_init+0x0/0x30 @ 1
[ 11.135586] initcall cros_ec_vbc_driver_init+0x0/0x30 returned 0 after 79 usecs
[ 11.142961] calling cros_ec_debugfs_driver_init+0x0/0x30 @ 1
[ 11.148832] initcall cros_ec_debugfs_driver_init+0x0/0x30 returned 0 after 80 usecs
[ 11.156560] calling cros_ec_sensorhub_driver_init+0x0/0x30 @ 1
[ 11.156635] usb-storage 3-1.3:1.0: USB Mass Storage device detected
[ 11.162574] initcall cros_ec_sensorhub_driver_init+0x0/0x30 returned 0 after 47 usecs
[ 11.169076] scsi host1: usb-storage 3-1.3:1.0
[ 11.176720] calling cros_ec_sysfs_driver_init+0x0/0x34 @ 1
[ 11.186772] initcall cros_ec_sysfs_driver_init+0x0/0x34 returned 0 after 76 usecs
[ 11.194316] calling cros_usbpd_notify_init+0x0/0x50 @ 1
[ 11.199768] initcall cros_usbpd_notify_init+0x0/0x50 returned 0 after 98 usecs
[ 11.207047] calling arm_mhu_driver_init+0x0/0x2c @ 1
[ 11.212148] initcall arm_mhu_driver_init+0x0/0x2c returned 0 after 17 usecs
[ 11.219181] calling arm_mhu_db_driver_init+0x0/0x2c @ 1
[ 11.219193] GPT:Primary header thinks Alt. header is not at the end of the disk.
[ 11.224534] initcall arm_mhu_db_driver_init+0x0/0x2c returned 0 after 12 usecs
[ 11.231950] GPT:266272 != 30253055
[ 11.239203] calling platform_mhu_driver_init+0x0/0x30 @ 1
[ 11.242623] GPT:Alternate GPT header not at the end of the disk.
[ 11.248207] initcall platform_mhu_driver_init+0x0/0x30 returned 0 after 74 usecs
[ 11.254156] GPT:266272 != 30253055
[ 11.254159] GPT: Use GNU Parted to correct GPT errors.
[ 11.254175] mmcblk1: p1
[ 11.261593] calling qcom_glink_ssr_driver_init+0x0/0x34 @ 1
[ 11.278385] initcall qcom_glink_ssr_driver_init+0x0/0x34 returned 0 after 12 usecs
[ 11.285996] calling extcon_class_init+0x0/0x38 @ 1
[ 11.290909] initcall extcon_class_init+0x0/0x38 returned 0 after 10 usecs
[ 11.297729] calling usb_extcon_driver_init+0x0/0x30 @ 1
[ 11.303141] initcall usb_extcon_driver_init+0x0/0x30 returned 0 after 74 usecs
[ 11.310400] calling extcon_cros_ec_driver_init+0x0/0x30 @ 1
[ 11.316139] initcall extcon_cros_ec_driver_init+0x0/0x30 returned 0 after 51 usecs
[ 11.323747] calling hisi_l3c_pmu_module_init+0x0/0x98 @ 1
[ 11.329291] initcall hisi_l3c_pmu_module_init+0x0/0x98 returned 0 after 31 usecs
[ 11.336725] calling hisi_hha_pmu_module_init+0x0/0x98 @ 1
[ 11.342268] initcall hisi_hha_pmu_module_init+0x0/0x98 returned 0 after 31 usecs
[ 11.349701] calling hisi_ddrc_pmu_module_init+0x0/0x98 @ 1
[ 11.355331] initcall hisi_ddrc_pmu_module_init+0x0/0x98 returned 0 after 30 usecs
[ 11.362850] calling optee_driver_init+0x0/0x30 @ 1
[ 11.367800] initcall optee_driver_init+0x0/0x30 returned 0 after 48 usecs
[ 11.374622] calling alsa_timer_init+0x0/0x23c @ 1
[ 11.379532] initcall alsa_timer_init+0x0/0x23c returned 0 after 94 usecs
[ 11.386273] calling alsa_pcm_init+0x0/0x8c @ 1
[ 11.390828] initcall alsa_pcm_init+0x0/0x8c returned 0 after 3 usecs
[ 11.397211] calling snd_soc_init+0x0/0x98 @ 1
[ 11.401917] initcall snd_soc_init+0x0/0x98 returned 0 after 236 usecs
[ 11.408393] calling wm8904_i2c_driver_init+0x0/0x30 @ 1
[ 11.413759] initcall wm8904_i2c_driver_init+0x0/0x30 returned 0 after 28 usecs
[ 11.421017] calling asoc_simple_card_init+0x0/0x30 @ 1
[ 11.426330] initcall asoc_simple_card_init+0x0/0x30 returned 0 after 62 usecs
[ 11.433500] calling fsl_sai_driver_init+0x0/0x30 @ 1
[ 11.438658] initcall fsl_sai_driver_init+0x0/0x30 returned 0 after 82 usecs
[ 11.445653] calling sock_diag_init+0x0/0x54 @ 1
[ 11.450313] initcall sock_diag_init+0x0/0x54 returned 0 after 21 usecs
[ 11.456873] calling init_net_drop_monitor+0x0/0x13c @ 1
[ 11.462210] drop_monitor: Initializing network drop monitor service
[ 11.468526] initcall init_net_drop_monitor+0x0/0x13c returned 0 after 6168 usecs
[ 11.475959] calling failover_init+0x0/0x34 @ 1
[ 11.480511] initcall failover_init+0x0/0x34 returned 0 after 1 usecs
[ 11.486899] calling llc_init+0x0/0x44 @ 1
[ 11.491021] initcall llc_init+0x0/0x44 returned 0 after 0 usecs
[ 11.496972] calling snap_init+0x0/0x54 @ 1
[ 11.501178] initcall snap_init+0x0/0x54 returned 0 after 2 usecs
[ 11.507213] calling gre_offload_init+0x0/0x68 @ 1
[ 11.512029] initcall gre_offload_init+0x0/0x68 returned 0 after 1 usecs
[ 11.518676] calling sysctl_ipv4_init+0x0/0x70 @ 1
[ 11.523561] initcall sysctl_ipv4_init+0x0/0x70 returned 0 after 69 usecs
[ 11.530297] calling inet_diag_init+0x0/0xb0 @ 1
[ 11.534940] initcall inet_diag_init+0x0/0xb0 returned 0 after 3 usecs
[ 11.541412] calling tcp_diag_init+0x0/0x2c @ 1
[ 11.545966] initcall tcp_diag_init+0x0/0x2c returned 0 after 0 usecs
[ 11.552350] calling cubictcp_register+0x0/0x70 @ 1
[ 11.557252] initcall cubictcp_register+0x0/0x70 returned 0 after 1 usecs
[ 11.563986] calling inet6_init+0x0/0x350 @ 1
[ 11.568584] NET: Registered protocol family 10
[ 11.573479] Segment Routing with IPv6
[ 11.577204] initcall inet6_init+0x0/0x350 returned 0 after 8631 usecs
[ 11.583694] calling packet_init+0x0/0xa4 @ 1
[ 11.588076] NET: Registered protocol family 17
[ 11.592544] initcall packet_init+0x0/0xa4 returned 0 after 4364 usecs
[ 11.599021] calling br_init+0x0/0xe4 @ 1
[ 11.603067] initcall br_init+0x0/0xe4 returned 0 after 14 usecs
[ 11.609018] calling dsa_init_module+0x0/0xbc @ 1
[ 11.613819] initcall dsa_init_module+0x0/0xbc returned 0 after 71 usecs
[ 11.620479] calling dsa_tag_driver_module_init+0x0/0x38 @ 1
[ 11.626181] initcall dsa_tag_driver_module_init+0x0/0x38 returned 0 after 6 usecs
[ 11.633703] calling can_init+0x0/0xdc @ 1
[ 11.637820] can: controller area network core
[ 11.642227] NET: Registered protocol family 29
[ 11.646693] initcall can_init+0x0/0xdc returned 0 after 8664 usecs
[ 11.652905] calling raw_module_init+0x0/0x58 @ 1
[ 11.657633] can: raw protocol
[ 11.660612] initcall raw_module_init+0x0/0x58 returned 0 after 2908 usecs
[ 11.667436] calling bcm_module_init+0x0/0x6c @ 1
[ 11.672164] can: broadcast manager protocol
[ 11.676368] initcall bcm_module_init+0x0/0x6c returned 0 after 4105 usecs
[ 11.683190] calling cgw_module_init+0x0/0x174 @ 1
[ 11.688005] can: netlink gateway - max_hops=1
[ 11.692430] initcall cgw_module_init+0x0/0x174 returned 0 after 4321 usecs
[ 11.699342] calling init_rpcsec_gss+0x0/0x90 @ 1
[ 11.704087] initcall init_rpcsec_gss+0x0/0x90 returned 0 after 17 usecs
[ 11.710736] calling init_p9+0x0/0x4c @ 1
[ 11.714814] 9pnet: Installing 9P2000 support
[ 11.719104] initcall init_p9+0x0/0x4c returned 0 after 4237 usecs
[ 11.725228] calling p9_virtio_init+0x0/0x68 @ 1
[ 11.729891] initcall p9_virtio_init+0x0/0x68 returned 0 after 18 usecs
[ 11.736453] calling init_dns_resolver+0x0/0x7fac @ 1
[ 11.741540] Key type dns_resolver registered
[ 11.745827] initcall init_dns_resolver+0x0/0x7fac returned 0 after 4197 usecs
[ 11.753057] calling xen_pm_init+0x0/0x100 @ 1
[ 11.757527] initcall xen_pm_init+0x0/0x100 returned -19 after 0 usecs
[ 11.764001] calling init_oops_id+0x0/0x68 @ 1
[ 11.768471] initcall init_oops_id+0x0/0x68 returned 0 after 1 usecs
[ 11.774770] calling reboot_ksysfs_init+0x0/0x6c @ 1
[ 11.779764] initcall reboot_ksysfs_init+0x0/0x6c returned 0 after 6 usecs
[ 11.786587] calling cpu_latency_qos_init+0x0/0x60 @ 1
[ 11.791834] initcall cpu_latency_qos_init+0x0/0x60 returned 0 after 81 usecs
[ 11.798923] calling pm_debugfs_init+0x0/0x44 @ 1
[ 11.803659] initcall pm_debugfs_init+0x0/0x44 returned 0 after 8 usecs
[ 11.810219] calling printk_late_init+0x0/0x154 @ 1
[ 11.815122] initcall printk_late_init+0x0/0x154 returned 0 after 1 usecs
[ 11.821856] calling init_srcu_module_notifier+0x0/0x50 @ 1
[ 11.827457] initcall init_srcu_module_notifier+0x0/0x50 returned 0 after 1 usecs
[ 11.834888] calling swiotlb_create_debugfs+0x0/0x78 @ 1
[ 11.840259] initcall swiotlb_create_debugfs+0x0/0x78 returned 0 after 28 usecs
[ 11.847523] calling tk_debug_sleep_time_init+0x0/0x44 @ 1
[ 11.853042] initcall tk_debug_sleep_time_init+0x0/0x44 returned 0 after 4 usecs
[ 11.860388] calling taskstats_init+0x0/0x5c @ 1
[ 11.865041] registered taskstats version 1
[ 11.869154] initcall taskstats_init+0x0/0x5c returned 0 after 4029 usecs
[ 11.875888] calling init_trampolines+0x0/0x34 @ 1
[ 11.880706] initcall init_trampolines+0x0/0x34 returned 0 after 1 usecs
[ 11.887354] calling load_system_certificate_list+0x0/0x12c @ 1
[ 11.893302] Loading compiled-in X.509 certificates
[ 11.898111] initcall load_system_certificate_list+0x0/0x12c returned 0 after 4696 usecs
[ 11.906154] calling fault_around_debugfs+0x0/0x44 @ 1
[ 11.911325] initcall fault_around_debugfs+0x0/0x44 returned 0 after 7 usecs
[ 11.918321] calling max_swapfiles_check+0x0/0x18 @ 1
[ 11.923398] initcall max_swapfiles_check+0x0/0x18 returned 0 after 0 usecs
[ 11.930305] calling split_huge_pages_debugfs+0x0/0xc0 @ 1
[ 11.935821] initcall split_huge_pages_debugfs+0x0/0xc0 returned 0 after 4 usecs
[ 11.943167] calling check_early_ioremap_leak+0x0/0x6c @ 1
[ 11.948680] initcall check_early_ioremap_leak+0x0/0x6c returned 0 after 0 usecs
[ 11.956024] calling pstore_init+0x0/0x80 @ 1
[ 11.960415] initcall pstore_init+0x0/0x80 returned 0 after 10 usecs
[ 11.966716] calling init_root_keyring+0x0/0x2c @ 1
[ 11.971639] initcall init_root_keyring+0x0/0x2c returned 0 after 21 usecs
[ 11.978466] calling integrity_fs_init+0x0/0x78 @ 1
[ 11.983376] initcall integrity_fs_init+0x0/0x78 returned 0 after 6 usecs
[ 11.990111] calling blk_timeout_init+0x0/0x24 @ 1
[ 11.994924] initcall blk_timeout_init+0x0/0x24 returned 0 after 0 usecs
[ 12.001570] calling prandom_init_late+0x0/0x4c @ 1
[ 12.006472] initcall prandom_init_late+0x0/0x4c returned 0 after 0 usecs
[ 12.013205] calling pci_resource_alignment_sysfs_init+0x0/0x38 @ 1
[ 12.019509] initcall pci_resource_alignment_sysfs_init+0x0/0x38 returned 0 after 3 usecs
[ 12.027642] calling pci_sysfs_init+0x0/0x70 @ 1
[ 12.032285] initcall pci_sysfs_init+0x0/0x70 returned 0 after 1 usecs
[ 12.038757] calling bert_init+0x0/0x254 @ 1
[ 12.043048] initcall bert_init+0x0/0x254 returned 0 after 0 usecs
[ 12.049172] calling amba_deferred_retry+0x0/0xb8 @ 1
[ 12.054254] initcall amba_deferred_retry+0x0/0xb8 returned 0 after 0 usecs
[ 12.061162] calling clk_debug_init+0x0/0x134 @ 1
[ 12.067852] initcall clk_debug_init+0x0/0x134 returned 0 after 1914 usecs
[ 12.074689] calling setup_vcpu_hotplug_event+0x0/0x44 @ 1
[ 12.080204] initcall setup_vcpu_hotplug_event+0x0/0x44 returned -19 after 0 usecs
[ 12.087731] calling boot_wait_for_devices+0x0/0x38 @ 1
[ 12.092990] initcall boot_wait_for_devices+0x0/0x38 returned 0 after 1 usecs
[ 12.100080] calling sync_state_resume_initcall+0x0/0x28 @ 1
[ 12.105773] initcall sync_state_resume_initcall+0x0/0x28 returned 0 after 1 usecs
[ 12.113293] calling deferred_probe_initcall+0x0/0xc0 @ 1
[ 12.118853] fsl-edma 22c0000.dma-controller: Adding to iommu group 5
[ 12.126408] pci-host-generic 1f0000000.pcie: host bridge /soc/pcie@1f0000000 ranges:
[ 12.134221] pci-host-generic 1f0000000.pcie: MEM 0x01f8000000..0x01f815ffff -> 0x0000000000
[ 12.143063] pci-host-generic 1f0000000.pcie: MEM 0x01f8160000..0x01f81cffff -> 0x0000000000
[ 12.151907] pci-host-generic 1f0000000.pcie: MEM 0x01f81d0000..0x01f81effff -> 0x0000000000
[ 12.160748] pci-host-generic 1f0000000.pcie: MEM 0x01f81f0000..0x01f820ffff -> 0x0000000000
[ 12.169586] pci-host-generic 1f0000000.pcie: MEM 0x01f8210000..0x01f822ffff -> 0x0000000000
[ 12.178424] pci-host-generic 1f0000000.pcie: MEM 0x01f8230000..0x01f824ffff -> 0x0000000000
[ 12.187257] pci-host-generic 1f0000000.pcie: MEM 0x01fc000000..0x01fc3fffff -> 0x0000000000
[ 12.196168] pci-host-generic 1f0000000.pcie: ECAM at [mem 0x1f0000000-0x1f00fffff] for [bus 00]
[ 12.204987] pci-host-generic 1f0000000.pcie: PCI host bridge to bus 0000:00
[ 12.211988] pci_bus 0000:00: root bus resource [bus 00]
[ 12.217240] pci_bus 0000:00: root bus resource [mem 0x1f8000000-0x1f815ffff] (bus address [0x00000000-0x0015ffff])
[ 12.227637] pci_bus 0000:00: root bus resource [mem 0x1f8160000-0x1f81cffff pref] (bus address [0x00000000-0x0006ffff])
[ 12.238473] pci_bus 0000:00: root bus resource [mem 0x1f81d0000-0x1f81effff] (bus address [0x00000000-0x0001ffff])
[ 12.248870] pci_bus 0000:00: root bus resource [mem 0x1f81f0000-0x1f820ffff pref] (bus address [0x00000000-0x0001ffff])
[ 12.259703] pci_bus 0000:00: root bus resource [mem 0x1f8210000-0x1f822ffff] (bus address [0x00000000-0x0001ffff])
[ 12.270103] pci_bus 0000:00: root bus resource [mem 0x1f8230000-0x1f824ffff pref] (bus address [0x00000000-0x0001ffff])
[ 12.280938] pci_bus 0000:00: root bus resource [mem 0x1fc000000-0x1fc3fffff] (bus address [0x00000000-0x003fffff])
[ 12.291351] pci 0000:00:00.0: [1957:e100] type 00 class 0x020001
[ 12.297415] pci 0000:00:00.0: BAR 0: [mem 0x1f8000000-0x1f803ffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.307902] pci 0000:00:00.0: BAR 2: [mem 0x1f8160000-0x1f816ffff 64bit pref] (from Enhanced Allocation, properties 0x1)
[ 12.318825] pci 0000:00:00.0: VF BAR 0: [mem 0x1f81d0000-0x1f81dffff 64bit] (from Enhanced Allocation, properties 0x4)
[ 12.329573] pci 0000:00:00.0: VF BAR 2: [mem 0x1f81f0000-0x1f81fffff 64bit pref] (from Enhanced Allocation, properties 0x3)
[ 12.340775] pci 0000:00:00.0: PME# supported from D0 D3hot
[ 12.346294] pci 0000:00:00.0: VF(n) BAR0 space: [mem 0x1f81d0000-0x1f81effff 64bit] (contains BAR0 for 2 VFs)
[ 12.356257] pci 0000:00:00.0: VF(n) BAR2 space: [mem 0x1f81f0000-0x1f820ffff 64bit pref] (contains BAR2 for 2 VFs)
[ 12.366799] pci 0000:00:00.1: [1957:e100] type 00 class 0x020001
[ 12.372858] pci 0000:00:00.1: BAR 0: [mem 0x1f8040000-0x1f807ffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.383346] pci 0000:00:00.1: BAR 2: [mem 0x1f8170000-0x1f817ffff 64bit pref] (from Enhanced Allocation, properties 0x1)
[ 12.394267] pci 0000:00:00.1: VF BAR 0: [mem 0x1f8210000-0x1f821ffff 64bit] (from Enhanced Allocation, properties 0x4)
[ 12.405018] pci 0000:00:00.1: VF BAR 2: [mem 0x1f8230000-0x1f823ffff 64bit pref] (from Enhanced Allocation, properties 0x3)
[ 12.416216] pci 0000:00:00.1: PME# supported from D0 D3hot
[ 12.421733] pci 0000:00:00.1: VF(n) BAR0 space: [mem 0x1f8210000-0x1f822ffff 64bit] (contains BAR0 for 2 VFs)
[ 12.431695] pci 0000:00:00.1: VF(n) BAR2 space: [mem 0x1f8230000-0x1f824ffff 64bit pref] (contains BAR2 for 2 VFs)
[ 12.442227] pci 0000:00:00.1: Linked as a sync state only consumer to 0000:00:00.1
[ 12.449858] pci 0000:00:00.2: [1957:e100] type 00 class 0x020001
[ 12.455914] pci 0000:00:00.2: BAR 0: [mem 0x1f8080000-0x1f80bffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.466404] pci 0000:00:00.2: BAR 2: [mem 0x1f8180000-0x1f818ffff 64bit pref] (from Enhanced Allocation, properties 0x1)
[ 12.477339] pci 0000:00:00.2: PME# supported from D0 D3hot
[ 12.482959] pci 0000:00:00.3: [1957:ee01] type 00 class 0x088001
[ 12.489020] pci 0000:00:00.3: BAR 0: [mem 0x1f8100000-0x1f811ffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.499507] pci 0000:00:00.3: BAR 2: [mem 0x1f8190000-0x1f819ffff 64bit pref] (from Enhanced Allocation, properties 0x1)
[ 12.510440] pci 0000:00:00.3: PME# supported from D0 D3hot
[ 12.516061] pci 0000:00:00.4: [1957:ee02] type 00 class 0x088001
[ 12.522119] pci 0000:00:00.4: BAR 0: [mem 0x1f8120000-0x1f813ffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.532608] pci 0000:00:00.4: BAR 2: [mem 0x1f81a0000-0x1f81affff 64bit pref] (from Enhanced Allocation, properties 0x1)
[ 12.543542] pci 0000:00:00.4: PME# supported from D0 D3hot
[ 12.549155] pci 0000:00:00.5: [1957:eef0] type 00 class 0x020801
[ 12.555212] pci 0000:00:00.5: BAR 0: [mem 0x1f8140000-0x1f815ffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.565699] pci 0000:00:00.5: BAR 2: [mem 0x1f81b0000-0x1f81bffff 64bit pref] (from Enhanced Allocation, properties 0x1)
[ 12.576644] pci 0000:00:00.5: BAR 4: [mem 0x1fc000000-0x1fc3fffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.587173] pci 0000:00:00.5: PME# supported from D0 D3hot
[ 12.587188] scsi 1:0:0:0: Direct-Access JetFlash Transcend 32GB 1100 PQ: 0 ANSI: 6
[ 12.592817] pci 0000:00:00.6: [1957:e100] type 00 class 0x020001
[ 12.606895] pci 0000:00:00.6: BAR 0: [mem 0x1f80c0000-0x1f80fffff 64bit] (from Enhanced Allocation, properties 0x0)
[ 12.617393] pci 0000:00:00.6: BAR 2: [mem 0x1f81c0000-0x1f81cffff 64bit pref] (from Enhanced Allocation, properties 0x1)
[ 12.628345] pci 0000:00:00.6: PME# supported from D0 D3hot
[ 12.628382] sd 1:0:0:0: [sda] 61702144 512-byte logical blocks: (31.6 GB/29.4 GiB)
[ 12.634798] pci 0000:00:1f.0: [1957:e001] type 00 class 0x080700
[ 12.647590] OF: /soc/pcie@1f0000000: no msi-map translation for id 0xf8 on (null)
[ 12.655149] sd 1:0:0:0: [sda] Write Protect is off
[ 12.655295] pci 0000:00:00.0: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 12.659969] sd 1:0:0:0: [sda] Mode Sense: 43 00 00 00
[ 12.666433] pci 0000:00:00.0: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 12.678023] fsl_enetc 0000:00:00.0: Linked as a consumer to 5000000.iommu
[ 12.684875] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 12.684884] fsl_enetc 0000:00:00.0: Adding to iommu group 6
[ 12.701791] sda: sda1
[ 12.706485] sd 1:0:0:0: [sda] Attached SCSI removable disk
[ 12.805947] fsl_enetc 0000:00:00.0: enabling device (0400 -> 0402)
[ 12.812200] fsl_enetc 0000:00:00.0: no MAC address specified for SI1, using 8e:d8:2f:4a:a1:8e
[ 12.820769] fsl_enetc 0000:00:00.0: no MAC address specified for SI2, using c6:34:53:33:70:32
[ 12.829753] libphy: Freescale ENETC MDIO Bus: probed
[ 12.835987] libphy: Freescale ENETC internal MDIO Bus: probed
[ 12.842300] pci 0000:00:00.1: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 12.848791] pci 0000:00:00.1: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 12.855291] fsl_enetc 0000:00:00.1: Linked as a consumer to 5000000.iommu
[ 12.862151] fsl_enetc 0000:00:00.1: Adding to iommu group 7
[ 12.973945] fsl_enetc 0000:00:00.1: enabling device (0400 -> 0402)
[ 12.980198] fsl_enetc 0000:00:00.1: no MAC address specified for SI0, using 12:92:e7:84:ab:1c
[ 12.988766] fsl_enetc 0000:00:00.1: no MAC address specified for SI1, using f2:4c:fa:ab:57:02
[ 12.997332] fsl_enetc 0000:00:00.1: no MAC address specified for SI2, using c6:14:47:66:62:2d
[ 13.006327] mdio_bus 0000:00:00.1: Linked as a sync state only consumer to 0000:00:00.1
[ 13.014402] libphy: Freescale ENETC MDIO Bus: probed
[ 13.019875] mdio_bus 0000:00:00.1:04: Linked as a consumer to 0000:00:00.1
[ 13.026817] mdio_bus 0000:00:00.1:04: probe deferral - supplier 0000:00:00.1 not ready
[ 13.035311] pci 0000:00:00.2: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 13.041806] pci 0000:00:00.2: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 13.048295] fsl_enetc 0000:00:00.2: Linked as a consumer to 5000000.iommu
[ 13.055146] fsl_enetc 0000:00:00.2: Adding to iommu group 8
[ 13.165945] fsl_enetc 0000:00:00.2: enabling device (0400 -> 0402)
[ 13.172192] fsl_enetc 0000:00:00.2: no MAC address specified for SI0, using 1e:9a:57:30:a7:52
[ 13.181494] pci 0000:00:00.3: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 13.188006] pci 0000:00:00.3: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 13.194500] fsl_enetc_mdio 0000:00:00.3: Linked as a consumer to 5000000.iommu
[ 13.201786] fsl_enetc_mdio 0000:00:00.3: Adding to iommu group 9
[ 13.313948] fsl_enetc_mdio 0000:00:00.3: enabling device (0400 -> 0402)
[ 13.320784] libphy: FSL PCIe IE Central MDIO Bus: probed
[ 13.326323] mdio_bus 0000:00:00.3: MDIO device at address 7 is missing.
[ 13.333163] mdio_bus 0000:00:00.3: MDIO device at address 8 is missing.
[ 13.340003] mdio_bus 0000:00:00.3: MDIO device at address 9 is missing.
[ 13.346843] mdio_bus 0000:00:00.3: MDIO device at address 10 is missing.
[ 13.353605] pci 0000:00:00.4: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 13.360085] pci 0000:00:00.4: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 13.366516] pci 0000:00:00.5: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 13.372992] pci 0000:00:00.5: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 13.379458] mscc_felix 0000:00:00.5: Linked as a consumer to 5000000.iommu
[ 13.386387] mscc_felix 0000:00:00.5: Adding to iommu group 10
[ 13.392299] mscc_felix 0000:00:00.5: enabling device (0404 -> 0406)
[ 13.405882] libphy: VSC9959 internal MDIO bus: probed
[ 13.410978] mscc_felix 0000:00:00.5: Found PCS at internal MDIO address 0
[ 13.417801] mscc_felix 0000:00:00.5: Found PCS at internal MDIO address 1
[ 13.424626] mscc_felix 0000:00:00.5: Found PCS at internal MDIO address 2
[ 13.431447] mscc_felix 0000:00:00.5: Found PCS at internal MDIO address 3
[ 13.453501] mscc_felix 0000:00:00.5 swp0 (uninitialized): error -19 setting up PHY for tree 0, switch 0, port 0
[ 13.463722] mscc_felix 0000:00:00.5 swp1 (uninitialized): error -19 setting up PHY for tree 0, switch 0, port 1
[ 13.473944] mscc_felix 0000:00:00.5 swp2 (uninitialized): error -19 setting up PHY for tree 0, switch 0, port 2
[ 13.484136] mscc_felix 0000:00:00.5 swp3 (uninitialized): error -19 setting up PHY for tree 0, switch 0, port 3
[ 13.494329] mscc_felix 0000:00:00.5: configuring for fixed/internal link mode
[ 13.501527] mscc_felix 0000:00:00.5: Link is Up - 2.5Gbps/Full - flow control off
[ 13.509099] mscc_felix 0000:00:00.5: Linked as a consumer to 0000:00:00.2
[ 13.515924] device eth2 entered promiscuous mode
[ 13.520585] DSA: tree 0 setup
[ 13.523614] pci 0000:00:00.6: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 13.530097] pci 0000:00:00.6: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 13.536586] fsl_enetc 0000:00:00.6: Linked as a consumer to 5000000.iommu
[ 13.543434] fsl_enetc 0000:00:00.6: Adding to iommu group 11
[ 13.549232] fsl_enetc 0000:00:00.6: device is disabled, skipping
[ 13.555296] pci 0000:00:1f.0: calling quirk_fsl_no_msi+0x0/0x30 @ 89
[ 13.561773] pci 0000:00:1f.0: quirk_fsl_no_msi+0x0/0x30 took 0 usecs
[ 13.568177] OF: /soc/pcie@1f0000000: no iommu-map translation for id 0xf8 on (null)
[ 13.576001] pcieport 0000:00:1f.0: PME: Signaling with IRQ 129
[ 13.582037] pcieport 0000:00:1f.0: AER: enabled with IRQ 129
[ 13.588437] 2270000.serial: ttyLP2 at MMIO 0x2270000 (irq = 25, base_baud = 12500000) is a FSL_LPUART
[ 13.598727] VDDIO: Bringing 1500000uV into 1800000-1800000uV
[ 13.605716] initcall deferred_probe_initcall+0x0/0xc0 returned 0 after 1452145 usecs
[ 13.613523] calling genpd_power_off_unused+0x0/0xa0 @ 1
[ 13.618868] initcall genpd_power_off_unused+0x0/0xa0 returned 0 after 0 usecs
[ 13.626039] calling genpd_debug_init+0x0/0x98 @ 1
[ 13.630862] initcall genpd_debug_init+0x0/0x98 returned 0 after 8 usecs
[ 13.637510] calling gpio_keys_init+0x0/0x30 @ 1
[ 13.644616] input: buttons0 as /devices/platform/buttons0/input/input1
[ 13.651361] initcall gpio_keys_init+0x0/0x30 returned 0 after 8991 usecs
[ 13.658120] calling register_update_efi_random_seed+0x0/0x44 @ 1
[ 13.664249] initcall register_update_efi_random_seed+0x0/0x44 returned 0 after 0 usecs
[ 13.672215] calling efi_shutdown_init+0x0/0x68 @ 1
[ 13.677119] initcall efi_shutdown_init+0x0/0x68 returned -19 after 0 usecs
[ 13.684028] calling efi_earlycon_unmap_fb+0x0/0x4c @ 1
[ 13.689281] initcall efi_earlycon_unmap_fb+0x0/0x4c returned 0 after 0 usecs
[ 13.696364] calling of_fdt_raw_init+0x0/0x94 @ 1
[ 13.701145] initcall of_fdt_raw_init+0x0/0x94 returned 0 after 50 usecs
[ 13.707797] calling tcp_congestion_default+0x0/0x34 @ 1
[ 13.713138] initcall tcp_congestion_default+0x0/0x34 returned 0 after 1 usecs
[ 13.720308] calling ip_auto_config+0x0/0xea8 @ 1
[ 13.725050] initcall ip_auto_config+0x0/0xea8 returned 0 after 12 usecs
[ 13.731698] calling init_amu_fie+0x0/0x29c @ 1
[ 13.736257] initcall init_amu_fie+0x0/0x29c returned 0 after 1 usecs
[ 13.742641] calling software_resume+0x0/0x1c0 @ 1
[ 13.747462] initcall software_resume+0x0/0x1c0 returned -2 after 1 usecs
[ 13.754195] calling trace_eval_sync+0x0/0x34 @ 1
[ 13.758938] initcall trace_eval_sync+0x0/0x34 returned 0 after 11 usecs
[ 13.765592] calling clear_boot_tracer+0x0/0x44 @ 1
[ 13.770500] initcall clear_boot_tracer+0x0/0x44 returned 0 after 0 usecs
[ 13.777236] calling acpi_gpio_handle_deferred_request_irqs+0x0/0xb4 @ 1
[ 13.783976] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0xb4 returned 0 after 0 usecs
[ 13.792543] calling fb_logo_late_init+0x0/0x24 @ 1
[ 13.797442] initcall fb_logo_late_init+0x0/0x24 returned 0 after 0 usecs
[ 13.804173] calling clk_disable_unused+0x0/0xe0 @ 1
[ 13.809185] initcall clk_disable_unused+0x0/0xe0 returned 0 after 21 usecs
[ 13.816095] calling regulator_init_complete+0x0/0x5c @ 1
[ 13.821519] initcall regulator_init_complete+0x0/0x5c returned 0 after 1 usecs
[ 13.828792] calling of_platform_sync_state_init+0x0/0x28 @ 1
[ 13.834577] initcall of_platform_sync_state_init+0x0/0x28 returned 0 after 0 usecs
[ 13.842190] calling alsa_sound_last_init+0x0/0x98 @ 1
[ 13.847355] ALSA device list:
[ 13.850335] No soundcards found.
[ 13.853744] initcall alsa_sound_last_init+0x0/0x98 returned 0 after 6239 usecs
[ 13.864983] EXT4-fs (mmcblk0p2): INFO: recovery required on readonly filesystem
[ 13.872341] EXT4-fs (mmcblk0p2): write access will be enabled during recovery
[ 13.885041] EXT4-fs (mmcblk0p2): recovery complete
[ 13.891415] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 13.901267] VFS: Mounted root (ext4 filesystem) readonly on device 179:34.
[ 13.908420] devtmpfs: mounted
[ 13.916116] Freeing unused kernel memory: 4800K
[ 13.925996] Missing param value! Expected 'debug=...value...'
[ 13.931775] Missing param value! Expected 'rootwait=...value...'
[ 13.937808] Missing param value! Expected 'initcall_debug=...value...'
[ 13.944365] Run /sbin/init as init process
[ 13.948480] with arguments:
[ 13.951457] /sbin/init
[ 13.954174] with environment:
[ 13.957321] HOME=/
[ 13.959689] TERM=linux
[ 13.990473] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null). Quota mode: none.