All of lore.kernel.org
 help / color / mirror / Atom feed
From: Geert Uytterhoeven <geert@linux-m68k.org>
To: Saravana Kannan <saravanak@google.com>
Cc: Marc Zyngier <maz@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	Android Kernel Team <kernel-team@android.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Jisheng Zhang <Jisheng.Zhang@synaptics.com>,
	Kevin Hilman <khilman@baylibre.com>,
	John Stultz <john.stultz@linaro.org>,
	Nicolas Saenz Julienne <nsaenzjulienne@suse.de>,
	Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>,
	Linux-Renesas <linux-renesas-soc@vger.kernel.org>
Subject: Re: [PATCH v1 5/5] driver core: Set fw_devlink=on by default
Date: Tue, 19 Jan 2021 10:05:43 +0100	[thread overview]
Message-ID: <CAMuHMdVTKEy3rbdYYUKS+L1pY0y0ctMWRXNf7o+hJWyGR7L-Dg@mail.gmail.com> (raw)
In-Reply-To: <CAGETcx_aroLLf_U50=KgfOBL-DW+VrgvgrSNEyHAyeSxWKZTgQ@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 5931 bytes --]

Hi Saravana,

On Mon, Jan 18, 2021 at 10:19 PM Saravana Kannan <saravanak@google.com> wrote:
> On Mon, Jan 18, 2021 at 11:16 AM Geert Uytterhoeven
> <geert@linux-m68k.org> wrote:
> > On Mon, Jan 18, 2021 at 6:59 PM Marc Zyngier <maz@kernel.org> wrote:
> > > On 2021-01-18 17:39, Geert Uytterhoeven wrote:
> > > > On Fri, Dec 18, 2020 at 4:34 AM Saravana Kannan <saravanak@google.com>
> > > > 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@mail.gmail.com/
> > > >> Signed-off-by: Saravana Kannan <saravanak@google.com>
> > > >
> > > > Shimoda-san reported that next-20210111 and later fail to boot
> > > > on Renesas R-Car Gen3 platforms. No output is seen, unless earlycon
> > > > is enabled.
> > > >
> > > > I have bisected this to commit e590474768f1cc04 ("driver core: Set
> > > > fw_devlink=on by default").
> > >
> > > There is a tentative patch from Saravana here[1], which works around
> > > some issues on my RK3399 platform, and it'd be interesting to find
> > > out whether that helps on your system.
> > >
> > > Thanks,
> > >
> > >          M.
> > >
> > > [1]
> > > https://lore.kernel.org/r/20210116011412.3211292-1-saravanak@google.com
> >
> > Thanks for the suggestion, but given no devices probe (incl. GPIO
> > providers), I'm afraid it won't help. [testing] Indeed.
> >
> > With the debug prints in device_links_check_suppliers enabled, and
> > some postprocessing, I get:
> >
> >     255 supplier e6180000.system-controller not ready
> >       9 supplier fe990000.iommu not ready
> >       9 supplier fe980000.iommu not ready
> >       6 supplier febd0000.iommu not ready
> >       6 supplier ec670000.iommu not ready
> >       3 supplier febe0000.iommu not ready
> >       3 supplier e7740000.iommu not ready
> >       3 supplier e6740000.iommu not ready
> >       3 supplier e65ee000.usb-phy not ready
> >       3 supplier e6570000.iommu not ready
> >       3 supplier e6054000.gpio not ready
> >       3 supplier e6053000.gpio not ready
> >
> > As everything is part of a PM Domain, the (lack of the) system controller
> > must be the culprit. What's wrong with it? It is registered very early in
> > the boot:
> >
> > [    0.142096] rcar_sysc_pd_init:442: of_genpd_add_provider_onecell() returned 0

> Looks like you found the important logs. Can you please enable all
> these logs and send the early con logs as an attachment (so I don't
> need to deal with lines getting wrapped)?
> 1. The ones in device_links_check_suppliers()
> 2. The ones in device_link_add()
> 3. initcall_debug=1

I have attached[*] the requested log.

> That should help us figure out what's going on. Also, what's the DT
> that corresponds to one of the boards that see this issue?

arch/arm64/boot/dts/renesas/r8a77951-salvator-xs.dts

> Lastly, can you please pick up these 3 patches (some need clean up
> before they merge) to make sure it's not an issue being worked on from
> other bug reports?
> https://lore.kernel.org/lkml/20210116011412.3211292-1-saravanak@google.com/
> https://lore.kernel.org/lkml/20210115210159.3090203-1-saravanak@google.com/
> https://lore.kernel.org/lkml/20201218210750.3455872-1-saravanak@google.com/
>
> I have a strong hunch the 2nd one will fix your issues. fw_devlink can
> handle cyclic dependencies now (it basically reverts to
> fw_devlink=permissive mode for devices in the cycle), but it needs to
> "see" all the dependencies to know there's a cycle. So want to make
> sure it "sees" the "gpios" binding used all over some of the Renesas
> DT files.

These patches don't help.
The 2nd one actually introduces a new failure:

     OF: /soc/i2c@e66d8000/gpio@20/pcie-sata-switch-hog: could not get
#gpio-cells for /cpus/cpu@102

Note that my issues don't seem to be GPIO-related at all.

BTW, you are aware IOMMUs and DMA controllers are optional?
I.e. device drivers with iommus and/or dmas DT properties where the
targets of these properties do not have a driver should still be probed,
eventually.  But if the IOMMU or DMA drivers are present, they should be
probed first, so the device drivers can make use of them.

Thanks!

[*] Although attaching means people like myself cannot read and comment
    on the log easily, without saving the attachment first.
    That's also the reason why patches should be submitted inline...

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

[-- Attachment #2: dmesg-5.11.0-rc2-salvator-x-00011-g7b0c4737861f-dirty --]
[-- Type: application/octet-stream, Size: 123833 bytes --]

Booting Linux on physical CPU 0x0000000000 [0x411fd073]
Linux version 5.11.0-rc2-salvator-x-00011-g7b0c4737861f-dirty (geert@rox) (aarch64-linux-gnu-gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #937 SMP Tue Jan 19 09:54:29 CET 2021
Machine model: Renesas Salvator-X 2nd version board based on r8a77951
printk: debug: ignoring loglevel setting.
earlycon: scif0 at MMIO 0x00000000e6e88000 (options '115200n8')
printk: bootconsole [scif0] enabled
printk: debug: skip boot console de-registration.
efi: UEFI not found.
cma: Reserved 64 MiB at 0x000000007c000000
Zone ranges:
  DMA      [mem 0x0000000048000000-0x000000007fffffff]
  DMA32    [mem 0x0000000080000000-0x00000000ffffffff]
  Normal   [mem 0x0000000100000000-0x000000073fffffff]
Movable zone start for each node
Early memory node ranges
  node   0: [mem 0x0000000048000000-0x000000007fffffff]
  node   0: [mem 0x0000000500000000-0x000000053fffffff]
  node   0: [mem 0x0000000600000000-0x000000063fffffff]
  node   0: [mem 0x0000000700000000-0x000000073fffffff]
Initmem setup node 0 [mem 0x0000000048000000-0x000000073fffffff]
On node 0 totalpages: 1015808
  DMA zone: 3136 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 229376 pages, LIFO batch:63
  Normal zone: 10752 pages used for memmap
  Normal zone: 786432 pages, LIFO batch:63
psci: probing for conduit method from DT.
psci: PSCIv1.1 detected in firmware.
psci: Using standard PSCI v0.2 function IDs
psci: Trusted OS migration not required
psci: SMC Calling Convention v1.1
percpu: Embedded 32 pages/cpu s92368 r8192 d30512 u131072
pcpu-alloc: s92368 r8192 d30512 u131072 alloc=32*4096
pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7 
Detected PIPT I-cache on CPU0
CPU features: detected: Spectre-v2
CPU features: detected: ARM errata 1165522, 1319367, or 1530923
Built 1 zonelists, mobility grouping on.  Total pages: 1001920
Kernel command line: ignore_loglevel ip=dhcp root=/dev/nfs rw nfsroot=192.168.97.29:/nas/h3-salvator-xs/debian-arm64,tcp,v3 earlycon keep_bootcon initcall_debug=1
Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
mem auto-init: stack:off, heap alloc:off, heap free:off
software IO TLB: mapped [mem 0x0000000078000000-0x000000007c000000] (64MB)
Memory: 3821636K/4063232K available (8512K kernel code, 2354K rwdata, 4156K rodata, 2688K init, 19321K bss, 176060K reserved, 65536K cma-reserved)
random: get_random_u32 called from ____cache_alloc+0x580/0xa40 with crng_init=0
Running RCU self tests
rcu: Hierarchical RCU implementation.
rcu:     RCU lockdep checking is enabled.
rcu:     RCU callback double-/use-after-free debug enabled.
rcu:     RCU debug extended QS entry/exit.
rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
GIC: Adjusting CPU interface base to 0x00000000f102f000
GIC: Using split EOI/Deactivate mode
arch_timer: cp15 timer(s) running at 8.32MHz (phys).
clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x1eb398c07, max_idle_ns: 440795202503 ns
sched_clock: 56 bits at 8MHz, resolution 120ns, wraps every 2199023255503ns
calling  con_init+0x0/0x258 @ 0
Console: colour dummy device 80x25
printk: console [tty0] enabled
initcall con_init+0x0/0x258 returned 0 after 7812 usecs
Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
... MAX_LOCKDEP_SUBCLASSES:  8
... MAX_LOCK_DEPTH:          48
... MAX_LOCKDEP_KEYS:        8192
... CLASSHASH_SIZE:          4096
... MAX_LOCKDEP_ENTRIES:     32768
... MAX_LOCKDEP_CHAINS:      65536
... CHAINHASH_SIZE:          32768
 memory used by lock dependency info: 6365 kB
 memory used for stack traces: 4224 kB
 per task-struct memory footprint: 1920 bytes
Calibrating delay loop (skipped), value calculated using timer frequency.. 16.64 BogoMIPS (lpj=33280)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
calling  trace_init_flags_sys_enter+0x0/0x1c @ 1
initcall trace_init_flags_sys_enter+0x0/0x1c returned 0 after 0 usecs
calling  trace_init_flags_sys_exit+0x0/0x1c @ 1
initcall trace_init_flags_sys_exit+0x0/0x1c returned 0 after 0 usecs
calling  cpu_suspend_init+0x0/0x4c @ 1
initcall cpu_suspend_init+0x0/0x4c returned 0 after 0 usecs
calling  asids_init+0x0/0x88 @ 1
initcall asids_init+0x0/0x88 returned 0 after 0 usecs
calling  spawn_ksoftirqd+0x0/0x48 @ 1
initcall spawn_ksoftirqd+0x0/0x48 returned 0 after 0 usecs
calling  migration_init+0x0/0x4c @ 1
initcall migration_init+0x0/0x4c returned 0 after 0 usecs
calling  srcu_bootup_announce+0x0/0x40 @ 1
rcu: Hierarchical SRCU implementation.
initcall srcu_bootup_announce+0x0/0x40 returned 0 after 3906 usecs
calling  rcu_spawn_core_kthreads+0x0/0xac @ 1
initcall rcu_spawn_core_kthreads+0x0/0xac returned 0 after 0 usecs
calling  rcu_spawn_gp_kthread+0x0/0x150 @ 1
initcall rcu_spawn_gp_kthread+0x0/0x150 returned 0 after 0 usecs
calling  check_cpu_stall_init+0x0/0x2c @ 1
initcall check_cpu_stall_init+0x0/0x2c returned 0 after 0 usecs
calling  rcu_sysrq_init+0x0/0x38 @ 1
initcall rcu_sysrq_init+0x0/0x38 returned 0 after 0 usecs
calling  cpu_stop_init+0x0/0xd8 @ 1
initcall cpu_stop_init+0x0/0xd8 returned 0 after 0 usecs
calling  init_events+0x0/0x60 @ 1
initcall init_events+0x0/0x60 returned 0 after 0 usecs
calling  init_trace_printk+0x0/0x20 @ 1
initcall init_trace_printk+0x0/0x20 returned 0 after 0 usecs
calling  event_trace_enable_again+0x0/0x30 @ 1
initcall event_trace_enable_again+0x0/0x30 returned 0 after 0 usecs
calling  initialize_ptr_random+0x0/0x60 @ 1
initcall initialize_ptr_random+0x0/0x60 returned 0 after 0 usecs
calling  its_pmsi_init+0x0/0x14c @ 1
initcall its_pmsi_init+0x0/0x14c returned 0 after 0 usecs
calling  its_pci_msi_init+0x0/0x14c @ 1
initcall its_pci_msi_init+0x0/0x14c returned 0 after 0 usecs
calling  cci_init+0x0/0x114 @ 1
initcall cci_init+0x0/0x114 returned -19 after 0 usecs
calling  renesas_soc_init+0x0/0x2b4 @ 1
Detected Renesas R-Car Gen3 r8a7795 ES2.0
initcall renesas_soc_init+0x0/0x2b4 returned 0 after 3906 usecs
calling  rcar_sysc_pd_init+0x0/0x314 @ 1
rcar_sysc_pd_init:442: of_genpd_add_provider_onecell() returned 0
initcall rcar_sysc_pd_init+0x0/0x314 returned 0 after 3906 usecs
calling  efi_memreserve_root_init+0x0/0x38 @ 1
initcall efi_memreserve_root_init+0x0/0x38 returned 0 after 0 usecs
calling  arm_enable_runtime_services+0x0/0x1b0 @ 1
EFI services will not be available.
initcall arm_enable_runtime_services+0x0/0x1b0 returned 0 after 3906 usecs
calling  efi_earlycon_remap_fb+0x0/0x74 @ 1
initcall efi_earlycon_remap_fb+0x0/0x74 returned 0 after 0 usecs
calling  dummy_timer_register+0x0/0x34 @ 1
initcall dummy_timer_register+0x0/0x34 returned 0 after 0 usecs
smp: Bringing up secondary CPUs ...
Detected PIPT I-cache on CPU1
CPU1: Booted secondary processor 0x0000000001 [0x411fd073]
Detected PIPT I-cache on CPU2
CPU2: Booted secondary processor 0x0000000002 [0x411fd073]
Detected PIPT I-cache on CPU3
CPU3: Booted secondary processor 0x0000000003 [0x411fd073]
CPU features: detected: ARM erratum 845719
Detected VIPT I-cache on CPU4
CPU4: Booted secondary processor 0x0000000100 [0x410fd034]
Detected VIPT I-cache on CPU5
CPU5: Booted secondary processor 0x0000000101 [0x410fd034]
Detected VIPT I-cache on CPU6
CPU6: Booted secondary processor 0x0000000102 [0x410fd034]
Detected VIPT I-cache on CPU7
CPU7: Booted secondary processor 0x0000000103 [0x410fd034]
smp: Brought up 1 node, 8 CPUs
SMP: Total of 8 processors activated.
CPU features: detected: 32-bit EL0 Support
CPU features: detected: CRC32 instructions
CPU features: detected: 32-bit EL1 Support
CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching
CPU: All CPU(s) started at EL2
alternatives: patching kernel code
devtmpfs: initialized
calling  ipc_ns_init+0x0/0x20 @ 1
initcall ipc_ns_init+0x0/0x20 returned 0 after 0 usecs
calling  init_mmap_min_addr+0x0/0x18 @ 1
initcall init_mmap_min_addr+0x0/0x18 returned 0 after 0 usecs
calling  pci_realloc_setup_params+0x0/0x44 @ 1
initcall pci_realloc_setup_params+0x0/0x44 returned 0 after 0 usecs
calling  net_ns_init+0x0/0x14c @ 1
initcall net_ns_init+0x0/0x14c returned 0 after 0 usecs
calling  inet_frag_wq_init+0x0/0x4c @ 1
initcall inet_frag_wq_init+0x0/0x4c returned 0 after 0 usecs
calling  fpsimd_init+0x0/0x80 @ 1
initcall fpsimd_init+0x0/0x80 returned 0 after 0 usecs
calling  tagged_addr_init+0x0/0x30 @ 1
initcall tagged_addr_init+0x0/0x30 returned 0 after 0 usecs
calling  enable_mrs_emulation+0x0/0x24 @ 1
initcall enable_mrs_emulation+0x0/0x24 returned 0 after 0 usecs
calling  map_entry_trampoline+0x0/0xc0 @ 1
initcall map_entry_trampoline+0x0/0xc0 returned 0 after 0 usecs
calling  alloc_frozen_cpus+0x0/0x8 @ 1
initcall alloc_frozen_cpus+0x0/0x8 returned 0 after 0 usecs
calling  cpu_hotplug_pm_sync_init+0x0/0x24 @ 1
initcall cpu_hotplug_pm_sync_init+0x0/0x24 returned 0 after 0 usecs
calling  wq_sysfs_init+0x0/0x40 @ 1
initcall wq_sysfs_init+0x0/0x40 returned 0 after 0 usecs
calling  ksysfs_init+0x0/0xb0 @ 1
initcall ksysfs_init+0x0/0xb0 returned 0 after 0 usecs
calling  schedutil_gov_init+0x0/0x1c @ 1
initcall schedutil_gov_init+0x0/0x1c returned 0 after 0 usecs
calling  pm_init+0x0/0x80 @ 1
initcall pm_init+0x0/0x80 returned 0 after 0 usecs
calling  rcu_set_runtime_mode+0x0/0x2c @ 1
initcall rcu_set_runtime_mode+0x0/0x2c returned 0 after 0 usecs
calling  dma_init_reserved_memory+0x0/0x64 @ 1
initcall dma_init_reserved_memory+0x0/0x64 returned -12 after 0 usecs
calling  dma_debug_init+0x0/0x220 @ 1
DMA-API: preallocated 65536 debug entries
DMA-API: debugging enabled by kernel config
initcall dma_debug_init+0x0/0x220 returned 0 after 23437 usecs
calling  init_jiffies_clocksource+0x0/0x24 @ 1
clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
initcall init_jiffies_clocksource+0x0/0x24 returned 0 after 3906 usecs
calling  futex_init+0x0/0x128 @ 1
futex hash table entries: 2048 (order: 6, 262144 bytes, linear)
initcall futex_init+0x0/0x128 returned 0 after 3906 usecs
calling  cgroup_wq_init+0x0/0x38 @ 1
initcall cgroup_wq_init+0x0/0x38 returned 0 after 0 usecs
calling  cgroup1_wq_init+0x0/0x38 @ 1
initcall cgroup1_wq_init+0x0/0x38 returned 0 after 0 usecs
calling  cpu_pm_init+0x0/0x24 @ 1
initcall cpu_pm_init+0x0/0x24 returned 0 after 0 usecs
calling  init_zero_pfn+0x0/0x60 @ 1
initcall init_zero_pfn+0x0/0x60 returned 0 after 0 usecs
calling  cma_init_reserved_areas+0x0/0x180 @ 1
initcall cma_init_reserved_areas+0x0/0x180 returned 0 after 31250 usecs
calling  fsnotify_init+0x0/0x64 @ 1
initcall fsnotify_init+0x0/0x64 returned 0 after 0 usecs
calling  filelock_init+0x0/0xec @ 1
initcall filelock_init+0x0/0xec returned 0 after 0 usecs
calling  init_script_binfmt+0x0/0x24 @ 1
initcall init_script_binfmt+0x0/0x24 returned 0 after 0 usecs
calling  init_elf_binfmt+0x0/0x24 @ 1
initcall init_elf_binfmt+0x0/0x24 returned 0 after 0 usecs
calling  init_compat_elf_binfmt+0x0/0x24 @ 1
initcall init_compat_elf_binfmt+0x0/0x24 returned 0 after 0 usecs
calling  configfs_init+0x0/0xb0 @ 1
initcall configfs_init+0x0/0xb0 returned 0 after 0 usecs
calling  debugfs_init+0x0/0x88 @ 1
initcall debugfs_init+0x0/0x88 returned 0 after 0 usecs
calling  tracefs_init+0x0/0x4c @ 1
initcall tracefs_init+0x0/0x4c returned 0 after 0 usecs
calling  prandom_init_early+0x0/0x118 @ 1
initcall prandom_init_early+0x0/0x118 returned 0 after 0 usecs
calling  cci_platform_init+0x0/0x20 @ 1
initcall cci_platform_init+0x0/0x20 returned 0 after 0 usecs
calling  pinctrl_init+0x0/0xc0 @ 1
pinctrl core: initialized pinctrl subsystem
initcall pinctrl_init+0x0/0xc0 returned 0 after 3906 usecs
calling  gpiolib_dev_init+0x0/0x120 @ 1
initcall gpiolib_dev_init+0x0/0x120 returned 0 after 0 usecs
calling  regulator_init+0x0/0xb4 @ 1
initcall regulator_init+0x0/0xb4 returned 0 after 0 usecs
calling  iommu_init+0x0/0x3c @ 1
initcall iommu_init+0x0/0x3c returned 0 after 0 usecs
calling  component_debug_init+0x0/0x2c @ 1
initcall component_debug_init+0x0/0x2c returned 0 after 0 usecs
calling  genpd_bus_init+0x0/0x20 @ 1
initcall genpd_bus_init+0x0/0x20 returned 0 after 0 usecs
calling  soc_bus_register+0x0/0x38 @ 1
initcall soc_bus_register+0x0/0x38 returned -1046665216 after 0 usecs
calling  register_cpufreq_notifier+0x0/0x48 @ 1
initcall register_cpufreq_notifier+0x0/0x48 returned 0 after 0 usecs
calling  opp_debug_init+0x0/0x2c @ 1
initcall opp_debug_init+0x0/0x2c returned 0 after 0 usecs
calling  cpufreq_core_init+0x0/0x78 @ 1
initcall cpufreq_core_init+0x0/0x78 returned 0 after 0 usecs
calling  cpufreq_gov_performance_init+0x0/0x1c @ 1
initcall cpufreq_gov_performance_init+0x0/0x1c returned 0 after 0 usecs
calling  cpufreq_dt_platdev_init+0x0/0x134 @ 1
initcall cpufreq_dt_platdev_init+0x0/0x134 returned 0 after 0 usecs
calling  cpuidle_init+0x0/0x30 @ 1
initcall cpuidle_init+0x0/0x30 returned 0 after 0 usecs
calling  arm_dmi_init+0x0/0x18 @ 1
DMI not present or invalid.
initcall arm_dmi_init+0x0/0x18 returned 0 after 0 usecs
calling  sock_init+0x0/0xa8 @ 1
initcall sock_init+0x0/0xa8 returned 0 after 0 usecs
calling  net_inuse_init+0x0/0x30 @ 1
initcall net_inuse_init+0x0/0x30 returned 0 after 0 usecs
calling  net_defaults_init+0x0/0x30 @ 1
initcall net_defaults_init+0x0/0x30 returned 0 after 0 usecs
calling  init_default_flow_dissectors+0x0/0x54 @ 1
initcall init_default_flow_dissectors+0x0/0x54 returned 0 after 0 usecs
calling  netlink_proto_init+0x0/0x150 @ 1
NET: Registered protocol family 16
initcall netlink_proto_init+0x0/0x150 returned 0 after 7812 usecs
calling  genl_init+0x0/0x4c @ 1
initcall genl_init+0x0/0x4c returned 0 after 0 usecs
calling  debug_monitors_init+0x0/0x34 @ 1
initcall debug_monitors_init+0x0/0x34 returned 0 after 0 usecs
calling  irq_sysfs_init+0x0/0x94 @ 1
initcall irq_sysfs_init+0x0/0x94 returned 0 after 3906 usecs
calling  dma_atomic_pool_init+0x0/0x168 @ 1
DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
initcall dma_atomic_pool_init+0x0/0x168 returned 0 after 27343 usecs
calling  release_early_probes+0x0/0x4c @ 1
initcall release_early_probes+0x0/0x4c returned 0 after 0 usecs
calling  bdi_class_init+0x0/0x64 @ 1
initcall bdi_class_init+0x0/0x64 returned 0 after 0 usecs
calling  mm_sysfs_init+0x0/0x38 @ 1
initcall mm_sysfs_init+0x0/0x38 returned 0 after 0 usecs
calling  init_per_zone_wmark_min+0x0/0x78 @ 1
initcall init_per_zone_wmark_min+0x0/0x78 returned 0 after 0 usecs
calling  kobject_uevent_init+0x0/0x1c @ 1
initcall kobject_uevent_init+0x0/0x1c returned 0 after 0 usecs
calling  irqc_init+0x0/0x20 @ 1
initcall irqc_init+0x0/0x20 returned 0 after 0 usecs
calling  sh_pfc_init+0x0/0x20 @ 1
initcall sh_pfc_init+0x0/0x20 returned 0 after 0 usecs
calling  gpiolib_sysfs_init+0x0/0xb4 @ 1
initcall gpiolib_sysfs_init+0x0/0xb4 returned 0 after 0 usecs
calling  pcibus_class_init+0x0/0x24 @ 1
initcall pcibus_class_init+0x0/0x24 returned 0 after 0 usecs
calling  pci_driver_init+0x0/0x3c @ 1
initcall pci_driver_init+0x0/0x3c returned 0 after 0 usecs
calling  amba_init+0x0/0x1c @ 1
initcall amba_init+0x0/0x1c returned 0 after 0 usecs
calling  tty_class_init+0x0/0x50 @ 1
initcall tty_class_init+0x0/0x50 returned 0 after 0 usecs
calling  vtconsole_class_init+0x0/0xf4 @ 1
initcall vtconsole_class_init+0x0/0xf4 returned 0 after 0 usecs
calling  serdev_init+0x0/0x30 @ 1
initcall serdev_init+0x0/0x30 returned 0 after 0 usecs
calling  iommu_dev_init+0x0/0x24 @ 1
initcall iommu_dev_init+0x0/0x24 returned 0 after 0 usecs
calling  devlink_class_init+0x0/0x60 @ 1
initcall devlink_class_init+0x0/0x60 returned 0 after 0 usecs
calling  software_node_init+0x0/0x3c @ 1
initcall software_node_init+0x0/0x3c returned 0 after 0 usecs
calling  wakeup_sources_debugfs_init+0x0/0x34 @ 1
initcall wakeup_sources_debugfs_init+0x0/0x34 returned 0 after 0 usecs
calling  wakeup_sources_sysfs_init+0x0/0x40 @ 1
initcall wakeup_sources_sysfs_init+0x0/0x40 returned 0 after 0 usecs
calling  regmap_initcall+0x0/0x18 @ 1
initcall regmap_initcall+0x0/0x18 returned 0 after 0 usecs
calling  syscon_init+0x0/0x20 @ 1
initcall syscon_init+0x0/0x20 returned 0 after 0 usecs
calling  spi_init+0x0/0xb0 @ 1
initcall spi_init+0x0/0xb0 returned 0 after 0 usecs
calling  i2c_init+0x0/0xc4 @ 1
initcall i2c_init+0x0/0xc4 returned 0 after 0 usecs
calling  thermal_init+0x0/0x140 @ 1
thermal_sys: Registered thermal governor 'step_wise'
initcall thermal_init+0x0/0x140 returned 0 after 7812 usecs
calling  init_ladder+0x0/0x30 @ 1
cpuidle: using governor ladder
initcall init_ladder+0x0/0x30 returned 0 after 3906 usecs
calling  init_menu+0x0/0x1c @ 1
cpuidle: using governor menu
initcall init_menu+0x0/0x1c returned 0 after 3906 usecs
calling  reserve_memblock_reserved_regions+0x0/0x154 @ 1
initcall reserve_memblock_reserved_regions+0x0/0x154 returned 0 after 0 usecs
calling  aarch32_alloc_vdso_pages+0x0/0xf0 @ 1
initcall aarch32_alloc_vdso_pages+0x0/0xf0 returned 0 after 0 usecs
calling  vdso_init+0x0/0xf8 @ 1
initcall vdso_init+0x0/0xf8 returned 0 after 0 usecs
calling  arch_hw_breakpoint_init+0x0/0xec @ 1
hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
initcall arch_hw_breakpoint_init+0x0/0xec returned 0 after 3906 usecs
calling  asids_update_limit+0x0/0x80 @ 1
ASID allocator initialised with 65536 entries
initcall asids_update_limit+0x0/0x80 returned 0 after 3906 usecs
calling  cryptomgr_init+0x0/0x1c @ 1
initcall cryptomgr_init+0x0/0x1c returned 0 after 0 usecs
calling  dma_channel_table_init+0x0/0xf8 @ 1
initcall dma_channel_table_init+0x0/0xf8 returned 0 after 0 usecs
calling  dma_bus_init+0x0/0xe4 @ 1
initcall dma_bus_init+0x0/0xe4 returned 0 after 0 usecs
calling  iommu_dma_init+0x0/0x14 @ 1
initcall iommu_dma_init+0x0/0x14 returned 0 after 0 usecs
calling  of_platform_default_populate_init+0x0/0xb8 @ 1
OF: /soc/i2c@e66d8000/gpio@20/pcie-sata-switch-hog: could not get #gpio-cells for /cpus/cpu@102
sh-pfc e6060000.pinctrl: r8a77951_pfc support registered
platform e6055800.gpio: Linked as a consumer to e6150000.clock-controller
platform e6055400.gpio: Linked as a consumer to e6150000.clock-controller
platform e6055000.gpio: Linked as a consumer to e6150000.clock-controller
platform e6054000.gpio: Linked as a consumer to e6150000.clock-controller
platform e6053000.gpio: Linked as a consumer to e6150000.clock-controller
platform e6052000.gpio: Linked as a consumer to e6150000.clock-controller
platform e6051000.gpio: Linked as a consumer to e6150000.clock-controller
platform e6050000.gpio: Linked as a consumer to e6150000.clock-controller
platform e6020000.watchdog: Linked as a consumer to e6150000.clock-controller
platform e6055800.gpio: Linked as a consumer to e6180000.system-controller
platform e6055400.gpio: Linked as a consumer to e6180000.system-controller
platform e6055000.gpio: Linked as a consumer to e6180000.system-controller
platform e6054000.gpio: Linked as a consumer to e6180000.system-controller
platform e6053000.gpio: Linked as a consumer to e6180000.system-controller
platform e6052000.gpio: Linked as a consumer to e6180000.system-controller
platform e6051000.gpio: Linked as a consumer to e6180000.system-controller
platform e6050000.gpio: Linked as a consumer to e6180000.system-controller
platform e6020000.watchdog: Linked as a consumer to e6180000.system-controller
platform e6198000.thermal: Linked as a consumer to e6180000.system-controller
platform e6198000.thermal: Linked as a consumer to e6150000.clock-controller
platform e61c0000.interrupt-controller: Linked as a consumer to e6180000.system-controller
platform e61c0000.interrupt-controller: Linked as a consumer to e6150000.clock-controller
platform e61c0000.interrupt-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6510000.i2c: Linked as a consumer to e6060000.pinctrl
platform e6510000.i2c: Linked as a consumer to e6180000.system-controller
platform e6510000.i2c: Linked as a consumer to e6150000.clock-controller
platform e66d8000.i2c: Linked as a consumer to e6180000.system-controller
platform e66d8000.i2c: Linked as a consumer to e6150000.clock-controller
platform e66d8000.i2c: Linked as a sync state only consumer to e6055400.gpio
platform e60b0000.i2c: Linked as a consumer to e6180000.system-controller
platform e60b0000.i2c: Linked as a consumer to e6150000.clock-controller
platform e60b0000.i2c: Linked as a sync state only consumer to e61c0000.interrupt-controller
platform e60b0000.i2c: Linked as a sync state only consumer to e6060000.pinctrl
platform e6550000.serial: Linked as a consumer to e6060000.pinctrl
platform e6550000.serial: Linked as a consumer to e6180000.system-controller
platform e6550000.serial: Linked as a consumer to e6150000.clock-controller
platform e6590000.usb: Linked as a consumer to e6180000.system-controller
platform e6590000.usb: Linked as a consumer to e6150000.clock-controller
platform e659c000.usb: Linked as a consumer to e6180000.system-controller
platform e659c000.usb: Linked as a consumer to e6150000.clock-controller
platform e6590000.usb: Linked as a consumer to e65a0000.dma-controller
platform e65a0000.dma-controller: Linked as a consumer to e6180000.system-controller
platform e65a0000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform e6590000.usb: Linked as a consumer to e65b0000.dma-controller
platform e65b0000.dma-controller: Linked as a consumer to e6180000.system-controller
platform e65b0000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform e659c000.usb: Linked as a consumer to e6460000.dma-controller
platform e6460000.dma-controller: Linked as a consumer to e6180000.system-controller
platform e6460000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform e659c000.usb: Linked as a consumer to e6470000.dma-controller
platform e6470000.dma-controller: Linked as a consumer to e6180000.system-controller
platform e6470000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform e65ee000.usb-phy: Linked as a consumer to e6180000.system-controller
platform e65ee000.usb-phy: Linked as a consumer to e6150000.clock-controller
platform e6601000.crypto: Linked as a consumer to e6180000.system-controller
platform e6601000.crypto: Linked as a consumer to e6150000.clock-controller
platform e60b0000.i2c: Linked as a consumer to e6700000.dma-controller
platform e66d8000.i2c: Linked as a consumer to e6700000.dma-controller
platform e6700000.dma-controller: Linked as a consumer to e6180000.system-controller
platform e6700000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform e6550000.serial: Linked as a consumer to e7300000.dma-controller
platform e6510000.i2c: Linked as a consumer to e7300000.dma-controller
platform e7300000.dma-controller: Linked as a consumer to e6180000.system-controller
platform e7300000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform e6550000.serial: Linked as a consumer to e7310000.dma-controller
platform e6510000.i2c: Linked as a consumer to e7310000.dma-controller
platform e7310000.dma-controller: Linked as a consumer to e6180000.system-controller
platform e7310000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform e6700000.dma-controller: Linked as a consumer to e6740000.iommu
platform e6740000.iommu: Linked as a consumer to e6180000.system-controller
platform e7310000.dma-controller: Linked as a consumer to e7740000.iommu
platform e7300000.dma-controller: Linked as a consumer to e7740000.iommu
platform e7740000.iommu: Linked as a consumer to e6180000.system-controller
platform e6570000.iommu: Linked as a consumer to e6180000.system-controller
platform ff8b0000.iommu: Linked as a consumer to e6180000.system-controller
platform e67b0000.iommu: Linked as a consumer to e6180000.system-controller
platform ec670000.iommu: Linked as a consumer to e6180000.system-controller
platform fd800000.iommu: Linked as a consumer to e6180000.system-controller
platform fd950000.iommu: Linked as a consumer to e6180000.system-controller
platform fd960000.iommu: Linked as a consumer to e6180000.system-controller
platform fd970000.iommu: Linked as a consumer to e6180000.system-controller
platform ffc80000.iommu: Linked as a consumer to e6180000.system-controller
platform fe6b0000.iommu: Linked as a consumer to e6180000.system-controller
platform fe6f0000.iommu: Linked as a consumer to e6180000.system-controller
platform febd0000.iommu: Linked as a consumer to e6180000.system-controller
platform febe0000.iommu: Linked as a consumer to e6180000.system-controller
platform fe990000.iommu: Linked as a consumer to e6180000.system-controller
platform fe980000.iommu: Linked as a consumer to e6180000.system-controller
platform e6800000.ethernet: Linked as a consumer to e6060000.pinctrl
platform e6800000.ethernet: Linked as a consumer to e6740000.iommu
platform e6800000.ethernet: Linked as a consumer to e6180000.system-controller
platform e6800000.ethernet: Linked as a consumer to e6150000.clock-controller
platform e6800000.ethernet: Linked as a sync state only consumer to e6052000.gpio
platform e6e31000.pwm: Linked as a consumer to e6060000.pinctrl
platform e6e31000.pwm: Linked as a consumer to e6180000.system-controller
platform e6e31000.pwm: Linked as a consumer to e6150000.clock-controller
platform e6e88000.serial: Linked as a consumer to e6060000.pinctrl
platform e6e88000.serial: Linked as a consumer to e6180000.system-controller
platform e6e88000.serial: Linked as a consumer to e7310000.dma-controller
platform e6e88000.serial: Linked as a consumer to e7300000.dma-controller
platform e6e88000.serial: Linked as a consumer to e6150000.clock-controller
platform e6ef0000.video: Linked as a consumer to e6180000.system-controller
platform e6ef0000.video: Linked as a consumer to e6150000.clock-controller
platform e6ef1000.video: Linked as a consumer to e6180000.system-controller
platform e6ef1000.video: Linked as a consumer to e6150000.clock-controller
platform e6ef2000.video: Linked as a consumer to e6180000.system-controller
platform e6ef2000.video: Linked as a consumer to e6150000.clock-controller
platform e6ef3000.video: Linked as a consumer to e6180000.system-controller
platform e6ef3000.video: Linked as a consumer to e6150000.clock-controller
platform e6ef4000.video: Linked as a consumer to e6180000.system-controller
platform e6ef4000.video: Linked as a consumer to e6150000.clock-controller
platform e6ef5000.video: Linked as a consumer to e6180000.system-controller
platform e6ef5000.video: Linked as a consumer to e6150000.clock-controller
platform e6ef6000.video: Linked as a consumer to e6180000.system-controller
platform e6ef6000.video: Linked as a consumer to e6150000.clock-controller
platform e6ef7000.video: Linked as a consumer to e6180000.system-controller
platform e6ef7000.video: Linked as a consumer to e6150000.clock-controller
platform e6510000.i2c: Linked as a sync state only consumer to ec500000.sound
platform ec500000.sound: Linked as a consumer to e6060000.pinctrl
platform ec500000.sound: Linked as a consumer to e6180000.system-controller
platform ec500000.sound: Linked as a consumer to e6150000.clock-controller
platform ec500000.sound: Linked as a sync state only consumer to ec700000.dma-controller
platform ec700000.dma-controller: Linked as a consumer to ec670000.iommu
platform ec700000.dma-controller: Linked as a consumer to e6180000.system-controller
platform ec700000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform ec500000.sound: Linked as a sync state only consumer to ec720000.dma-controller
platform ec720000.dma-controller: Linked as a consumer to ec670000.iommu
platform ec720000.dma-controller: Linked as a consumer to e6180000.system-controller
platform ec720000.dma-controller: Linked as a consumer to e6150000.clock-controller
platform ee000000.usb: Linked as a consumer to e6060000.pinctrl
platform ee000000.usb: Linked as a consumer to e6180000.system-controller
platform ee000000.usb: Linked as a consumer to e6150000.clock-controller
platform ee020000.usb: Linked as a consumer to e65ee000.usb-phy
platform ee020000.usb: Linked as a consumer to e6180000.system-controller
platform ee020000.usb: Linked as a consumer to e6150000.clock-controller
platform ee080000.usb: Linked as a consumer to e6180000.system-controller
platform ee080000.usb: Linked as a consumer to e6150000.clock-controller
platform ee0a0000.usb: Linked as a consumer to e6180000.system-controller
platform ee0a0000.usb: Linked as a consumer to e6150000.clock-controller
platform ee0c0000.usb: Linked as a consumer to e6180000.system-controller
platform ee0c0000.usb: Linked as a consumer to e6150000.clock-controller
platform ee0e0000.usb: Linked as a consumer to e6180000.system-controller
platform ee0e0000.usb: Linked as a consumer to e6150000.clock-controller
platform ee080100.usb: Linked as a consumer to e6180000.system-controller
platform ee080100.usb: Linked as a consumer to e6150000.clock-controller
platform ee0a0100.usb: Linked as a consumer to e6180000.system-controller
platform ee0a0100.usb: Linked as a consumer to e6150000.clock-controller
platform ee0c0100.usb: Linked as a consumer to e6180000.system-controller
platform ee0c0100.usb: Linked as a consumer to e6150000.clock-controller
platform ee0e0100.usb: Linked as a consumer to e6180000.system-controller
platform ee0e0100.usb: Linked as a consumer to e6150000.clock-controller
platform ee080100.usb: Linked as a consumer to ee080200.usb-phy
platform ee080000.usb: Linked as a consumer to ee080200.usb-phy
platform e6590000.usb: Linked as a consumer to ee080200.usb-phy
platform ee080200.usb-phy: Linked as a consumer to e6060000.pinctrl
platform ee080200.usb-phy: Linked as a consumer to e6180000.system-controller
platform ee080200.usb-phy: Linked as a consumer to e6150000.clock-controller
platform ee0a0100.usb: Linked as a consumer to ee0a0200.usb-phy
platform ee0a0000.usb: Linked as a consumer to ee0a0200.usb-phy
platform ee0a0200.usb-phy: Linked as a consumer to e6060000.pinctrl
platform ee0a0200.usb-phy: Linked as a consumer to e6180000.system-controller
platform ee0a0200.usb-phy: Linked as a consumer to e6150000.clock-controller
platform ee0c0100.usb: Linked as a consumer to ee0c0200.usb-phy
platform ee0c0000.usb: Linked as a consumer to ee0c0200.usb-phy
platform ee0c0200.usb-phy: Linked as a consumer to e6060000.pinctrl
platform ee0c0200.usb-phy: Linked as a consumer to e6180000.system-controller
platform ee0c0200.usb-phy: Linked as a consumer to e6150000.clock-controller
platform ee0e0100.usb: Linked as a consumer to ee0e0200.usb-phy
platform ee0e0000.usb: Linked as a consumer to ee0e0200.usb-phy
platform e659c000.usb: Linked as a consumer to ee0e0200.usb-phy
platform ee0e0200.usb-phy: Linked as a consumer to e6060000.pinctrl
platform ee0e0200.usb-phy: Linked as a consumer to e6180000.system-controller
platform ee0e0200.usb-phy: Linked as a consumer to e6150000.clock-controller
platform ee100000.mmc: Linked as a consumer to e6053000.gpio
platform ee100000.mmc: Linked as a consumer to e6060000.pinctrl
platform ee100000.mmc: Linked as a consumer to e7740000.iommu
platform ee100000.mmc: Linked as a consumer to e6180000.system-controller
platform ee100000.mmc: Linked as a consumer to e6150000.clock-controller
platform ee140000.mmc: Linked as a consumer to e6060000.pinctrl
platform ee140000.mmc: Linked as a consumer to e7740000.iommu
platform ee140000.mmc: Linked as a consumer to e6180000.system-controller
platform ee140000.mmc: Linked as a consumer to e6150000.clock-controller
platform ee160000.mmc: Linked as a consumer to e6054000.gpio
platform ee160000.mmc: Linked as a consumer to e6060000.pinctrl
platform ee160000.mmc: Linked as a consumer to e7740000.iommu
platform ee160000.mmc: Linked as a consumer to e6180000.system-controller
platform ee160000.mmc: Linked as a consumer to e6150000.clock-controller
platform ee300000.sata: Linked as a consumer to e6570000.iommu
platform ee300000.sata: Linked as a consumer to e6180000.system-controller
platform ee300000.sata: Linked as a consumer to e6150000.clock-controller
platform fe000000.pcie: Linked as a consumer to e6180000.system-controller
platform fe000000.pcie: Linked as a consumer to e6150000.clock-controller
platform ee800000.pcie: Linked as a consumer to e6180000.system-controller
platform ee800000.pcie: Linked as a consumer to e6150000.clock-controller
platform fe860000.imr-lx4: Linked as a consumer to e6180000.system-controller
platform fe860000.imr-lx4: Linked as a consumer to e6150000.clock-controller
platform fe870000.imr-lx4: Linked as a consumer to e6180000.system-controller
platform fe870000.imr-lx4: Linked as a consumer to e6150000.clock-controller
platform fe880000.imr-lx4: Linked as a consumer to e6180000.system-controller
platform fe880000.imr-lx4: Linked as a consumer to e6150000.clock-controller
platform fe890000.imr-lx4: Linked as a consumer to e6180000.system-controller
platform fe890000.imr-lx4: Linked as a consumer to e6150000.clock-controller
platform fe920000.vsp: Linked as a consumer to e6180000.system-controller
platform fe920000.vsp: Linked as a consumer to e6150000.clock-controller
platform fe960000.vsp: Linked as a consumer to e6180000.system-controller
platform fe960000.vsp: Linked as a consumer to e6150000.clock-controller
platform fea20000.vsp: Linked as a consumer to e6180000.system-controller
platform fea20000.vsp: Linked as a consumer to e6150000.clock-controller
platform fea28000.vsp: Linked as a consumer to e6180000.system-controller
platform fea28000.vsp: Linked as a consumer to e6150000.clock-controller
platform fea30000.vsp: Linked as a consumer to e6180000.system-controller
platform fea30000.vsp: Linked as a consumer to e6150000.clock-controller
platform fe9a0000.vsp: Linked as a consumer to e6180000.system-controller
platform fe9a0000.vsp: Linked as a consumer to e6150000.clock-controller
platform fe9b0000.vsp: Linked as a consumer to e6180000.system-controller
platform fe9b0000.vsp: Linked as a consumer to e6150000.clock-controller
platform fe940000.fdp1: Linked as a consumer to e6180000.system-controller
platform fe940000.fdp1: Linked as a consumer to e6150000.clock-controller
platform fe944000.fdp1: Linked as a consumer to e6180000.system-controller
platform fe944000.fdp1: Linked as a consumer to e6150000.clock-controller
platform fe950000.fcp: Linked as a consumer to fe990000.iommu
platform fe950000.fcp: Linked as a consumer to e6180000.system-controller
platform fe950000.fcp: Linked as a consumer to e6150000.clock-controller
platform fe951000.fcp: Linked as a consumer to fe980000.iommu
platform fe951000.fcp: Linked as a consumer to e6180000.system-controller
platform fe951000.fcp: Linked as a consumer to e6150000.clock-controller
platform fe96f000.fcp: Linked as a consumer to fe990000.iommu
platform fe96f000.fcp: Linked as a consumer to e6180000.system-controller
platform fe96f000.fcp: Linked as a consumer to e6150000.clock-controller
platform fe92f000.fcp: Linked as a consumer to fe980000.iommu
platform fe92f000.fcp: Linked as a consumer to e6180000.system-controller
platform fe92f000.fcp: Linked as a consumer to e6150000.clock-controller
platform fe9af000.fcp: Linked as a consumer to fe990000.iommu
platform fe9af000.fcp: Linked as a consumer to e6180000.system-controller
platform fe9af000.fcp: Linked as a consumer to e6150000.clock-controller
platform fe9bf000.fcp: Linked as a consumer to fe980000.iommu
platform fe9bf000.fcp: Linked as a consumer to e6180000.system-controller
platform fe9bf000.fcp: Linked as a consumer to e6150000.clock-controller
platform fea27000.fcp: Linked as a consumer to febd0000.iommu
platform fea27000.fcp: Linked as a consumer to e6180000.system-controller
platform fea27000.fcp: Linked as a consumer to e6150000.clock-controller
platform fea2f000.fcp: Linked as a consumer to febd0000.iommu
platform fea2f000.fcp: Linked as a consumer to e6180000.system-controller
platform fea2f000.fcp: Linked as a consumer to e6150000.clock-controller
platform fea37000.fcp: Linked as a consumer to febe0000.iommu
platform fea37000.fcp: Linked as a consumer to e6180000.system-controller
platform fea37000.fcp: Linked as a consumer to e6150000.clock-controller
platform fea40000.cmm: Linked as a consumer to e6150000.clock-controller
platform fea40000.cmm: Linked as a consumer to e6180000.system-controller
platform fea50000.cmm: Linked as a consumer to e6150000.clock-controller
platform fea50000.cmm: Linked as a consumer to e6180000.system-controller
platform fea60000.cmm: Linked as a consumer to e6150000.clock-controller
platform fea60000.cmm: Linked as a consumer to e6180000.system-controller
platform fea70000.cmm: Linked as a consumer to e6150000.clock-controller
platform fea70000.cmm: Linked as a consumer to e6180000.system-controller
platform fea80000.csi2: Linked as a consumer to e6180000.system-controller
platform fea80000.csi2: Linked as a consumer to e6150000.clock-controller
platform feaa0000.csi2: Linked as a consumer to e6180000.system-controller
platform feaa0000.csi2: Linked as a consumer to e6150000.clock-controller
platform fead0000.hdmi: Linked as a consumer to e6180000.system-controller
platform fead0000.hdmi: Linked as a consumer to e6150000.clock-controller
platform feae0000.hdmi: Linked as a consumer to e6180000.system-controller
platform feae0000.hdmi: Linked as a consumer to e6150000.clock-controller
platform feb00000.display: Linked as a consumer to e6060000.pinctrl
platform feb00000.display: Linked as a consumer to e6150000.clock-controller
platform backlight: Linked as a consumer to e6055400.gpio
platform keys: Linked as a consumer to e6060000.pinctrl
platform keys: Linked as a sync state only consumer to e6055000.gpio
platform keys: Linked as a sync state only consumer to e6055400.gpio
platform ee140000.mmc: Linked as a consumer to regulator0
platform ee140000.mmc: Linked as a consumer to regulator1
platform backlight: Linked as a consumer to regulator2
platform ee080200.usb-phy: Linked as a consumer to regulator-vbus0-usb2
platform regulator-vbus0-usb2: Linked as a consumer to e6055400.gpio
platform ee100000.mmc: Linked as a consumer to regulator-vcc-sdhi0
platform regulator-vcc-sdhi0: Linked as a consumer to e6055000.gpio
platform ee100000.mmc: Linked as a consumer to regulator-vccq-sdhi0
platform regulator-vccq-sdhi0: Linked as a consumer to e6055000.gpio
platform ee160000.mmc: Linked as a consumer to regulator-vcc-sdhi3
platform regulator-vcc-sdhi3: Linked as a consumer to e6053000.gpio
platform ee160000.mmc: Linked as a consumer to regulator-vccq-sdhi3
platform regulator-vccq-sdhi3: Linked as a consumer to e6053000.gpio
initcall of_platform_default_populate_init+0x0/0xb8 returned 0 after 1222656 usecs
calling  topology_init+0x0/0xac @ 1
initcall topology_init+0x0/0xac returned 0 after 3906 usecs
calling  uid_cache_init+0x0/0xa4 @ 1
initcall uid_cache_init+0x0/0xa4 returned 0 after 0 usecs
calling  param_sysfs_init+0x0/0x22c @ 1
initcall param_sysfs_init+0x0/0x22c returned 0 after 70312 usecs
calling  user_namespace_sysctl_init+0x0/0x64 @ 1
initcall user_namespace_sysctl_init+0x0/0x64 returned 0 after 0 usecs
calling  proc_schedstat_init+0x0/0x38 @ 1
initcall proc_schedstat_init+0x0/0x38 returned 0 after 0 usecs
calling  pm_sysrq_init+0x0/0x24 @ 1
initcall pm_sysrq_init+0x0/0x24 returned 0 after 0 usecs
calling  time_ns_init+0x0/0x8 @ 1
initcall time_ns_init+0x0/0x8 returned 0 after 0 usecs
calling  crash_save_vmcoreinfo_init+0x0/0x670 @ 1
initcall crash_save_vmcoreinfo_init+0x0/0x670 returned 0 after 0 usecs
calling  crash_notes_memory_init+0x0/0x44 @ 1
initcall crash_notes_memory_init+0x0/0x44 returned 0 after 0 usecs
calling  cgroup_sysfs_init+0x0/0x28 @ 1
initcall cgroup_sysfs_init+0x0/0x28 returned 0 after 0 usecs
calling  cgroup_namespaces_init+0x0/0x8 @ 1
initcall cgroup_namespaces_init+0x0/0x8 returned 0 after 0 usecs
calling  user_namespaces_init+0x0/0x38 @ 1
initcall user_namespaces_init+0x0/0x38 returned 0 after 0 usecs
calling  hung_task_init+0x0/0x70 @ 1
initcall hung_task_init+0x0/0x70 returned 0 after 0 usecs
calling  oom_init+0x0/0x3c @ 1
initcall oom_init+0x0/0x3c returned 0 after 0 usecs
calling  default_bdi_init+0x0/0x44 @ 1
initcall default_bdi_init+0x0/0x44 returned 0 after 3906 usecs
calling  percpu_enable_async+0x0/0x14 @ 1
initcall percpu_enable_async+0x0/0x14 returned 0 after 0 usecs
calling  kcompactd_init+0x0/0x64 @ 1
initcall kcompactd_init+0x0/0x64 returned 0 after 3906 usecs
calling  init_user_reserve+0x0/0x30 @ 1
initcall init_user_reserve+0x0/0x30 returned 0 after 0 usecs
calling  init_admin_reserve+0x0/0x30 @ 1
initcall init_admin_reserve+0x0/0x30 returned 0 after 0 usecs
calling  init_reserve_notifier+0x0/0x8 @ 1
initcall init_reserve_notifier+0x0/0x8 returned 0 after 3906 usecs
calling  io_wq_init+0x0/0x44 @ 1
initcall io_wq_init+0x0/0x44 returned 0 after 0 usecs
calling  seqiv_module_init+0x0/0x1c @ 1
initcall seqiv_module_init+0x0/0x1c returned 0 after 0 usecs
calling  hmac_module_init+0x0/0x1c @ 1
initcall hmac_module_init+0x0/0x1c returned 0 after 0 usecs
calling  crypto_null_mod_init+0x0/0x80 @ 1
initcall crypto_null_mod_init+0x0/0x80 returned 0 after 3906 usecs
calling  md5_mod_init+0x0/0x1c @ 1
initcall md5_mod_init+0x0/0x1c returned 0 after 0 usecs
calling  sha1_generic_mod_init+0x0/0x1c @ 1
initcall sha1_generic_mod_init+0x0/0x1c returned 0 after 0 usecs
calling  sha256_generic_mod_init+0x0/0x20 @ 1
initcall sha256_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
calling  sha512_generic_mod_init+0x0/0x20 @ 1
initcall sha512_generic_mod_init+0x0/0x20 returned 0 after 0 usecs
calling  sm3_generic_mod_init+0x0/0x1c @ 1
initcall sm3_generic_mod_init+0x0/0x1c returned 0 after 0 usecs
calling  crypto_ecb_module_init+0x0/0x1c @ 1
initcall crypto_ecb_module_init+0x0/0x1c returned 0 after 0 usecs
calling  crypto_cbc_module_init+0x0/0x1c @ 1
initcall crypto_cbc_module_init+0x0/0x1c returned 0 after 0 usecs
calling  xts_module_init+0x0/0x1c @ 1
initcall xts_module_init+0x0/0x1c returned 0 after 0 usecs
calling  crypto_ctr_module_init+0x0/0x20 @ 1
initcall crypto_ctr_module_init+0x0/0x20 returned 0 after 0 usecs
calling  cryptd_init+0x0/0x15c @ 1
cryptd: max_cpu_qlen set to 1000
initcall cryptd_init+0x0/0x15c returned 0 after 7812 usecs
calling  aes_init+0x0/0x1c @ 1
initcall aes_init+0x0/0x1c returned 0 after 3906 usecs
calling  sm4_init+0x0/0x1c @ 1
initcall sm4_init+0x0/0x1c returned 0 after 0 usecs
calling  chacha_generic_mod_init+0x0/0x20 @ 1
initcall chacha_generic_mod_init+0x0/0x20 returned 0 after 3906 usecs
calling  crc32c_mod_init+0x0/0x1c @ 1
initcall crc32c_mod_init+0x0/0x1c returned 0 after 0 usecs
calling  crypto_authenc_module_init+0x0/0x1c @ 1
initcall crypto_authenc_module_init+0x0/0x1c returned 0 after 0 usecs
calling  crypto_authenc_esn_module_init+0x0/0x1c @ 1
initcall crypto_authenc_esn_module_init+0x0/0x1c returned 0 after 0 usecs
calling  drbg_init+0x0/0xa4 @ 1
initcall drbg_init+0x0/0xa4 returned 0 after 7812 usecs
calling  essiv_module_init+0x0/0x1c @ 1
initcall essiv_module_init+0x0/0x1c returned 0 after 0 usecs
calling  init_bio+0x0/0xc8 @ 1
initcall init_bio+0x0/0xc8 returned 0 after 3906 usecs
calling  blk_settings_init+0x0/0x30 @ 1
initcall blk_settings_init+0x0/0x30 returned 0 after 0 usecs
calling  blk_ioc_init+0x0/0x38 @ 1
initcall blk_ioc_init+0x0/0x38 returned 0 after 0 usecs
calling  blk_mq_init+0x0/0xf0 @ 1
initcall blk_mq_init+0x0/0xf0 returned 0 after 0 usecs
calling  genhd_device_init+0x0/0x78 @ 1
initcall genhd_device_init+0x0/0x78 returned 0 after 0 usecs
calling  gpiolib_debugfs_init+0x0/0x38 @ 1
initcall gpiolib_debugfs_init+0x0/0x38 returned 0 after 0 usecs
calling  pca953x_init+0x0/0x20 @ 1
initcall pca953x_init+0x0/0x20 returned 0 after 0 usecs
calling  pwm_debugfs_init+0x0/0x34 @ 1
initcall pwm_debugfs_init+0x0/0x34 returned 0 after 0 usecs
calling  pwm_sysfs_init+0x0/0x24 @ 1
initcall pwm_sysfs_init+0x0/0x24 returned 0 after 0 usecs
calling  pci_slot_init+0x0/0x58 @ 1
initcall pci_slot_init+0x0/0x58 returned 0 after 0 usecs
calling  fbmem_init+0x0/0xf8 @ 1
initcall fbmem_init+0x0/0xf8 returned 0 after 3906 usecs
calling  cpg_mssr_init+0x0/0x28 @ 1
initcall cpg_mssr_init+0x0/0x28 returned 0 after 19531 usecs
calling  regulator_fixed_voltage_init+0x0/0x20 @ 1
reg-fixed-voltage regulator0: GPIO lookup for consumer (null)
reg-fixed-voltage regulator0: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'gpios' property of node '/regulator0[0]'
of_get_named_gpiod_flags: can't parse 'gpio' property of node '/regulator0[0]'
reg-fixed-voltage regulator0: using lookup tables for GPIO lookup
reg-fixed-voltage regulator0: No GPIO consumer (null) found
reg-fixed-voltage regulator1: GPIO lookup for consumer (null)
reg-fixed-voltage regulator1: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'gpios' property of node '/regulator1[0]'
of_get_named_gpiod_flags: can't parse 'gpio' property of node '/regulator1[0]'
reg-fixed-voltage regulator1: using lookup tables for GPIO lookup
reg-fixed-voltage regulator1: No GPIO consumer (null) found
reg-fixed-voltage regulator2: GPIO lookup for consumer (null)
reg-fixed-voltage regulator2: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'gpios' property of node '/regulator2[0]'
of_get_named_gpiod_flags: can't parse 'gpio' property of node '/regulator2[0]'
reg-fixed-voltage regulator2: using lookup tables for GPIO lookup
reg-fixed-voltage regulator2: No GPIO consumer (null) found
platform regulator-vbus0-usb2: probe deferral - supplier e6055400.gpio not ready
platform regulator-vcc-sdhi0: probe deferral - supplier e6055000.gpio not ready
platform regulator-vcc-sdhi3: probe deferral - supplier e6053000.gpio not ready
initcall regulator_fixed_voltage_init+0x0/0x20 returned 0 after 164062 usecs
calling  gpio_regulator_init+0x0/0x20 @ 1
platform regulator-vccq-sdhi0: probe deferral - supplier e6055000.gpio not ready
platform regulator-vccq-sdhi3: probe deferral - supplier e6053000.gpio not ready
initcall gpio_regulator_init+0x0/0x20 returned 0 after 15625 usecs
calling  misc_init+0x0/0xe8 @ 1
initcall misc_init+0x0/0xe8 returned 0 after 0 usecs
calling  iommu_subsys_init+0x0/0x78 @ 1
iommu: Default domain type: Translated 
initcall iommu_subsys_init+0x0/0x78 returned 0 after 3906 usecs
calling  ipmmu_init+0x0/0x70 @ 1
platform e6740000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e7740000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e6570000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ff8b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e67b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ec670000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd800000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd950000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd960000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd970000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ffc80000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe6b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe6f0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform febd0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform febe0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe990000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe980000.iommu: probe deferral - supplier e6180000.system-controller not ready
initcall ipmmu_init+0x0/0x70 returned 0 after 152343 usecs
calling  register_cpu_capacity_sysctl+0x0/0x94 @ 1
initcall register_cpu_capacity_sysctl+0x0/0x94 returned 0 after 0 usecs
calling  dma_buf_init+0x0/0xb0 @ 1
initcall dma_buf_init+0x0/0xb0 returned 0 after 0 usecs
calling  dma_resv_lockdep+0x0/0x2dc @ 1
initcall dma_resv_lockdep+0x0/0x2dc returned 0 after 0 usecs
calling  init_scsi+0x0/0x90 @ 1
SCSI subsystem initialized
initcall init_scsi+0x0/0x90 returned 0 after 7812 usecs
calling  ata_init+0x0/0x54 @ 1
libata version 3.00 loaded.
initcall ata_init+0x0/0x54 returned 0 after 3906 usecs
calling  phy_init+0x0/0x1e8 @ 1
initcall phy_init+0x0/0x1e8 returned 0 after 0 usecs
calling  usb_common_init+0x0/0x2c @ 1
initcall usb_common_init+0x0/0x2c returned 0 after 0 usecs
calling  usb_init+0x0/0x148 @ 1
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
initcall usb_init+0x0/0x148 returned 0 after 19531 usecs
calling  usb_udc_init+0x0/0x68 @ 1
initcall usb_udc_init+0x0/0x68 returned 0 after 0 usecs
calling  usb_roles_init+0x0/0x40 @ 1
initcall usb_roles_init+0x0/0x40 returned 0 after 0 usecs
calling  serio_init+0x0/0x40 @ 1
initcall serio_init+0x0/0x40 returned 0 after 0 usecs
calling  input_init+0x0/0x118 @ 1
initcall input_init+0x0/0x118 returned 0 after 0 usecs
calling  rtc_init+0x0/0x68 @ 1
initcall rtc_init+0x0/0x68 returned 0 after 0 usecs
calling  sh_mobile_i2c_adap_init+0x0/0x20 @ 1
platform e60b0000.i2c: probe deferral - supplier e6180000.system-controller not ready
initcall sh_mobile_i2c_adap_init+0x0/0x20 returned 0 after 11718 usecs
calling  media_devnode_init+0x0/0x90 @ 1
mc: Linux media interface: v0.10
initcall media_devnode_init+0x0/0x90 returned 0 after 3906 usecs
calling  videodev_init+0x0/0x98 @ 1
videodev: Linux video capture interface: v2.00
initcall videodev_init+0x0/0x98 returned 0 after 7812 usecs
calling  cec_devnode_init+0x0/0xbc @ 1
initcall cec_devnode_init+0x0/0xbc returned 0 after 3906 usecs
calling  pps_init+0x0/0xcc @ 1
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
initcall pps_init+0x0/0xcc returned 0 after 15625 usecs
calling  ptp_init+0x0/0xb8 @ 1
PTP clock support registered
initcall ptp_init+0x0/0xb8 returned 0 after 3906 usecs
calling  power_supply_class_init+0x0/0x58 @ 1
initcall power_supply_class_init+0x0/0x58 returned 0 after 0 usecs
calling  hwmon_init+0x0/0x48 @ 1
initcall hwmon_init+0x0/0x48 returned 0 after 3906 usecs
calling  mmc_init+0x0/0x48 @ 1
initcall mmc_init+0x0/0x48 returned 0 after 0 usecs
calling  leds_init+0x0/0x5c @ 1
initcall leds_init+0x0/0x5c returned 0 after 0 usecs
calling  dmi_init+0x0/0x114 @ 1
initcall dmi_init+0x0/0x114 returned 0 after 0 usecs
calling  efisubsys_init+0x0/0x37c @ 1
initcall efisubsys_init+0x0/0x37c returned 0 after 0 usecs
calling  register_gop_device+0x0/0x9c @ 1
initcall register_gop_device+0x0/0x9c returned 0 after 0 usecs
calling  sh_cmt_init+0x0/0x20 @ 1
initcall sh_cmt_init+0x0/0x20 returned 0 after 0 usecs
calling  sh_tmu_init+0x0/0x20 @ 1
initcall sh_tmu_init+0x0/0x20 returned 0 after 0 usecs
calling  iio_init+0x0/0xa4 @ 1
initcall iio_init+0x0/0xa4 returned 0 after 0 usecs
calling  arm_pmu_hp_init+0x0/0x5c @ 1
initcall arm_pmu_hp_init+0x0/0x5c returned 0 after 0 usecs
calling  nvmem_init+0x0/0x20 @ 1
initcall nvmem_init+0x0/0x20 returned 0 after 0 usecs
calling  tee_init+0x0/0xe4 @ 1
initcall tee_init+0x0/0xe4 returned 0 after 0 usecs
calling  mux_init+0x0/0x68 @ 1
initcall mux_init+0x0/0x68 returned 0 after 0 usecs
calling  init_soundcore+0x0/0xb0 @ 1
initcall init_soundcore+0x0/0xb0 returned 0 after 0 usecs
calling  alsa_sound_init+0x0/0xb4 @ 1
Advanced Linux Sound Architecture Driver Initialized.
initcall alsa_sound_init+0x0/0xb4 returned 0 after 7812 usecs
calling  alsa_seq_device_init+0x0/0x84 @ 1
initcall alsa_seq_device_init+0x0/0x84 returned 0 after 0 usecs
calling  proto_init+0x0/0x1c @ 1
initcall proto_init+0x0/0x1c returned 0 after 0 usecs
calling  net_dev_init+0x0/0x284 @ 1
initcall net_dev_init+0x0/0x284 returned 0 after 3906 usecs
calling  neigh_init+0x0/0xa4 @ 1
initcall neigh_init+0x0/0xa4 returned 0 after 0 usecs
calling  fib_notifier_init+0x0/0x1c @ 1
initcall fib_notifier_init+0x0/0x1c returned 0 after 0 usecs
calling  ethnl_init+0x0/0x74 @ 1
initcall ethnl_init+0x0/0x74 returned 0 after 0 usecs
calling  nexthop_init+0x0/0xf4 @ 1
initcall nexthop_init+0x0/0xf4 returned 0 after 0 usecs
calling  watchdog_init+0x0/0xb0 @ 1
initcall watchdog_init+0x0/0xb0 returned 0 after 0 usecs
calling  create_debug_debugfs_entry+0x0/0x30 @ 1
initcall create_debug_debugfs_entry+0x0/0x30 returned 0 after 0 usecs
calling  clocksource_done_booting+0x0/0x5c @ 1
clocksource: Switched to clocksource arch_sys_counter
initcall clocksource_done_booting+0x0/0x5c returned 0 after 7090 usecs
calling  tracer_init_tracefs+0x0/0x2ec @ 1
initcall tracer_init_tracefs+0x0/0x2ec returned 0 after 675929 usecs
calling  init_trace_printk_function_export+0x0/0x3c @ 1
initcall init_trace_printk_function_export+0x0/0x3c returned 0 after 91 usecs
calling  init_pipe_fs+0x0/0x58 @ 1
initcall init_pipe_fs+0x0/0x58 returned 0 after 892 usecs
calling  inotify_user_setup+0x0/0xc8 @ 1
initcall inotify_user_setup+0x0/0xc8 returned 0 after 260 usecs
calling  eventpoll_init+0x0/0xe4 @ 1
initcall eventpoll_init+0x0/0xe4 returned 0 after 663 usecs
calling  anon_inode_init+0x0/0x68 @ 1
initcall anon_inode_init+0x0/0x68 returned 0 after 811 usecs
calling  proc_locks_init+0x0/0x3c @ 1
initcall proc_locks_init+0x0/0x3c returned 0 after 38 usecs
calling  iomap_init+0x0/0x28 @ 1
initcall iomap_init+0x0/0x28 returned 0 after 2054 usecs
calling  proc_cmdline_init+0x0/0x34 @ 1
initcall proc_cmdline_init+0x0/0x34 returned 0 after 33 usecs
calling  proc_consoles_init+0x0/0x38 @ 1
initcall proc_consoles_init+0x0/0x38 returned 0 after 28 usecs
calling  proc_cpuinfo_init+0x0/0x30 @ 1
initcall proc_cpuinfo_init+0x0/0x30 returned 0 after 26 usecs
calling  proc_devices_init+0x0/0x38 @ 1
initcall proc_devices_init+0x0/0x38 returned 0 after 29 usecs
calling  proc_interrupts_init+0x0/0x38 @ 1
initcall proc_interrupts_init+0x0/0x38 returned 0 after 27 usecs
calling  proc_loadavg_init+0x0/0x34 @ 1
initcall proc_loadavg_init+0x0/0x34 returned 0 after 55 usecs
calling  proc_meminfo_init+0x0/0x34 @ 1
initcall proc_meminfo_init+0x0/0x34 returned 0 after 26 usecs
calling  proc_stat_init+0x0/0x30 @ 1
initcall proc_stat_init+0x0/0x30 returned 0 after 27 usecs
calling  proc_uptime_init+0x0/0x34 @ 1
initcall proc_uptime_init+0x0/0x34 returned 0 after 26 usecs
calling  proc_version_init+0x0/0x34 @ 1
initcall proc_version_init+0x0/0x34 returned 0 after 26 usecs
calling  proc_softirqs_init+0x0/0x34 @ 1
initcall proc_softirqs_init+0x0/0x34 returned 0 after 27 usecs
calling  vmcore_init+0x0/0x184 @ 1
initcall vmcore_init+0x0/0x184 returned 0 after 5 usecs
calling  proc_kmsg_init+0x0/0x30 @ 1
initcall proc_kmsg_init+0x0/0x30 returned 0 after 27 usecs
calling  proc_page_init+0x0/0x54 @ 1
initcall proc_page_init+0x0/0x54 returned 0 after 48 usecs
calling  init_ramfs_fs+0x0/0x1c @ 1
initcall init_ramfs_fs+0x0/0x1c returned 0 after 8 usecs
calling  blk_scsi_ioctl_init+0x0/0x290 @ 1
initcall blk_scsi_ioctl_init+0x0/0x290 returned 0 after 5 usecs
calling  chr_dev_init+0x0/0x164 @ 1
initcall chr_dev_init+0x0/0x164 returned 0 after 76000 usecs
calling  firmware_class_init+0x0/0x138 @ 1
initcall firmware_class_init+0x0/0x138 returned 0 after 44 usecs
calling  sysctl_core_init+0x0/0x40 @ 1
initcall sysctl_core_init+0x0/0x40 returned 0 after 142 usecs
calling  eth_offload_init+0x0/0x20 @ 1
initcall eth_offload_init+0x0/0x20 returned 0 after 22 usecs
calling  ipv4_offload_init+0x0/0x80 @ 1
initcall ipv4_offload_init+0x0/0x80 returned 0 after 7 usecs
calling  inet_init+0x0/0x240 @ 1
NET: Registered protocol family 2
tcp_listen_portaddr_hash hash table entries: 2048 (order: 5, 163840 bytes, linear)
TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
TCP bind hash table entries: 32768 (order: 9, 2359296 bytes, linear)
TCP: Hash tables configured (established 32768 bind 32768)
UDP hash table entries: 2048 (order: 6, 327680 bytes, linear)
UDP-Lite hash table entries: 2048 (order: 6, 327680 bytes, linear)
initcall inet_init+0x0/0x240 returned 0 after 67218 usecs
calling  af_unix_init+0x0/0x64 @ 1
NET: Registered protocol family 1
initcall af_unix_init+0x0/0x64 returned 0 after 4720 usecs
calling  ipv6_offload_init+0x0/0x84 @ 1
initcall ipv6_offload_init+0x0/0x84 returned 0 after 8 usecs
calling  init_sunrpc+0x0/0x78 @ 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
initcall init_sunrpc+0x0/0x78 returned 0 after 26074 usecs
calling  default_rootfs+0x0/0x7c @ 1
initcall default_rootfs+0x0/0x7c returned 0 after 538 usecs
calling  register_arm64_panic_block+0x0/0x28 @ 1
initcall register_arm64_panic_block+0x0/0x28 returned 0 after 8 usecs
calling  cpuinfo_regs_init+0x0/0xc4 @ 1
initcall cpuinfo_regs_init+0x0/0xc4 returned 0 after 4109 usecs
calling  armv8_pmu_driver_init+0x0/0x44 @ 1
hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
hw perfevents: enabled with armv8_cortex_a57 PMU driver, 7 counters available
initcall armv8_pmu_driver_init+0x0/0x44 returned 0 after 23316 usecs
calling  ptdump_init+0x0/0x58 @ 1
initcall ptdump_init+0x0/0x58 returned 0 after 5 usecs
calling  arm_init+0x0/0x24 @ 1
kvm [1]: IPA Size Limit: 40 bits
kvm [1]: vgic interrupt IRQ9
kvm [1]: Hyp mode initialized successfully
initcall arm_init+0x0/0x24 returned 0 after 27716 usecs
calling  cpu_feature_match_SHA1_init+0x0/0x34 @ 1
initcall cpu_feature_match_SHA1_init+0x0/0x34 returned 0 after 760 usecs
calling  cpu_feature_match_SHA2_init+0x0/0x38 @ 1
initcall cpu_feature_match_SHA2_init+0x0/0x38 returned 0 after 1374 usecs
calling  ghash_ce_mod_init+0x0/0x50 @ 1
initcall ghash_ce_mod_init+0x0/0x50 returned 0 after 674 usecs
calling  cpu_feature_match_AES_init+0x0/0x34 @ 1
initcall cpu_feature_match_AES_init+0x0/0x34 returned 0 after 654 usecs
calling  aes_mod_init+0x0/0x34 @ 1
initcall aes_mod_init+0x0/0x34 returned 0 after 663 usecs
calling  cpu_feature_match_AES_init+0x0/0xc8 @ 1
initcall cpu_feature_match_AES_init+0x0/0xc8 returned 0 after 11049 usecs
calling  aes_init+0x0/0xc4 @ 1
initcall aes_init+0x0/0xc4 returned 0 after 4807 usecs
calling  sha256_mod_init+0x0/0x74 @ 1
initcall sha256_mod_init+0x0/0x74 returned 0 after 4281 usecs
calling  sha512_mod_init+0x0/0x20 @ 1
initcall sha512_mod_init+0x0/0x20 returned 0 after 1255 usecs
calling  chacha_simd_mod_init+0x0/0x90 @ 1
initcall chacha_simd_mod_init+0x0/0x90 returned 0 after 1969 usecs
calling  aes_init+0x0/0x1c @ 1
initcall aes_init+0x0/0x1c returned 0 after 625 usecs
calling  aes_init+0x0/0xa4 @ 1
initcall aes_init+0x0/0xa4 returned 0 after 5986 usecs
calling  proc_execdomains_init+0x0/0x34 @ 1
initcall proc_execdomains_init+0x0/0x34 returned 0 after 37 usecs
calling  register_warn_debugfs+0x0/0x34 @ 1
initcall register_warn_debugfs+0x0/0x34 returned 0 after 89 usecs
calling  cpuhp_sysfs_init+0x0/0xb4 @ 1
initcall cpuhp_sysfs_init+0x0/0xb4 returned 0 after 891 usecs
calling  ioresources_init+0x0/0x6c @ 1
initcall ioresources_init+0x0/0x6c returned 0 after 65 usecs
calling  init_sched_debug_procfs+0x0/0x44 @ 1
initcall init_sched_debug_procfs+0x0/0x44 returned 0 after 27 usecs
calling  lockdep_proc_init+0x0/0x84 @ 1
initcall lockdep_proc_init+0x0/0x84 returned 0 after 67 usecs
calling  irq_gc_init_ops+0x0/0x20 @ 1
initcall irq_gc_init_ops+0x0/0x20 returned 0 after 7 usecs
calling  irq_pm_init_ops+0x0/0x20 @ 1
initcall irq_pm_init_ops+0x0/0x20 returned 0 after 6 usecs
calling  irq_debugfs_init+0x0/0x98 @ 1
initcall irq_debugfs_init+0x0/0x98 returned 0 after 14712 usecs
calling  timekeeping_init_ops+0x0/0x24 @ 1
initcall timekeeping_init_ops+0x0/0x24 returned 0 after 6 usecs
calling  init_clocksource_sysfs+0x0/0x38 @ 1
initcall init_clocksource_sysfs+0x0/0x38 returned 0 after 1316 usecs
calling  init_timer_list_procfs+0x0/0x40 @ 1
initcall init_timer_list_procfs+0x0/0x40 returned 0 after 32 usecs
calling  alarmtimer_init+0x0/0xfc @ 1
initcall alarmtimer_init+0x0/0xfc returned 0 after 622 usecs
calling  init_posix_timers+0x0/0x38 @ 1
initcall init_posix_timers+0x0/0x38 returned 0 after 280 usecs
calling  clockevents_init_sysfs+0x0/0xdc @ 1
initcall clockevents_init_sysfs+0x0/0xdc returned 0 after 5521 usecs
calling  sched_clock_syscore_init+0x0/0x24 @ 1
initcall sched_clock_syscore_init+0x0/0x24 returned 0 after 6 usecs
calling  proc_modules_init+0x0/0x34 @ 1
initcall proc_modules_init+0x0/0x34 returned 0 after 32 usecs
calling  kallsyms_init+0x0/0x30 @ 1
initcall kallsyms_init+0x0/0x30 returned 0 after 28 usecs
calling  ikconfig_init+0x0/0x54 @ 1
initcall ikconfig_init+0x0/0x54 returned 0 after 28 usecs
calling  utsname_sysctl_init+0x0/0x20 @ 1
initcall utsname_sysctl_init+0x0/0x20 returned 0 after 92 usecs
calling  init_tracepoints+0x0/0x40 @ 1
initcall init_tracepoints+0x0/0x40 returned 0 after 9 usecs
calling  init_lstats_procfs+0x0/0x30 @ 1
initcall init_lstats_procfs+0x0/0x30 returned 0 after 27 usecs
calling  perf_event_sysfs_init+0x0/0xb4 @ 1
initcall perf_event_sysfs_init+0x0/0xb4 returned 0 after 4875 usecs
calling  kswapd_init+0x0/0x20 @ 1
initcall kswapd_init+0x0/0x20 returned 0 after 569 usecs
calling  extfrag_debug_init+0x0/0x70 @ 1
initcall extfrag_debug_init+0x0/0x70 returned 0 after 221 usecs
calling  mm_compute_batch_init+0x0/0x20 @ 1
initcall mm_compute_batch_init+0x0/0x20 returned 0 after 4 usecs
calling  slab_proc_init+0x0/0x34 @ 1
initcall slab_proc_init+0x0/0x34 returned 0 after 33 usecs
calling  workingset_init+0x0/0xb4 @ 1
workingset: timestamp_bits=62 max_order=20 bucket_order=0
initcall workingset_init+0x0/0xb4 returned 0 after 6421 usecs
calling  proc_vmalloc_init+0x0/0x38 @ 1
initcall proc_vmalloc_init+0x0/0x38 returned 0 after 27 usecs
calling  memblock_init_debugfs+0x0/0x80 @ 1
initcall memblock_init_debugfs+0x0/0x80 returned 0 after 201 usecs
calling  cpucache_init+0x0/0x44 @ 1
initcall cpucache_init+0x0/0x44 returned 0 after 857 usecs
calling  fcntl_init+0x0/0x38 @ 1
initcall fcntl_init+0x0/0x38 returned 0 after 261 usecs
calling  proc_filesystems_init+0x0/0x34 @ 1
initcall proc_filesystems_init+0x0/0x34 returned 0 after 28 usecs
calling  start_dirtytime_writeback+0x0/0x3c @ 1
initcall start_dirtytime_writeback+0x0/0x3c returned 0 after 13 usecs
calling  blkdev_init+0x0/0x28 @ 1
initcall blkdev_init+0x0/0x28 returned 0 after 474 usecs
calling  dio_init+0x0/0x38 @ 1
initcall dio_init+0x0/0x38 returned 0 after 193 usecs
calling  userfaultfd_init+0x0/0x40 @ 1
initcall userfaultfd_init+0x0/0x40 returned 0 after 182 usecs
calling  aio_setup+0x0/0x90 @ 1
initcall aio_setup+0x0/0x90 returned 0 after 1147 usecs
calling  io_uring_init+0x0/0x3c @ 1
initcall io_uring_init+0x0/0x3c returned 0 after 197 usecs
calling  mbcache_init+0x0/0x40 @ 1
initcall mbcache_init+0x0/0x40 returned 0 after 207 usecs
calling  init_grace+0x0/0x20 @ 1
initcall init_grace+0x0/0x20 returned 0 after 34 usecs
calling  init_devpts_fs+0x0/0x3c @ 1
initcall init_devpts_fs+0x0/0x3c returned 0 after 154 usecs
calling  ext4_init_fs+0x0/0x188 @ 1
initcall ext4_init_fs+0x0/0x188 returned 0 after 4405 usecs
calling  journal_init+0x0/0x124 @ 1
initcall journal_init+0x0/0x124 returned 0 after 1262 usecs
calling  init_nfs_fs+0x0/0x144 @ 1
initcall init_nfs_fs+0x0/0x144 returned 0 after 3556 usecs
calling  init_nfs_v2+0x0/0x20 @ 1
initcall init_nfs_v2+0x0/0x20 returned 0 after 61 usecs
calling  init_nfs_v3+0x0/0x20 @ 1
initcall init_nfs_v3+0x0/0x20 returned 0 after 5 usecs
calling  init_nfs_v4+0x0/0x4c @ 1
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
initcall init_nfs_v4+0x0/0x4c returned 0 after 13438 usecs
calling  init_nlm+0x0/0x78 @ 1
initcall init_nlm+0x0/0x78 returned 0 after 149 usecs
calling  init_nls_cp437+0x0/0x20 @ 1
initcall init_nls_cp437+0x0/0x20 returned 0 after 23 usecs
calling  init_autofs_fs+0x0/0x38 @ 1
initcall init_autofs_fs+0x0/0x38 returned 0 after 1063 usecs
calling  efivarfs_init+0x0/0x2c @ 1
initcall efivarfs_init+0x0/0x2c returned -19 after 4 usecs
calling  ipc_init+0x0/0x30 @ 1
initcall ipc_init+0x0/0x30 returned 0 after 203 usecs
calling  ipc_sysctl_init+0x0/0x20 @ 1
initcall ipc_sysctl_init+0x0/0x20 returned 0 after 82 usecs
calling  init_mqueue_fs+0x0/0xcc @ 1
initcall init_mqueue_fs+0x0/0xcc returned 0 after 996 usecs
calling  key_proc_init+0x0/0x84 @ 1
initcall key_proc_init+0x0/0x84 returned 0 after 64 usecs
calling  crypto_algapi_init+0x0/0x18 @ 1
initcall crypto_algapi_init+0x0/0x18 returned 0 after 40 usecs
calling  jent_mod_init+0x0/0x3c @ 1
initcall jent_mod_init+0x0/0x3c returned 0 after 25334 usecs
calling  af_alg_init+0x0/0x58 @ 1
NET: Registered protocol family 38
initcall af_alg_init+0x0/0x58 returned 0 after 4433 usecs
calling  algif_hash_init+0x0/0x1c @ 1
initcall algif_hash_init+0x0/0x1c returned 0 after 70 usecs
calling  algif_skcipher_init+0x0/0x1c @ 1
initcall algif_skcipher_init+0x0/0x1c returned 0 after 22 usecs
calling  proc_genhd_init+0x0/0x64 @ 1
initcall proc_genhd_init+0x0/0x64 returned 0 after 51 usecs
calling  bsg_init+0x0/0x124 @ 1
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
initcall bsg_init+0x0/0x124 returned 0 after 7547 usecs
calling  deadline_init+0x0/0x1c @ 1
io scheduler mq-deadline registered
initcall deadline_init+0x0/0x1c returned 0 after 4529 usecs
calling  debug_objects_init_debugfs+0x0/0x5c @ 1
initcall debug_objects_init_debugfs+0x0/0x5c returned 0 after 157 usecs
calling  percpu_counter_startup+0x0/0x6c @ 1
initcall percpu_counter_startup+0x0/0x6c returned 0 after 623 usecs
calling  sg_pool_init+0x0/0xe4 @ 1
initcall sg_pool_init+0x0/0xe4 returned 0 after 1476 usecs
calling  phy_core_init+0x0/0x68 @ 1
initcall phy_core_init+0x0/0x68 returned 0 after 140 usecs
calling  ingenic_usb_phy_driver_init+0x0/0x20 @ 1
initcall ingenic_usb_phy_driver_init+0x0/0x20 returned 0 after 1028 usecs
calling  rcar_gen3_phy_driver_init+0x0/0x20 @ 1
initcall rcar_gen3_phy_driver_init+0x0/0x20 returned 0 after 766 usecs
calling  rcar_gen3_phy_usb2_driver_init+0x0/0x20 @ 1
platform ee080200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_gen3_phy_usb2_driver_init+0x0/0x20 returned 0 after 37523 usecs
calling  rcar_gen3_phy_usb3_driver_init+0x0/0x20 @ 1
platform e65ee000.usb-phy: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_gen3_phy_usb3_driver_init+0x0/0x20 returned 0 after 9881 usecs
calling  gen_74x164_driver_init+0x0/0x20 @ 1
initcall gen_74x164_driver_init+0x0/0x20 returned 0 after 203 usecs
calling  gpio_aggregator_init+0x0/0x20 @ 1
initcall gpio_aggregator_init+0x0/0x20 returned 0 after 752 usecs
calling  bd9571mwv_gpio_driver_init+0x0/0x20 @ 1
initcall bd9571mwv_gpio_driver_init+0x0/0x20 returned 0 after 441 usecs
calling  gpio_rcar_device_driver_init+0x0/0x20 @ 1
platform e6050000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6051000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6052000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6053000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6054000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6055000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6055400.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6055800.gpio: probe deferral - supplier e6180000.system-controller not ready
initcall gpio_rcar_device_driver_init+0x0/0x20 returned 0 after 72222 usecs
calling  rcar_pwm_driver_init+0x0/0x20 @ 1
platform e6e31000.pwm: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_pwm_driver_init+0x0/0x20 returned 0 after 9578 usecs
calling  tpu_driver_init+0x0/0x20 @ 1
initcall tpu_driver_init+0x0/0x20 returned 0 after 772 usecs
calling  pci_proc_init+0x0/0x8c @ 1
initcall pci_proc_init+0x0/0x8c returned 0 after 57 usecs
calling  rcar_pcie_driver_init+0x0/0x20 @ 1
platform fe000000.pcie: probe deferral - supplier e6180000.system-controller not ready
platform ee800000.pcie: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_pcie_driver_init+0x0/0x20 returned 0 after 18578 usecs
calling  of_fixed_factor_clk_driver_init+0x0/0x20 @ 1
initcall of_fixed_factor_clk_driver_init+0x0/0x20 returned 0 after 698 usecs
calling  of_fixed_clk_driver_init+0x0/0x20 @ 1
initcall of_fixed_clk_driver_init+0x0/0x20 returned 0 after 725 usecs
calling  gpio_clk_driver_init+0x0/0x20 @ 1
initcall gpio_clk_driver_init+0x0/0x20 returned 0 after 736 usecs
calling  cs2000_driver_init+0x0/0x20 @ 1
initcall cs2000_driver_init+0x0/0x20 returned 0 after 195 usecs
calling  vc5_driver_init+0x0/0x20 @ 1
initcall vc5_driver_init+0x0/0x20 returned 0 after 198 usecs
calling  rcar_usb2_clock_sel_driver_init+0x0/0x20 @ 1
initcall rcar_usb2_clock_sel_driver_init+0x0/0x20 returned 0 after 749 usecs
calling  rcar_dmac_driver_init+0x0/0x20 @ 1
platform e6700000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e7300000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e7310000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform ec700000.dma-controller: probe deferral - supplier ec670000.iommu not ready
platform ec720000.dma-controller: probe deferral - supplier ec670000.iommu not ready
initcall rcar_dmac_driver_init+0x0/0x20 returned 0 after 47480 usecs
calling  usb_dmac_driver_init+0x0/0x20 @ 1
platform e65a0000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e65b0000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6460000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6470000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
initcall usb_dmac_driver_init+0x0/0x20 returned 0 after 39829 usecs
calling  bd9571mwv_regulator_driver_init+0x0/0x20 @ 1
initcall bd9571mwv_regulator_driver_init+0x0/0x20 returned 0 after 503 usecs
calling  n_null_init+0x0/0x28 @ 1
initcall n_null_init+0x0/0x28 returned 0 after 7 usecs
calling  ttynull_init+0x0/0x104 @ 1
initcall ttynull_init+0x0/0x104 returned 0 after 1045 usecs
calling  pty_init+0x0/0x370 @ 1
initcall pty_init+0x0/0x370 returned 0 after 421017 usecs
calling  sysrq_init+0x0/0x50 @ 1
initcall sysrq_init+0x0/0x50 returned 0 after 80 usecs
calling  sci_init+0x0/0x34 @ 1
SuperH (H)SCI(F) driver initialized
platform e6550000.serial: probe deferral - supplier e6180000.system-controller not ready
platform e6e88000.serial: probe deferral - supplier e6180000.system-controller not ready
initcall sci_init+0x0/0x34 returned 0 after 23930 usecs
calling  hwrng_modinit+0x0/0x94 @ 1
initcall hwrng_modinit+0x0/0x94 returned 0 after 1085 usecs
calling  optee_rng_mod_init+0x0/0x20 @ 1
initcall optee_rng_mod_init+0x0/0x20 returned 0 after 212 usecs
calling  drm_kms_helper_init+0x0/0x1c @ 1
initcall drm_kms_helper_init+0x0/0x1c returned 0 after 3 usecs
calling  drm_core_init+0x0/0xd0 @ 1
initcall drm_core_init+0x0/0xd0 returned 0 after 304 usecs
calling  rcar_cmm_platform_driver_init+0x0/0x20 @ 1
platform fea40000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea50000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea60000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea70000.cmm: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_cmm_platform_driver_init+0x0/0x20 returned 0 after 36111 usecs
calling  rcar_du_init+0x0/0x2c @ 1
platform feb00000.display: probe deferral - wait for supplier clock-generator@6a
initcall rcar_du_init+0x0/0x2c returned 0 after 11213 usecs
calling  rcar_dw_hdmi_platform_driver_init+0x0/0x20 @ 1
platform fead0000.hdmi: probe deferral - supplier e6180000.system-controller not ready
platform feae0000.hdmi: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_dw_hdmi_platform_driver_init+0x0/0x20 returned 0 after 18551 usecs
calling  rcar_lvds_platform_driver_init+0x0/0x20 @ 1
initcall rcar_lvds_platform_driver_init+0x0/0x20 returned 0 after 1065 usecs
calling  display_connector_driver_init+0x0/0x20 @ 1
display-connector hdmi-in: GPIO lookup for consumer hpd
display-connector hdmi-in: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'hpd-gpios' property of node '/hdmi-in[0]'
of_get_named_gpiod_flags: can't parse 'hpd-gpio' property of node '/hdmi-in[0]'
display-connector hdmi-in: using lookup tables for GPIO lookup
display-connector hdmi-in: No GPIO consumer hpd found
display-connector hdmi0-out: GPIO lookup for consumer hpd
display-connector hdmi0-out: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'hpd-gpios' property of node '/hdmi0-out[0]'
of_get_named_gpiod_flags: can't parse 'hpd-gpio' property of node '/hdmi0-out[0]'
display-connector hdmi0-out: using lookup tables for GPIO lookup
display-connector hdmi0-out: No GPIO consumer hpd found
display-connector hdmi1-out: GPIO lookup for consumer hpd
display-connector hdmi1-out: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'hpd-gpios' property of node '/hdmi1-out[0]'
of_get_named_gpiod_flags: can't parse 'hpd-gpio' property of node '/hdmi1-out[0]'
display-connector hdmi1-out: using lookup tables for GPIO lookup
display-connector hdmi1-out: No GPIO consumer hpd found
initcall display_connector_driver_init+0x0/0x20 returned 0 after 133035 usecs
calling  simple_bridge_driver_init+0x0/0x20 @ 1
simple-bridge vga-encoder: GPIO lookup for consumer enable
simple-bridge vga-encoder: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'enable-gpios' property of node '/vga-encoder[0]'
of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/vga-encoder[0]'
simple-bridge vga-encoder: using lookup tables for GPIO lookup
simple-bridge vga-encoder: No GPIO consumer enable found
initcall simple_bridge_driver_init+0x0/0x20 returned 0 after 45744 usecs
calling  thc63_driver_init+0x0/0x20 @ 1
initcall thc63_driver_init+0x0/0x20 returned 0 after 706 usecs
calling  snd_dw_hdmi_driver_init+0x0/0x20 @ 1
initcall snd_dw_hdmi_driver_init+0x0/0x20 returned 0 after 443 usecs
calling  dw_hdmi_cec_driver_init+0x0/0x20 @ 1
initcall dw_hdmi_cec_driver_init+0x0/0x20 returned 0 after 451 usecs
calling  topology_sysfs_init+0x0/0x38 @ 1
initcall topology_sysfs_init+0x0/0x38 returned 0 after 3002 usecs
calling  cacheinfo_sysfs_init+0x0/0x38 @ 1
initcall cacheinfo_sysfs_init+0x0/0x38 returned 0 after 11202 usecs
calling  brd_init+0x0/0x20c @ 1
brd: module loaded
initcall brd_init+0x0/0x20c returned 0 after 88138 usecs
calling  loop_init+0x0/0x158 @ 1
loop: module loaded
initcall loop_init+0x0/0x158 returned 0 after 106287 usecs
calling  at24_init+0x0/0x5c @ 1
initcall at24_init+0x0/0x5c returned 0 after 243 usecs
calling  bd9571mwv_driver_init+0x0/0x20 @ 1
initcall bd9571mwv_driver_init+0x0/0x20 returned 0 after 203 usecs
calling  init_sd+0x0/0x194 @ 1
initcall init_sd+0x0/0x194 returned 0 after 1030 usecs
calling  sata_rcar_driver_init+0x0/0x24 @ 1
platform ee300000.sata: probe deferral - supplier e6570000.iommu not ready
initcall sata_rcar_driver_init+0x0/0x24 returned 0 after 9183 usecs
calling  init_mtd+0x0/0x120 @ 1
initcall init_mtd+0x0/0x120 returned 0 after 1652 usecs
calling  ofpart_parser_init+0x0/0x3c @ 1
initcall ofpart_parser_init+0x0/0x3c returned 0 after 92 usecs
calling  init_mtdblock+0x0/0x1c @ 1
initcall init_mtdblock+0x0/0x1c returned 0 after 107 usecs
calling  spi_nor_driver_init+0x0/0x20 @ 1
initcall spi_nor_driver_init+0x0/0x20 returned 0 after 213 usecs
calling  spidev_init+0x0/0xcc @ 1
initcall spidev_init+0x0/0xcc returned 0 after 372 usecs
calling  sh_msiof_spi_drv_init+0x0/0x20 @ 1
initcall sh_msiof_spi_drv_init+0x0/0x20 returned 0 after 1020 usecs
calling  net_olddevs_init+0x0/0x90 @ 1
initcall net_olddevs_init+0x0/0x90 returned 0 after 12 usecs
calling  blackhole_netdev_init+0x0/0x8c @ 1
initcall blackhole_netdev_init+0x0/0x8c returned 0 after 229 usecs
calling  fixed_mdio_bus_init+0x0/0x11c @ 1
mdio_bus fixed-0: GPIO lookup for consumer reset
mdio_bus fixed-0: using lookup tables for GPIO lookup
mdio_bus fixed-0: No GPIO consumer reset found
libphy: Fixed MDIO Bus: probed
initcall fixed_mdio_bus_init+0x0/0x11c returned 0 after 25877 usecs
calling  phy_module_init+0x0/0x24 @ 1
initcall phy_module_init+0x0/0x24 returned 0 after 3310 usecs
calling  can_dev_init+0x0/0x3c @ 1
CAN device driver interface
initcall can_dev_init+0x0/0x3c returned 0 after 3829 usecs
calling  rcar_can_driver_init+0x0/0x20 @ 1
initcall rcar_can_driver_init+0x0/0x20 returned 0 after 920 usecs
calling  rcar_canfd_driver_init+0x0/0x20 @ 1
initcall rcar_canfd_driver_init+0x0/0x20 returned 0 after 711 usecs
calling  e1000_init_module+0x0/0x40 @ 1
e1000e: Intel(R) PRO/1000 Network Driver
e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
initcall e1000_init_module+0x0/0x40 returned 0 after 11259 usecs
calling  ravb_driver_init+0x0/0x20 @ 1
platform e6800000.ethernet: probe deferral - supplier e6740000.iommu not ready
initcall ravb_driver_init+0x0/0x20 returned 0 after 9038 usecs
calling  vfio_init+0x0/0x198 @ 1
VFIO - User Level meta-driver version: 0.3
initcall vfio_init+0x0/0x198 returned 0 after 6804 usecs
calling  vfio_virqfd_init+0x0/0x44 @ 1
initcall vfio_virqfd_init+0x0/0x44 returned 0 after 873 usecs
calling  vfio_iommu_type1_init+0x0/0x1c @ 1
initcall vfio_iommu_type1_init+0x0/0x1c returned 0 after 22 usecs
calling  vfio_platform_driver_init+0x0/0x20 @ 1
initcall vfio_platform_driver_init+0x0/0x20 returned 0 after 486 usecs
calling  hd44780_driver_init+0x0/0x20 @ 1
initcall hd44780_driver_init+0x0/0x20 returned 0 after 725 usecs
calling  usbport_trig_init+0x0/0x1c @ 1
initcall usbport_trig_init+0x0/0x1c returned 0 after 65 usecs
calling  ehci_hcd_init+0x0/0x7c @ 1
ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
initcall ehci_hcd_init+0x0/0x7c returned 0 after 6472 usecs
calling  ehci_pci_init+0x0/0x84 @ 1
ehci-pci: EHCI PCI platform driver
initcall ehci_pci_init+0x0/0x84 returned 0 after 4694 usecs
calling  ehci_platform_init+0x0/0x58 @ 1
ehci-platform: EHCI generic platform driver
platform ee080100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0100.usb: probe deferral - supplier e6180000.system-controller not ready
initcall ehci_platform_init+0x0/0x58 returned 0 after 41255 usecs
calling  ohci_hcd_mod_init+0x0/0x7c @ 1
ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
initcall ohci_hcd_mod_init+0x0/0x7c returned 0 after 6211 usecs
calling  ohci_pci_init+0x0/0x84 @ 1
ohci-pci: OHCI PCI platform driver
initcall ohci_pci_init+0x0/0x84 returned 0 after 4663 usecs
calling  ohci_platform_init+0x0/0x58 @ 1
ohci-platform: OHCI generic platform driver
platform ee080000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0000.usb: probe deferral - supplier e6180000.system-controller not ready
initcall ohci_platform_init+0x0/0x58 returned 0 after 41254 usecs
calling  xhci_hcd_init+0x0/0x34 @ 1
initcall xhci_hcd_init+0x0/0x34 returned 0 after 95 usecs
calling  xhci_pci_init+0x0/0x6c @ 1
initcall xhci_pci_init+0x0/0x6c returned 0 after 235 usecs
calling  xhci_plat_init+0x0/0x34 @ 1
platform ee000000.usb: probe deferral - supplier e6180000.system-controller not ready
initcall xhci_plat_init+0x0/0x34 returned 0 after 9766 usecs
calling  usb_serial_init+0x0/0x168 @ 1
initcall usb_serial_init+0x0/0x168 returned 0 after 527 usecs
calling  usb_serial_module_init+0x0/0x2c @ 1
usbcore: registered new interface driver cp210x
usbserial: USB Serial support registered for cp210x
initcall usb_serial_module_init+0x0/0x2c returned 0 after 11957 usecs
calling  usb_serial_module_init+0x0/0x2c @ 1
usbcore: registered new interface driver ftdi_sio
usbserial: USB Serial support registered for FTDI USB Serial Device
initcall usb_serial_module_init+0x0/0x2c returned 0 after 13369 usecs
calling  usb_serial_module_init+0x0/0x28 @ 1
usbcore: registered new interface driver pl2303
usbserial: USB Serial support registered for pl2303
initcall usb_serial_module_init+0x0/0x28 returned 0 after 11848 usecs
calling  renesas_usbhs_driver_init+0x0/0x20 @ 1
platform e6590000.usb: probe deferral - supplier e6180000.system-controller not ready
platform e659c000.usb: probe deferral - supplier e6180000.system-controller not ready
initcall renesas_usbhs_driver_init+0x0/0x20 returned 0 after 18617 usecs
calling  renesas_usb3_driver_init+0x0/0x20 @ 1
platform ee020000.usb: probe deferral - supplier e65ee000.usb-phy not ready
initcall renesas_usb3_driver_init+0x0/0x20 returned 0 after 8706 usecs
calling  serport_init+0x0/0x40 @ 1
initcall serport_init+0x0/0x40 returned 0 after 6 usecs
calling  mousedev_init+0x0/0x7c @ 1
mousedev: PS/2 mouse device common for all mice
initcall mousedev_init+0x0/0x7c returned 0 after 6921 usecs
calling  evdev_init+0x0/0x1c @ 1
initcall evdev_init+0x0/0x1c returned 0 after 8 usecs
calling  atkbd_init+0x0/0x38 @ 1
initcall atkbd_init+0x0/0x38 returned 0 after 367 usecs
calling  efi_rtc_driver_init+0x0/0x28 @ 1
initcall efi_rtc_driver_init+0x0/0x28 returned -19 after 636 usecs
calling  smbalert_driver_init+0x0/0x20 @ 1
initcall smbalert_driver_init+0x0/0x20 returned 0 after 209 usecs
calling  i2c_dev_init+0x0/0xdc @ 1
i2c /dev entries driver
initcall i2c_dev_init+0x0/0xdc returned 0 after 3638 usecs
calling  rcar_i2c_driver_init+0x0/0x20 @ 1
platform e6510000.i2c: probe deferral - supplier e6180000.system-controller not ready
platform e66d8000.i2c: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_i2c_driver_init+0x0/0x20 returned 0 after 18676 usecs
calling  adv748x_driver_init+0x0/0x20 @ 1
initcall adv748x_driver_init+0x0/0x20 returned 0 after 202 usecs
calling  video_mux_driver_init+0x0/0x20 @ 1
initcall video_mux_driver_init+0x0/0x20 returned 0 after 691 usecs
calling  rcar_fcp_platform_driver_init+0x0/0x24 @ 1
platform fe950000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe951000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fe96f000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe92f000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fe9af000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe9bf000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fea27000.fcp: probe deferral - supplier febd0000.iommu not ready
platform fea2f000.fcp: probe deferral - supplier febd0000.iommu not ready
platform fea37000.fcp: probe deferral - supplier febe0000.iommu not ready
initcall rcar_fcp_platform_driver_init+0x0/0x24 returned 0 after 70873 usecs
calling  fdp1_pdrv_init+0x0/0x20 @ 1
platform fe940000.fdp1: probe deferral - supplier e6180000.system-controller not ready
platform fe944000.fdp1: probe deferral - supplier e6180000.system-controller not ready
initcall fdp1_pdrv_init+0x0/0x20 returned 0 after 18556 usecs
calling  vsp1_platform_driver_init+0x0/0x20 @ 1
platform fe920000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe960000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea20000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea28000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea30000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe9a0000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe9b0000.vsp: probe deferral - supplier e6180000.system-controller not ready
initcall vsp1_platform_driver_init+0x0/0x20 returned 0 after 62513 usecs
calling  rcar_csi2_pdrv_init+0x0/0x20 @ 1
platform fea80000.csi2: probe deferral - supplier e6180000.system-controller not ready
platform feaa0000.csi2: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_csi2_pdrv_init+0x0/0x20 returned 0 after 18778 usecs
calling  rcar_vin_driver_init+0x0/0x20 @ 1
platform e6ef0000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef1000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef2000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef3000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef4000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef5000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef6000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef7000.video: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_vin_driver_init+0x0/0x20 returned 0 after 72970 usecs
calling  drivetemp_init+0x0/0x1c @ 1
initcall drivetemp_init+0x0/0x1c returned 0 after 53 usecs
calling  rcar_thermal_driver_init+0x0/0x20 @ 1
initcall rcar_thermal_driver_init+0x0/0x20 returned 0 after 820 usecs
calling  rcar_gen3_thermal_driver_init+0x0/0x20 @ 1
platform e6198000.thermal: probe deferral - supplier e6180000.system-controller not ready
initcall rcar_gen3_thermal_driver_init+0x0/0x20 returned 0 after 10062 usecs
calling  watchdog_gov_noop_register+0x0/0x1c @ 1
initcall watchdog_gov_noop_register+0x0/0x1c returned 0 after 42 usecs
calling  watchdog_gov_panic_register+0x0/0x1c @ 1
initcall watchdog_gov_panic_register+0x0/0x1c returned 0 after 43 usecs
calling  rwdt_driver_init+0x0/0x20 @ 1
platform e6020000.watchdog: probe deferral - supplier e6180000.system-controller not ready
initcall rwdt_driver_init+0x0/0x20 returned 0 after 9992 usecs
calling  dm_init+0x0/0x70 @ 1
device-mapper: ioctl: 4.43.0-ioctl (2020-10-01) initialised: dm-devel@redhat.com
initcall dm_init+0x0/0x70 returned 0 after 10538 usecs
calling  dm_crypt_init+0x0/0x40 @ 1
initcall dm_crypt_init+0x0/0x40 returned 0 after 7 usecs
calling  dt_cpufreq_platdrv_init+0x0/0x24 @ 1
cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1497600 KHz, changing to: 1500000 KHz
cpufreq: cpufreq_online: CPU4: Running at unlisted initial frequency: 1198080 KHz, changing to: 1200000 KHz
initcall dt_cpufreq_platdrv_init+0x0/0x24 returned 0 after 38396 usecs
calling  arm_idle_init+0x0/0x174 @ 1
initcall arm_idle_init+0x0/0x174 returned -95 after 108 usecs
calling  mmc_pwrseq_simple_driver_init+0x0/0x20 @ 1
initcall mmc_pwrseq_simple_driver_init+0x0/0x20 returned 0 after 883 usecs
calling  mmc_pwrseq_emmc_driver_init+0x0/0x20 @ 1
initcall mmc_pwrseq_emmc_driver_init+0x0/0x20 returned 0 after 734 usecs
calling  mmc_blk_init+0x0/0x108 @ 1
initcall mmc_blk_init+0x0/0x108 returned 0 after 546 usecs
calling  renesas_sys_dmac_sdhi_driver_init+0x0/0x20 @ 1
initcall renesas_sys_dmac_sdhi_driver_init+0x0/0x20 returned 0 after 1043 usecs
calling  renesas_internal_dmac_sdhi_driver_init+0x0/0x20 @ 1
platform ee100000.mmc: probe deferral - supplier e6053000.gpio not ready
initcall renesas_internal_dmac_sdhi_driver_init+0x0/0x20 returned 0 after 965 usecs
platform ee140000.mmc: probe deferral - supplier e7740000.iommu not ready
calling  sh_mmcif_driver_init+0x0/0x20 @ 1
initcall sh_mmcif_driver_init+0x0/0x20 returned 0 after 754 usecs
platform ee160000.mmc: probe deferral - supplier e6054000.gpio not ready
calling  gpio_led_driver_init+0x0/0x20 @ 1
initcall gpio_led_driver_init+0x0/0x20 returned 0 after 692 usecs
calling  timer_led_trigger_init+0x0/0x1c @ 1
initcall timer_led_trigger_init+0x0/0x1c returned 0 after 12 usecs
calling  oneshot_led_trigger_init+0x0/0x1c @ 1
initcall oneshot_led_trigger_init+0x0/0x1c returned 0 after 8 usecs
calling  ledtrig_disk_init+0x0/0x64 @ 1
initcall ledtrig_disk_init+0x0/0x64 returned 0 after 92 usecs
calling  ledtrig_mtd_init+0x0/0x44 @ 1
initcall ledtrig_mtd_init+0x0/0x44 returned 0 after 42 usecs
calling  heartbeat_trig_init+0x0/0x4c @ 1
initcall heartbeat_trig_init+0x0/0x4c returned 0 after 16 usecs
calling  gpio_led_trigger_init+0x0/0x1c @ 1
initcall gpio_led_trigger_init+0x0/0x1c returned 0 after 8 usecs
calling  ledtrig_cpu_init+0x0/0x110 @ 1
ledtrig-cpu: registered to indicate activity on CPUs
initcall ledtrig_cpu_init+0x0/0x110 returned 0 after 7087 usecs
calling  activity_init+0x0/0x4c @ 1
initcall activity_init+0x0/0x4c returned 0 after 13 usecs
calling  defon_led_trigger_init+0x0/0x1c @ 1
initcall defon_led_trigger_init+0x0/0x1c returned 0 after 9 usecs
calling  transient_trigger_init+0x0/0x1c @ 1
initcall transient_trigger_init+0x0/0x1c returned 0 after 8 usecs
calling  ledtrig_panic_init+0x0/0x4c @ 1
initcall ledtrig_panic_init+0x0/0x4c returned 0 after 28 usecs
calling  netdev_trig_init+0x0/0x1c @ 1
initcall netdev_trig_init+0x0/0x1c returned 0 after 8 usecs
calling  pattern_trig_init+0x0/0x20 @ 1
initcall pattern_trig_init+0x0/0x20 returned 0 after 8 usecs
calling  esrt_sysfs_init+0x0/0x2a0 @ 1
initcall esrt_sysfs_init+0x0/0x2a0 returned -38 after 4 usecs
calling  ccree_init+0x0/0x24 @ 1
platform e6601000.crypto: probe deferral - supplier e6180000.system-controller not ready
initcall ccree_init+0x0/0x24 returned 0 after 9997 usecs
calling  vhost_net_init+0x0/0x38 @ 1
initcall vhost_net_init+0x0/0x38 returned 0 after 826 usecs
calling  vhost_init+0x0/0x8 @ 1
initcall vhost_init+0x0/0x8 returned 0 after 3 usecs
calling  extcon_class_init+0x0/0x28 @ 1
initcall extcon_class_init+0x0/0x28 returned 0 after 140 usecs
calling  max9611_driver_init+0x0/0x20 @ 1
initcall max9611_driver_init+0x0/0x20 returned 0 after 213 usecs
calling  cci_pmu_driver_init+0x0/0x20 @ 1
initcall cci_pmu_driver_init+0x0/0x20 returned 0 after 688 usecs
calling  optee_driver_init+0x0/0x20 @ 1
initcall optee_driver_init+0x0/0x20 returned 0 after 692 usecs
calling  alsa_timer_init+0x0/0x218 @ 1
initcall alsa_timer_init+0x0/0x218 returned 0 after 1565 usecs
calling  alsa_pcm_init+0x0/0x7c @ 1
initcall alsa_pcm_init+0x0/0x7c returned 0 after 123 usecs
calling  alsa_seq_init+0x0/0x60 @ 1
initcall alsa_seq_init+0x0/0x60 returned 0 after 1485 usecs
calling  snd_soc_init+0x0/0x8c @ 1
initcall snd_soc_init+0x0/0x8c returned 0 after 2453 usecs
calling  ak4613_i2c_driver_init+0x0/0x20 @ 1
initcall ak4613_i2c_driver_init+0x0/0x20 returned 0 after 208 usecs
calling  ak4642_i2c_driver_init+0x0/0x20 @ 1
initcall ak4642_i2c_driver_init+0x0/0x20 returned 0 after 188 usecs
calling  hdmi_codec_driver_init+0x0/0x20 @ 1
initcall hdmi_codec_driver_init+0x0/0x20 returned 0 after 451 usecs
calling  asoc_simple_card_init+0x0/0x20 @ 1
initcall asoc_simple_card_init+0x0/0x20 returned 0 after 768 usecs
calling  graph_card_init+0x0/0x20 @ 1
asoc-audio-graph-card sound: GPIO lookup for consumer pa
asoc-audio-graph-card sound: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'pa-gpios' property of node '/sound[0]'
of_get_named_gpiod_flags: can't parse 'pa-gpio' property of node '/sound[0]'
asoc-audio-graph-card sound: using lookup tables for GPIO lookup
asoc-audio-graph-card sound: No GPIO consumer pa found
initcall graph_card_init+0x0/0x20 returned 0 after 44486 usecs
calling  rsnd_driver_init+0x0/0x20 @ 1
platform ec500000.sound: probe deferral - wait for supplier clk_multiplier@4f
initcall rsnd_driver_init+0x0/0x20 returned 0 after 8992 usecs
calling  sock_diag_init+0x0/0x44 @ 1
initcall sock_diag_init+0x0/0x44 returned 0 after 355 usecs
calling  gre_offload_init+0x0/0x20 @ 1
initcall gre_offload_init+0x0/0x20 returned 0 after 4 usecs
calling  sysctl_ipv4_init+0x0/0x58 @ 1
initcall sysctl_ipv4_init+0x0/0x58 returned 0 after 242 usecs
calling  inet_diag_init+0x0/0x9c @ 1
initcall inet_diag_init+0x0/0x9c returned 0 after 99 usecs
calling  tcp_diag_init+0x0/0x1c @ 1
initcall tcp_diag_init+0x0/0x1c returned 0 after 26 usecs
calling  cubictcp_register+0x0/0x60 @ 1
initcall cubictcp_register+0x0/0x60 returned 0 after 7 usecs
calling  xfrm_user_init+0x0/0x64 @ 1
Initializing XFRM netlink socket
initcall xfrm_user_init+0x0/0x64 returned 0 after 4376 usecs
calling  unix_diag_init+0x0/0x1c @ 1
initcall unix_diag_init+0x0/0x1c returned 0 after 6 usecs
calling  packet_init+0x0/0x94 @ 1
NET: Registered protocol family 17
initcall packet_init+0x0/0x94 returned 0 after 4478 usecs
calling  packet_diag_init+0x0/0x1c @ 1
initcall packet_diag_init+0x0/0x1c returned 0 after 6 usecs
calling  ipsec_pfkey_init+0x0/0x88 @ 1
NET: Registered protocol family 15
initcall ipsec_pfkey_init+0x0/0x88 returned 0 after 4481 usecs
calling  can_init+0x0/0xc8 @ 1
can: controller area network core
NET: Registered protocol family 29
initcall can_init+0x0/0xc8 returned 0 after 9476 usecs
calling  raw_module_init+0x0/0x48 @ 1
can: raw protocol
initcall raw_module_init+0x0/0x48 returned 0 after 3004 usecs
calling  bcm_module_init+0x0/0x5c @ 1
can: broadcast manager protocol
initcall bcm_module_init+0x0/0x5c returned 0 after 4195 usecs
calling  cgw_module_init+0x0/0x164 @ 1
can: netlink gateway - max_hops=1
initcall cgw_module_init+0x0/0x164 returned 0 after 4618 usecs
calling  init_rpcsec_gss+0x0/0x78 @ 1
initcall init_rpcsec_gss+0x0/0x78 returned 0 after 344 usecs
calling  init_dns_resolver+0x0/0x73ec @ 1
Key type dns_resolver registered
initcall init_dns_resolver+0x0/0x73ec returned 0 after 4353 usecs
calling  init_oops_id+0x0/0x40 @ 1
initcall init_oops_id+0x0/0x40 returned 0 after 9 usecs
calling  reboot_ksysfs_init+0x0/0x5c @ 1
initcall reboot_ksysfs_init+0x0/0x5c returned 0 after 102 usecs
calling  sched_init_debug+0x0/0x50 @ 1
initcall sched_init_debug+0x0/0x50 returned 0 after 161 usecs
calling  cpu_latency_qos_init+0x0/0x50 @ 1
initcall cpu_latency_qos_init+0x0/0x50 returned 0 after 880 usecs
calling  pm_debugfs_init+0x0/0x34 @ 1
initcall pm_debugfs_init+0x0/0x34 returned 0 after 84 usecs
calling  printk_late_init+0x0/0x144 @ 1
initcall printk_late_init+0x0/0x144 returned 0 after 16 usecs
calling  rcu_verify_early_boot_tests+0x0/0x60 @ 1
initcall rcu_verify_early_boot_tests+0x0/0x60 returned 0 after 3 usecs
calling  init_srcu_module_notifier+0x0/0x40 @ 1
initcall init_srcu_module_notifier+0x0/0x40 returned 0 after 8 usecs
calling  swiotlb_create_debugfs+0x0/0x68 @ 1
initcall swiotlb_create_debugfs+0x0/0x68 returned 0 after 203 usecs
calling  tk_debug_sleep_time_init+0x0/0x34 @ 1
initcall tk_debug_sleep_time_init+0x0/0x34 returned 0 after 82 usecs
calling  taskstats_init+0x0/0x48 @ 1
registered taskstats version 1
initcall taskstats_init+0x0/0x48 returned 0 after 4210 usecs
calling  fault_around_debugfs+0x0/0x34 @ 1
initcall fault_around_debugfs+0x0/0x34 returned 0 after 68 usecs
calling  kmemleak_late_init+0x0/0xb0 @ 1
kmemleak: Kernel memory leak detector initialized (mem pool available: 13473)
kmemleak: Automatic memory scanning thread started
initcall kmemleak_late_init+0x0/0xb0 returned 0 after 9481 usecs
calling  debug_vm_pgtable+0x0/0x698 @ 1
debug_vm_pgtable: [debug_vm_pgtable         ]: Validating architecture page table helpers
initcall debug_vm_pgtable+0x0/0x698 returned 0 after 9387 usecs
calling  check_early_ioremap_leak+0x0/0x5c @ 1
initcall check_early_ioremap_leak+0x0/0x5c returned 0 after 3 usecs
calling  cma_debugfs_init+0x0/0x1d8 @ 1
initcall cma_debugfs_init+0x0/0x1d8 returned 0 after 669 usecs
calling  set_hardened_usercopy+0x0/0x80 @ 1
initcall set_hardened_usercopy+0x0/0x80 returned 1 after 3 usecs
calling  init_percpu_stats_debugfs+0x0/0x34 @ 1
initcall init_percpu_stats_debugfs+0x0/0x34 returned 0 after 68 usecs
calling  init_root_keyring+0x0/0x1c @ 1
initcall init_root_keyring+0x0/0x1c returned 0 after 554 usecs
calling  blk_timeout_init+0x0/0x14 @ 1
initcall blk_timeout_init+0x0/0x14 returned 0 after 3 usecs
calling  prandom_init_late+0x0/0x40 @ 1
initcall prandom_init_late+0x0/0x40 returned 0 after 7 usecs
calling  pci_resource_alignment_sysfs_init+0x0/0x24 @ 1
initcall pci_resource_alignment_sysfs_init+0x0/0x24 returned 0 after 36 usecs
calling  pci_sysfs_init+0x0/0x60 @ 1
initcall pci_sysfs_init+0x0/0x60 returned 0 after 8 usecs
calling  amba_deferred_retry+0x0/0xb0 @ 1
initcall amba_deferred_retry+0x0/0xb0 returned 0 after 27 usecs
calling  clk_debug_init+0x0/0x11c @ 1
initcall clk_debug_init+0x0/0x11c returned 0 after 187024 usecs
calling  sync_state_resume_initcall+0x0/0x18 @ 1
initcall sync_state_resume_initcall+0x0/0x18 returned 0 after 9 usecs
calling  deferred_probe_initcall+0x0/0xb4 @ 1
platform e61c0000.interrupt-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6055800.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6055400.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6055000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6054000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6053000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6052000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6051000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6050000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6020000.watchdog: probe deferral - supplier e6180000.system-controller not ready
platform e6198000.thermal: probe deferral - supplier e6180000.system-controller not ready
platform e6510000.i2c: probe deferral - supplier e6180000.system-controller not ready
platform e66d8000.i2c: probe deferral - supplier e6180000.system-controller not ready
platform e60b0000.i2c: probe deferral - supplier e6180000.system-controller not ready
platform e6550000.serial: probe deferral - supplier e6180000.system-controller not ready
platform e6590000.usb: probe deferral - supplier e6180000.system-controller not ready
platform e659c000.usb: probe deferral - supplier e6180000.system-controller not ready
platform e65a0000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e65b0000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6460000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6470000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e65ee000.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform e6601000.crypto: probe deferral - supplier e6180000.system-controller not ready
platform e6700000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e7300000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e7310000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6800000.ethernet: probe deferral - supplier e6740000.iommu not ready
platform e6e31000.pwm: probe deferral - supplier e6180000.system-controller not ready
platform e6e88000.serial: probe deferral - supplier e6180000.system-controller not ready
platform e6ef0000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef1000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef2000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef3000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef4000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef5000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef6000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef7000.video: probe deferral - supplier e6180000.system-controller not ready
platform ec500000.sound: probe deferral - wait for supplier clk_multiplier@4f
platform ec700000.dma-controller: probe deferral - supplier ec670000.iommu not ready
platform ec720000.dma-controller: probe deferral - supplier ec670000.iommu not ready
platform ee000000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee020000.usb: probe deferral - supplier e65ee000.usb-phy not ready
platform ee080000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee080100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee080200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee300000.sata: probe deferral - supplier e6570000.iommu not ready
platform ee100000.mmc: probe deferral - supplier e6053000.gpio not ready
platform ee140000.mmc: probe deferral - supplier e7740000.iommu not ready
platform fe000000.pcie: probe deferral - supplier e6180000.system-controller not ready
platform ee160000.mmc: probe deferral - supplier e6054000.gpio not ready
platform ee800000.pcie: probe deferral - supplier e6180000.system-controller not ready
platform fe920000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe960000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea20000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea28000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea30000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe9a0000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe9b0000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe940000.fdp1: probe deferral - supplier e6180000.system-controller not ready
platform fe944000.fdp1: probe deferral - supplier e6180000.system-controller not ready
platform fe950000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe951000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fe96f000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe92f000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fe9af000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe9bf000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fea27000.fcp: probe deferral - supplier febd0000.iommu not ready
platform fea2f000.fcp: probe deferral - supplier febd0000.iommu not ready
platform fea37000.fcp: probe deferral - supplier febe0000.iommu not ready
platform fea40000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea50000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea60000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea70000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea80000.csi2: probe deferral - supplier e6180000.system-controller not ready
platform feaa0000.csi2: probe deferral - supplier e6180000.system-controller not ready
platform fead0000.hdmi: probe deferral - supplier e6180000.system-controller not ready
platform feae0000.hdmi: probe deferral - supplier e6180000.system-controller not ready
platform feb00000.display: probe deferral - wait for supplier clock-generator@6a
platform regulator-vbus0-usb2: probe deferral - supplier e6055400.gpio not ready
platform regulator-vcc-sdhi0: probe deferral - supplier e6055000.gpio not ready
platform regulator-vcc-sdhi3: probe deferral - supplier e6053000.gpio not ready
platform regulator-vccq-sdhi0: probe deferral - supplier e6055000.gpio not ready
platform regulator-vccq-sdhi3: probe deferral - supplier e6053000.gpio not ready
platform e6740000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e7740000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e6570000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ff8b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e67b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ec670000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd800000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd950000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd960000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd970000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ffc80000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe6b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe6f0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform febd0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform febe0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe990000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe980000.iommu: probe deferral - supplier e6180000.system-controller not ready
asoc-audio-graph-card sound: GPIO lookup for consumer pa
asoc-audio-graph-card sound: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'pa-gpios' property of node '/sound[0]'
of_get_named_gpiod_flags: can't parse 'pa-gpio' property of node '/sound[0]'
asoc-audio-graph-card sound: using lookup tables for GPIO lookup
asoc-audio-graph-card sound: No GPIO consumer pa found
platform e61c0000.interrupt-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6055800.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6055400.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6055000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6054000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6053000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6052000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6051000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6050000.gpio: probe deferral - supplier e6180000.system-controller not ready
platform e6020000.watchdog: probe deferral - supplier e6180000.system-controller not ready
platform e6198000.thermal: probe deferral - supplier e6180000.system-controller not ready
platform e6510000.i2c: probe deferral - supplier e6180000.system-controller not ready
platform e66d8000.i2c: probe deferral - supplier e6180000.system-controller not ready
platform e60b0000.i2c: probe deferral - supplier e6180000.system-controller not ready
platform e6550000.serial: probe deferral - supplier e6180000.system-controller not ready
platform e6590000.usb: probe deferral - supplier e6180000.system-controller not ready
platform e659c000.usb: probe deferral - supplier e6180000.system-controller not ready
platform e65a0000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e65b0000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6460000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6470000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e65ee000.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform e6601000.crypto: probe deferral - supplier e6180000.system-controller not ready
platform e6700000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e7300000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e7310000.dma-controller: probe deferral - supplier e6180000.system-controller not ready
platform e6800000.ethernet: probe deferral - supplier e6740000.iommu not ready
platform e6e31000.pwm: probe deferral - supplier e6180000.system-controller not ready
platform e6e88000.serial: probe deferral - supplier e6180000.system-controller not ready
platform e6ef0000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef1000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef2000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef3000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef4000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef5000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef6000.video: probe deferral - supplier e6180000.system-controller not ready
platform e6ef7000.video: probe deferral - supplier e6180000.system-controller not ready
platform ec500000.sound: probe deferral - wait for supplier clk_multiplier@4f
platform ec700000.dma-controller: probe deferral - supplier ec670000.iommu not ready
platform ec720000.dma-controller: probe deferral - supplier ec670000.iommu not ready
platform ee000000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee020000.usb: probe deferral - supplier e65ee000.usb-phy not ready
platform ee080000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0000.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee080100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0100.usb: probe deferral - supplier e6180000.system-controller not ready
platform ee080200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0a0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0c0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee0e0200.usb-phy: probe deferral - supplier e6180000.system-controller not ready
platform ee300000.sata: probe deferral - supplier e6570000.iommu not ready
platform ee100000.mmc: probe deferral - supplier e6053000.gpio not ready
platform fe000000.pcie: probe deferral - supplier e6180000.system-controller not ready
platform ee140000.mmc: probe deferral - supplier e7740000.iommu not ready
platform ee800000.pcie: probe deferral - supplier e6180000.system-controller not ready
platform ee160000.mmc: probe deferral - supplier e6054000.gpio not ready
platform fe920000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe960000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea20000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea28000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fea30000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe9a0000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe9b0000.vsp: probe deferral - supplier e6180000.system-controller not ready
platform fe940000.fdp1: probe deferral - supplier e6180000.system-controller not ready
platform fe944000.fdp1: probe deferral - supplier e6180000.system-controller not ready
platform fe950000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe951000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fe96f000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe92f000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fe9af000.fcp: probe deferral - supplier fe990000.iommu not ready
platform fe9bf000.fcp: probe deferral - supplier fe980000.iommu not ready
platform fea27000.fcp: probe deferral - supplier febd0000.iommu not ready
platform fea2f000.fcp: probe deferral - supplier febd0000.iommu not ready
platform fea37000.fcp: probe deferral - supplier febe0000.iommu not ready
platform fea40000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea50000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea60000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea70000.cmm: probe deferral - supplier e6180000.system-controller not ready
platform fea80000.csi2: probe deferral - supplier e6180000.system-controller not ready
platform feaa0000.csi2: probe deferral - supplier e6180000.system-controller not ready
platform fead0000.hdmi: probe deferral - supplier e6180000.system-controller not ready
platform feae0000.hdmi: probe deferral - supplier e6180000.system-controller not ready
platform feb00000.display: probe deferral - wait for supplier clock-generator@6a
platform regulator-vbus0-usb2: probe deferral - supplier e6055400.gpio not ready
platform regulator-vcc-sdhi0: probe deferral - supplier e6055000.gpio not ready
platform regulator-vcc-sdhi3: probe deferral - supplier e6053000.gpio not ready
platform regulator-vccq-sdhi0: probe deferral - supplier e6055000.gpio not ready
platform regulator-vccq-sdhi3: probe deferral - supplier e6053000.gpio not ready
platform e6740000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e7740000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e6570000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ff8b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform e67b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ec670000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd800000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd950000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd960000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fd970000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform ffc80000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe6b0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe6f0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform febd0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform febe0000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe990000.iommu: probe deferral - supplier e6180000.system-controller not ready
platform fe980000.iommu: probe deferral - supplier e6180000.system-controller not ready
asoc-audio-graph-card sound: GPIO lookup for consumer pa
asoc-audio-graph-card sound: using device tree for GPIO lookup
of_get_named_gpiod_flags: can't parse 'pa-gpios' property of node '/sound[0]'
of_get_named_gpiod_flags: can't parse 'pa-gpio' property of node '/sound[0]'
asoc-audio-graph-card sound: using lookup tables for GPIO lookup
asoc-audio-graph-card sound: No GPIO consumer pa found
initcall deferred_probe_initcall+0x0/0xb4 returned 0 after 2056117 usecs
calling  genpd_power_off_unused+0x0/0x84 @ 1
initcall genpd_power_off_unused+0x0/0x84 returned 0 after 164 usecs
calling  genpd_debug_init+0x0/0x84 @ 1
initcall genpd_debug_init+0x0/0x84 returned 0 after 10223 usecs
calling  gpio_keys_init+0x0/0x20 @ 1
initcall gpio_keys_init+0x0/0x20 returned 0 after 2773 usecs
calling  register_update_efi_random_seed+0x0/0x34 @ 1
initcall register_update_efi_random_seed+0x0/0x34 returned 0 after 4 usecs
calling  efi_shutdown_init+0x0/0x50 @ 1
initcall efi_shutdown_init+0x0/0x50 returned -19 after 4 usecs
calling  efi_earlycon_unmap_fb+0x0/0x3c @ 1
initcall efi_earlycon_unmap_fb+0x0/0x3c returned 0 after 4 usecs
calling  psci_checker+0x0/0x498 @ 1
psci_checker: PSCI checker started using 8 CPUs
psci_checker: Starting hotplug tests
psci_checker: Trying to turn off and on again all CPUs
CPU0: shutdown
psci: CPU0 killed (polled 0 ms)
CPU1: shutdown
psci: CPU1 killed (polled 0 ms)
CPU2: shutdown
psci: CPU2 killed (polled 0 ms)
CPU3: shutdown
psci: CPU3 killed (polled 0 ms)

=============================
[ BUG: Invalid wait context ]
5.11.0-rc2-salvator-x-00011-g7b0c4737861f-dirty #937 Not tainted
-----------------------------
cpuhp/4/29 is trying to lock:
ffffff84c0006818 (&parent->list_lock){..-.}-{3:3}, at: ____cache_alloc+0x100/0xa40
other info that might help us debug this:
context-{5:5}
5 locks held by cpuhp/4/29:
 #0: ffffffc010f472b0 (cpu_hotplug_lock){++++}-{0:0}, at: cpuhp_thread_fun+0xc4/0x1f4
 #1: ffffffc010f47110 (cpuhp_state-down){+.+.}-{0:0}, at: cpuhp_lock_acquire+0x0/0x44
 #2: ffffffc010f59680 (sched_domains_mutex){+.+.}-{4:4}, at: partition_sched_domains+0x34/0x5c
 #3: ffffffc01107dda8 (sysctl_lock){+.+.}-{3:3}, at: drop_sysctl_table+0x9c/0x110
 #4: ffffff86ff746e30 (krc.lock){....}-{2:2}, at: kvfree_call_rcu+0x60/0x270
stack backtrace:
CPU: 4 PID: 29 Comm: cpuhp/4 Not tainted 5.11.0-rc2-salvator-x-00011-g7b0c4737861f-dirty #937
Hardware name: Renesas Salvator-X 2nd version board based on r8a77951 (DT)
Call trace:
 dump_backtrace+0x0/0x188
 show_stack+0x14/0x28
 dump_stack+0xf0/0x140
 __lock_acquire+0x398/0x10a8
 lock_acquire+0x344/0x390
 _raw_spin_lock+0x54/0x74
 ____cache_alloc+0x100/0xa40
 kmem_cache_alloc+0x98/0x24c
 fill_pool+0xac/0x198
 __debug_object_init+0x48/0x37c
 debug_object_init+0x1c/0x28
 debug_object_activate+0x18c/0x1d0
 debug_rcu_head_queue+0x24/0x50
 kvfree_call_rcu+0x68/0x270
 drop_sysctl_table+0xc4/0x110
 drop_sysctl_table+0xd0/0x110
 unregister_sysctl_table+0x94/0xa0
 unregister_sysctl_table+0x58/0xa0
 unregister_sched_domain_sysctl+0x1c/0x2c
 partition_sched_domains_locked+0x54/0x348
 partition_sched_domains+0x44/0x5c
 sched_cpu_deactivate+0x128/0x140
 cpuhp_invoke_callback+0xd0/0x25c
 cpuhp_thread_fun+0xbc/0x1f4
 smpboot_thread_fn+0x1e4/0x1e8
 kthread+0xfc/0x10c
 ret_from_fork+0x10/0x18
CPU4: shutdown
psci: CPU4 killed (polled 0 ms)
CPU5: shutdown
psci: CPU5 killed (polled 0 ms)
CPU6: shutdown
psci: CPU6 killed (polled 0 ms)
Detected PIPT I-cache on CPU0
CPU0: Booted secondary processor 0x0000000000 [0x411fd073]
cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1497600 KHz, changing to: 1500000 KHz
Detected PIPT I-cache on CPU1
CPU1: Booted secondary processor 0x0000000001 [0x411fd073]
Detected PIPT I-cache on CPU2
CPU2: Booted secondary processor 0x0000000002 [0x411fd073]
Detected PIPT I-cache on CPU3
CPU3: Booted secondary processor 0x0000000003 [0x411fd073]
Detected VIPT I-cache on CPU4
CPU4: Booted secondary processor 0x0000000100 [0x410fd034]
Detected VIPT I-cache on CPU5
CPU5: Booted secondary processor 0x0000000101 [0x410fd034]
Detected VIPT I-cache on CPU6
CPU6: Booted secondary processor 0x0000000102 [0x410fd034]
psci_checker: Trying to turn off and on again group 0 (CPUs 0-3)
CPU0: shutdown
psci: CPU0 killed (polled 0 ms)
CPU1: shutdown
psci: CPU1 killed (polled 0 ms)
CPU2: shutdown
psci: CPU2 killed (polled 0 ms)
CPU3: shutdown
psci: CPU3 killed (polled 0 ms)
Detected PIPT I-cache on CPU0
CPU0: Booted secondary processor 0x0000000000 [0x411fd073]
cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 982800 KHz, changing to: 1000000 KHz
Detected PIPT I-cache on CPU1
CPU1: Booted secondary processor 0x0000000001 [0x411fd073]
Detected PIPT I-cache on CPU2
CPU2: Booted secondary processor 0x0000000002 [0x411fd073]
Detected PIPT I-cache on CPU3
CPU3: Booted secondary processor 0x0000000003 [0x411fd073]
psci_checker: Trying to turn off and on again group 1 (CPUs 4-7)
CPU4: shutdown
psci: CPU4 killed (polled 0 ms)
CPU5: shutdown
psci: CPU5 killed (polled 0 ms)
CPU6: shutdown
psci: CPU6 killed (polled 0 ms)
CPU7: shutdown
psci: CPU7 killed (polled 0 ms)
Detected VIPT I-cache on CPU4
CPU4: Booted secondary processor 0x0000000100 [0x410fd034]
cpufreq: cpufreq_online: CPU4: Running at unlisted initial frequency: 786240 KHz, changing to: 800000 KHz
Detected VIPT I-cache on CPU5
CPU5: Booted secondary processor 0x0000000101 [0x410fd034]
Detected VIPT I-cache on CPU6
CPU6: Booted secondary processor 0x0000000102 [0x410fd034]
Detected VIPT I-cache on CPU7
CPU7: Booted secondary processor 0x0000000103 [0x410fd034]
psci_checker: Hotplug tests passed OK
psci_checker: Starting suspend tests (10 cycles per state)
psci_checker: cpuidle not available on CPU 0, ignoring
psci_checker: cpuidle not available on CPU 1, ignoring
psci_checker: cpuidle not available on CPU 2, ignoring
psci_checker: cpuidle not available on CPU 3, ignoring
psci_checker: cpuidle not available on CPU 4, ignoring
psci_checker: cpuidle not available on CPU 5, ignoring
psci_checker: cpuidle not available on CPU 6, ignoring
psci_checker: cpuidle not available on CPU 7, ignoring
psci_checker: Could not start suspend tests on any CPU
psci_checker: PSCI checker completed
initcall psci_checker+0x0/0x498 returned -19 after 1052449 usecs
calling  of_fdt_raw_init+0x0/0x80 @ 1
initcall of_fdt_raw_init+0x0/0x80 returned 0 after 130 usecs
calling  tcp_congestion_default+0x0/0x24 @ 1
initcall tcp_congestion_default+0x0/0x24 returned 0 after 4 usecs
calling  ip_auto_config+0x0/0xeac @ 1
initcall ip_auto_config+0x0/0xeac returned -19 after 11980849 usecs
calling  init_amu_fie+0x0/0x194 @ 1
initcall init_amu_fie+0x0/0x194 returned 0 after 7 usecs
calling  trace_eval_sync+0x0/0x2c @ 1
initcall trace_eval_sync+0x0/0x2c returned 0 after 50 usecs
calling  clear_boot_tracer+0x0/0x3c @ 1
initcall clear_boot_tracer+0x0/0x3c returned 0 after 5 usecs
calling  fb_logo_late_init+0x0/0x14 @ 1
initcall fb_logo_late_init+0x0/0x14 returned 0 after 5 usecs
calling  clk_disable_unused+0x0/0xd0 @ 1

  reply	other threads:[~2021-01-19  9:18 UTC|newest]

Thread overview: 93+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-18  3:16 [PATCH v1 0/5] Enable fw_devlink=on by default Saravana Kannan
2020-12-18  3:16 ` [PATCH v1 1/5] driver core: Add debug logs for device link related probe deferrals Saravana Kannan
2020-12-18  3:17 ` [PATCH v1 2/5] driver core: Add device link support for INFERRED flag Saravana Kannan
2020-12-18  3:17 ` [PATCH v1 3/5] driver core: Have fw_devlink use DL_FLAG_INFERRED Saravana Kannan
2020-12-18  3:17 ` [PATCH v1 4/5] driver core: Handle cycles in device links created by fw_devlink Saravana Kannan
2020-12-18  6:39   ` kernel test robot
2020-12-18  6:39     ` kernel test robot
2020-12-18  6:39   ` [RFC PATCH] driver core: fw_devlink_relax_cycle() can be static kernel test robot
2020-12-18  6:39     ` kernel test robot
2020-12-18  6:48   ` [PATCH v1 4/5] driver core: Handle cycles in device links created by fw_devlink kernel test robot
2020-12-18  6:48     ` kernel test robot
2020-12-18  7:12   ` kernel test robot
2020-12-18  7:12     ` kernel test robot
2020-12-18  3:17 ` [PATCH v1 5/5] driver core: Set fw_devlink=on by default Saravana Kannan
     [not found]   ` <CGME20210111111245eucas1p15acde7ecc2ca7f7782beb8ed74c72022@eucas1p1.samsung.com>
2021-01-11 11:12     ` Marek Szyprowski
     [not found]       ` <CGME20210111141814eucas1p1f388df07b789693a999042b27f0d8c2a@eucas1p1.samsung.com>
2021-01-11 14:18         ` Marek Szyprowski
2021-01-11 21:47           ` Saravana Kannan
2021-01-12  7:11             ` Marek Szyprowski
2021-01-12 20:51               ` Saravana Kannan
2021-01-13  7:04                 ` Marek Szyprowski
2021-01-13 19:23                   ` Saravana Kannan
2021-01-14  7:36                     ` Marek Szyprowski
2021-01-14 18:08                       ` Saravana Kannan
2021-01-18 17:43                 ` Geert Uytterhoeven
2021-01-17 23:01   ` Michael Walle
2021-01-18 21:01     ` Saravana Kannan
2021-01-19 10:41       ` Michael Walle
2021-01-20  0:00         ` Saravana Kannan
2021-01-18 17:39   ` Geert Uytterhoeven
2021-01-18 17:59     ` Marc Zyngier
2021-01-18 19:16       ` Geert Uytterhoeven
2021-01-18 19:30         ` Marc Zyngier
2021-01-18 21:18         ` Saravana Kannan
2021-01-19  9:05           ` Geert Uytterhoeven [this message]
2021-01-19 18:08             ` Saravana Kannan
2021-01-19 21:50               ` Saravana Kannan
2021-01-20  9:40                 ` Geert Uytterhoeven
2021-01-20 14:26                   ` Geert Uytterhoeven
2021-01-20 17:22                     ` Saravana Kannan
2021-01-21 16:04                       ` Geert Uytterhoeven
2021-01-25 23:30                         ` Saravana Kannan
2021-01-26  8:25                           ` Geert Uytterhoeven
2021-01-20  9:11               ` Geert Uytterhoeven
2021-01-21  8:22   ` [TEST PATCH v1] driver: core: Make fw_devlink=on more forgiving Saravana Kannan
2021-01-21  8:27     ` Saravana Kannan
2021-01-21 10:37       ` Geert Uytterhoeven
2021-01-22  1:07         ` Saravana Kannan
2021-01-21 10:33     ` Marek Szyprowski
2021-01-25 17:05   ` [PATCH v1 5/5] driver core: Set fw_devlink=on by default Tudor.Ambarus
2021-01-25 18:16     ` Saravana Kannan
2021-01-28 10:59       ` Tudor.Ambarus
2021-01-28 17:04         ` Saravana Kannan
2021-02-10  5:54   ` Guenter Roeck
2021-02-10  8:20     ` Saravana Kannan
2021-02-10 15:10       ` Guenter Roeck
2021-02-10 20:52         ` Saravana Kannan
2021-02-10 21:21           ` Guenter Roeck
2021-02-17  2:39             ` Saravana Kannan
2021-02-17  3:05               ` Guenter Roeck
2021-02-17  3:13                 ` Saravana Kannan
2020-12-18 21:11 ` [PATCH v1 0/5] Enable " Saravana Kannan
2020-12-21  8:18 ` Jisheng Zhang
     [not found]   ` <CAHp75VfqL1QuvjCZ7p23e_2qhY3DUgVNaS--Uk1mEoEHsD8GBA@mail.gmail.com>
2021-01-14 16:49     ` Saravana Kannan
2020-12-21  9:48 ` Rafael J. Wysocki
2021-01-07 20:05 ` Greg Kroah-Hartman
2021-01-07 21:53   ` Saravana Kannan
2021-01-13 11:11   ` Marc Zyngier
2021-01-13 15:27     ` Jon Hunter
2021-01-13 21:29       ` Saravana Kannan
2021-01-14 11:34         ` Jon Hunter
2021-01-14 16:40           ` Saravana Kannan
2021-01-14 16:47             ` Jon Hunter
2021-01-14 16:52               ` Saravana Kannan
2021-01-14 18:55                 ` Jon Hunter
2021-01-14 21:50                   ` Saravana Kannan
2021-01-15 16:12                     ` Jon Hunter
2021-01-15 17:44                       ` Saravana Kannan
2021-01-13 20:56     ` Saravana Kannan
2021-01-13 11:30 ` Jon Hunter
2021-01-13 21:26   ` Saravana Kannan
2021-01-14 16:11     ` Jon Hunter
2021-01-14 16:47       ` Saravana Kannan
2021-01-14 16:56         ` Jon Hunter
2021-01-28 15:03           ` Jon Hunter
2021-01-28 17:27             ` Saravana Kannan
2021-02-11  0:02             ` Saravana Kannan
2021-02-11 15:03               ` Rafael J. Wysocki
2021-02-11 17:14                 ` Saravana Kannan
2021-02-11 17:48                   ` Rafael J. Wysocki
2021-02-12  3:04                     ` Saravana Kannan
2021-01-13 11:44 ` Nicolas Saenz Julienne
2021-01-13 11:48   ` Marc Zyngier
2021-01-13 21:27     ` Saravana Kannan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMuHMdVTKEy3rbdYYUKS+L1pY0y0ctMWRXNf7o+hJWyGR7L-Dg@mail.gmail.com \
    --to=geert@linux-m68k.org \
    --cc=Jisheng.Zhang@synaptics.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=john.stultz@linaro.org \
    --cc=kernel-team@android.com \
    --cc=khilman@baylibre.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=maz@kernel.org \
    --cc=nsaenzjulienne@suse.de \
    --cc=rafael@kernel.org \
    --cc=saravanak@google.com \
    --cc=yoshihiro.shimoda.uh@renesas.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.