Re: fw_devlinks preventing a panel driver from probing

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

On 22/10/2024 19:07, Saravana Kannan wrote:
On Tue, Oct 22, 2024 at 12:51 AM Tomi Valkeinen
<tomi.valkeinen@xxxxxxxxxxxxxxxx> wrote:

Hi,

On 22/10/2024 02:29, Saravana Kannan wrote:
Hi Tomi,

Sorry it took a while to get back.

On Mon, Sep 16, 2024 at 4:52 AM Tomi Valkeinen
<tomi.valkeinen@xxxxxxxxxxxxxxxx> wrote:

Hi,

We have an issue where two devices have dependencies to each other,
according to drivers/base/core.c's fw_devlinks, and this prevents them
from probing. I've been adding debugging to the core.c, but so far I
don't quite grasp the issue, so I thought to ask. Maybe someone can
instantly say that this just won't work...

So, we have two devices, DSS (display subsystem) and an LVDS panel. The
DSS normally outputs parallel video from its video ports (VP), but it
has an integrated LVDS block (OLDI, Open LVDS Display Interface). The
OLDI block takes input from DSS's parallel outputs. The OLDI is not
modeled as a separate device (neither in the DT nor in the Linux device
model) as it has no register space, and is controlled fully by the DSS.

To support dual-link LVDS, the DSS has two OLDI instances. They both
take their input from the same parallel video port, but each OLDI sends
alternate lines forward. So for a dual-link setup the connections would
be like this:

+-----+-----+         +-------+         +----------+
|     |     |         |       |         |          |
|     | VP1 +----+--->| OLDI0 +-------->|          |
|     |     |    |    |       |         |          |
| DSS +-----+    |    +-------+         |  Panel   |
|     |     |    |    |       |         |          |
|     | VP2 |    +--->| OLDI1 +-------->|          |
|     |     |         |       |         |          |
+-----+-----+         +-------+         +----------+

As the OLDI is not a separate device, it also does not have an
independent device tree node, but rather it's inside DSS's node. The DSS
parallel outputs are under a normal "ports" node, but OLDI ports are
under "oldi-txes/ports" (see below for dts to clarify this).

And I think (guess...) this is the root of the issue we're seeing, as it
means the following, one or both of which might be the reason for this
issue:

- OLDI fwnodes don't have an associated struct device *. I think the
reason is that the OLDI media graph ports are one level too deep in the
hierarchy. So while the DSS ports are associated with the DSS device,
OLDI ports are not.

This is the root cause of the issue in some sense. fw_devlink doesn't
know that DSS depends on the VP. In the current DT, it only appears as
if the OLDI depends on VP. See further below for the fix.


- The VP ports inside the DSS point to OLDI ports, which are also inside
DSS. So ports from a device point to ports in the same device (and back).

If I understand the fw_devlink code correctly, in a normal case the
links formed with media graphs are marked as a cycle
(FWLINK_FLAG_CYCLE), and then ignored as far as probing goes.

What we see here is that when using a single-link OLDI panel, the panel
driver's probe never gets called, as it depends on the OLDI, and the
link between the panel and the OLDI is not a cycle.

The DSS driver probes, but the probe fails as it requires all the panel
devices to have been probed (and thus registered to the DRM framework)
before it can finish its setup.

With dual-link, probing does happen and the drivers work. But I believe
this is essentially an accident, in the sense that the first link
between the panel and the OLDI still blocks the probing, but the second
links allows the driver core to traverse the devlinks further, causing
it to mark the links to the panel as FWLINK_FLAG_CYCLE (or maybe it only
marks one of those links, and that's enough).

If I set fw_devlink=off as a kernel parameter, the probing proceeds
successfully in both single- and dual-link cases.

Now, my questions is, is this a bug in the driver core, a bug in the DT
bindings, or something in between (DT is fine-ish, but the structure is
something that won't be supported by the driver core).

And a follow-up question, regardless of the answer to the first one:
which direction should I go from here =).

The device tree data (simplified) for this is as follows, first the
dual-link case, then the single-link case:

/* Dual-link */

dss: dss@30200000 {
          compatible = "ti,am625-dss";

          oldi-txes {
                  oldi0: oldi@0 {
                          oldi0_ports: ports {
                                  port@0 {
                                          oldi_0_in: endpoint {
                                                  remote-endpoint = <&dpi0_out0>;
                                          };
                                  };

                                  port@1 {
                                          oldi_0_out: endpoint {
                                                  remote-endpoint = <&lcd_in0>;
                                          };
                                  };
                          };
                  };

                  oldi1: oldi@1 {
                          oldi1_ports: ports {
                                  port@0 {
                                          oldi_1_in: endpoint {
                                                  remote-endpoint = <&dpi0_out1>;
                                          };
                                  };

                                  port@1 {
                                          oldi_1_out: endpoint {
                                                  remote-endpoint = <&lcd_in1>;
                                          };
                                  };
                          };
                  };
          };

          dss_ports: ports {
                  port@0 {
                          dpi0_out0: endpoint@0 {
                                  remote-endpoint = <&oldi_0_in>;
                          };
                          dpi0_out1: endpoint@1 {
                                  remote-endpoint = <&oldi_1_in>;
                          };
                  };
          };
};

display {
          compatible = "microtips,mf-101hiebcaf0", "panel-simple";

In here, add this new property that I added some time back.

post-init-providers = <&oldi-txes>;

Thanks! This helps:

post-init-providers = <&oldi0>;

or for dual-link:

post-init-providers = <&oldi0>, <&oldi1>;

This tells fw_devlink that VP doesn't depend on this node for
initialization/probing. This property is basically available to break
cycles in DT and mark one of the edges of the cycles as "not a real
init dependency".

You should do the same for the single link case too.

While this helps, it's not very nice... Every new DT overlay that uses
OLDI display needs to have these.

Actually, taking a closer look at the DT and assuming I am visualizing
it correctly in my head, fw_devlink should notice the cycle between
oldi-txes and display and shouldn't block display from probing. Can
you check the cycle detection code and see where it's bailing out
early and not marking the fwnode link with the CYCLE flag?

__fw_devlink_relax_cycles() is where you want to look. There are a
bunch of debug log messages inside it and around where it's called
from.

I'm not quite sure how to read the debug messages. I have attached three kernel logs, with the debug prints enabled in drivers/base/core.c. The "fixed" is the one with the post-init-providers.

I load the display drivers as modules after the main boot has happened, and at the end of the logs I have the kernel prints when I load the modules. The single-link.txt also shows the debugfs/devices_deferred file.

The relevant strings to search are "dss", "oldi" and "display" (display is the panel).

So... All devlinks are supplier-consumer links. How are those created with an OF media graph, as there's no clear supplier nor consumer. In this particular case I see that display is marked as a consumer of oldi, but also dss is marked as a consumer of oldi. Is this just, essentially, random?

Also, as there's no separate device for OLDI, I don't see oldi at all in /sys/class/devlink/. But what I see there is a bit odd...

For dual link I get:

platform:display--platform:30200000.dss

which, I guess, makes sense. But for single link fixed case, I don't have anything there...

Also, can you check debugfs/devices_deferred, or the
"wait_for_supplier" file under /sys/devices/..../display/ to make sure
it's actually stuck on oldi-txes? Just to make cure it's not some
other corner case that's triggered by oldi-txes?

I'm still confused about why this is needed. OF graphs are _always_
two-way links. Doesn't that mean that OF graphs never can be used for
dependencies, as they go both ways?

Good question :) Yes, they'll always be ignored as cycles. But with
post-init-providers, it's actually better to add it so that cycles are
broken and better ordering is enforced. See my talk at LPC referee
talk about fw_devlink to see all the benefits you get from it. :)

Thanks for the pointer! It was interesting and I now understand the whole devlink thing better, although I have to say the details still escape me... =)

Also, isn't post-init-providers describing software behavior, not hardware? It doesn't sound like something we should have in the DT.

If so, shouldn't we just always
ignore all OF graphs for dependency checking?

There are cases when two devices A and B have remote-endpoints between
them and ALSO have for example a gpio dependency between them. Where
the gpio is the "post-init-supplier". If we don't parse
remote-endpoint and mark the cycles, cases like these don't get to
probe.

I'm sorry, I don't understand this. If we have 1) A and B with a (one way) gpio dependency, and 2) A and B with a (one way) gpio dependency _and_ two way media graph dependency, shouldn't the cases behave identically, as the graph dependency should just be ignored?

Or maybe I don't understand the example case at all... Why would the gpio be a post-init-supplier? Isn't gpio something you want at init time?

 Tomi


-Saravana


   Tomi


Hope that helps. Let me know.

Thanks,
Saravana


          ports {
                  port@0 {
                          lcd_in0: endpoint {
                                  remote-endpoint = <&oldi_0_out>;
                          };
                  };

                  port@1 {
                          lcd_in1: endpoint {
                                  remote-endpoint = <&oldi_1_out>;
                          };
                  };
          };
};


/* Single-link */

dss: dss@30200000 {
          compatible = "ti,am625-dss";

          oldi-txes {
                  oldi0: oldi@0 {
                          oldi0_ports: ports {
                                  port@0 {
                                          oldi_0_in: endpoint {
                                                  remote-endpoint = <&dpi0_out0>;
                                          };
                                  };

                                  port@1 {
                                          oldi_0_out: endpoint {
                                                  remote-endpoint = <&lcd_in0>;
                                          };
                                  };
                          };
                  };
          };

          dss_ports: ports {
                  port@0 {
                          dpi0_out0: endpoint@0 {
                                  remote-endpoint = <&oldi_0_in>;
                          };
                  };
          };
};

display {
          compatible = "microtips,mf-101hiebcaf0", "panel-simple";

          ports {
                  port@0 {
                          lcd_in0: endpoint {
                                  remote-endpoint = <&oldi_0_out>;
                          };
                  };
          };
};

    Tomi


SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
ftrace: allocating 48751 entries in 191 pages
ftrace: allocated 191 pages with 7 groups
trace event string verifier disabled
Running RCU self tests
Running RCU synchronous self tests
rcu: Preemptible hierarchical RCU implementation.
rcu: 	RCU event tracing is enabled.
rcu: 	RCU lockdep checking is enabled.
rcu: 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
	Trampoline variant of Tasks RCU enabled.
	Rude variant of Tasks RCU enabled.
	Tracing variant of Tasks RCU enabled.
rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Running RCU synchronous self tests
RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
GICv3: GIC: Using split EOI/Deactivate mode
GICv3: 256 SPIs implemented
GICv3: 0 Extended SPIs implemented
Root IRQ handler: gic_handle_irq
GICv3: GICv3 features: 16 PPIs
GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
ITS [mem 0x01820000-0x0182ffff]
GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
ITS: using cache flushing for cmd queue
GICv3: using LPI property table @0x0000000080300000
GIC: using cache flushing for LPI property table
GICv3: CPU0: using allocated LPI pending table @0x0000000080310000
rcu: srcu_init: Setting srcu_struct sizes based on contention.
arch_timer: cp15 timer(s) running at 200.00MHz (phys).
clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
Console: colour dummy device 80x25
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: 6429 kB
 memory used for stack traces: 4224 kB
 per task-struct memory footprint: 1920 bytes
Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
pid_max: default: 32768 minimum: 301
LSM: initializing lsm=capability
Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
Running RCU synchronous self tests
Running RCU synchronous self tests
Running RCU Tasks wait API self tests
Running RCU Tasks Rude wait API self tests
Running RCU Tasks Trace wait API self tests
rcu: Hierarchical SRCU implementation.
rcu: 	Max phase no-delay instances is 1000.
Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Callback from call_rcu_tasks_trace() invoked.
EFI services will not be available.
smp: Bringing up secondary CPUs ...
Detected VIPT I-cache on CPU1
GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
GICv3: CPU1: using allocated LPI pending table @0x0000000080320000
CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
Detected VIPT I-cache on CPU2
GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
GICv3: CPU2: using allocated LPI pending table @0x0000000080330000
CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
Detected VIPT I-cache on CPU3
GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
GICv3: CPU3: using allocated LPI pending table @0x0000000080340000
CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
smp: Brought up 1 node, 4 CPUs
SMP: Total of 4 processors activated.
CPU: All CPU(s) started at EL2
CPU features: detected: 32-bit EL0 Support
CPU features: detected: CRC32 instructions
alternatives: applying system-wide alternatives
Memory: 1887984K/2097152K available (15616K kernel code, 2702K rwdata, 6308K rodata, 5888K init, 16316K bss, 131380K reserved, 65536K cma-reserved)
devtmpfs: initialized
device: 'platform': device_add
device: 'memory': device_add
device: 'memory16': device_add
device: 'memory17': device_add
device: 'memory18': device_add
device: 'memory19': device_add
device: 'memory20': device_add
device: 'memory21': device_add
device: 'memory22': device_add
device: 'memory23': device_add
device: 'memory24': device_add
device: 'memory25': device_add
device: 'memory26': device_add
device: 'memory27': device_add
device: 'memory28': device_add
device: 'memory29': device_add
device: 'memory30': device_add
device: 'memory31': device_add
device: 'node': device_add
device: 'node0': device_add
device: 'cpu': device_add
device: 'cpu0': device_add
device: 'cpu1': device_add
device: 'cpu2': device_add
device: 'cpu3': device_add
device: 'container': device_add
device: 'workqueue': device_add
Running RCU synchronous self tests
Running RCU synchronous self tests
DMA-API: preallocated 65536 debug entries
DMA-API: debugging enabled by kernel config
clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
20992 pages in range for non-PLT usage
512512 pages in range for PLT usage
pinctrl core: initialized pinctrl subsystem
device: 'reg-dummy': device_add
DMI not present or invalid.
device: 'regulator.0': device_add
NET: Registered PF_NETLINK/PF_ROUTE protocol family
Callback from call_rcu_tasks() invoked.
DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
audit: initializing netlink subsys (disabled)
audit: type=2000 audit(0.340:1): state=initialized audit_enabled=0 res=1
device: 'vtcon0': device_add
thermal_sys: Registered thermal governor 'step_wise'
thermal_sys: Registered thermal governor 'power_allocator'
cpuidle: using governor menu
hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
ASID allocator initialised with 65536 entries
Serial: AMBA PL011 UART driver
device: '9ca00000.ramoops': device_add
device: 'firmware:optee': device_add
device: 'firmware:psci': device_add
device: 'display': device_add
/display Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@1
/display Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@0
device: 'timer-cl0-cpu0': device_add
/timer-cl0-cpu0 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
platform timer-cl0-cpu0: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/timer-cl0-cpu0 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'pmu': device_add
/pmu Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
platform pmu: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/pmu Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'bus@f0000': device_add
/bus@f0000/bus@b00000/target-module@2b300050 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@b00000/target-module@2b300050 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@b00000/temperature-sensor@b00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/interrupt-controller@1800000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@100000/clock-controller@82e0 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@100000/clock-controller@82e4 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@48000000/mailbox@4d000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@48000000/interrupt-controller@48000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@48000000/dma-controller@485c0100 Linked as a fwnode consumer to /bus@f0000/bus@48000000/interrupt-controller@48000000
/bus@f0000/bus@48000000/dma-controller@485c0000 Linked as a fwnode consumer to /bus@f0000/bus@48000000/interrupt-controller@48000000
/bus@f0000/system-controller@44043000 Linked as a fwnode consumer to /bus@f0000/bus@48000000/mailbox@4d000000
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-uart0-default-pins
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
/bus@f0000/i2c@20000000/touchscreen@41 Linked as a fwnode consumer to /bus@f0000/i2c@20010000/gpio@22
/bus@f0000/i2c@20000000/tps6598x@3f/connector Linked as a fwnode consumer to /bus@f0000/dwc3-usb@f900000/usb@31000000
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
/bus@f0000/i2c@20010000/audio-codec@1b Linked as a fwnode consumer to /regulator-2
/bus@f0000/i2c@20010000/audio-codec@1b Linked as a fwnode consumer to /regulator-5
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/gpio@601000
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-gpio1-ioexp-intr-default-pins
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
/bus@f0000/interrupt-controller@a00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@a00000
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@a00000
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mmc0-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mmc1-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /regulator-3
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /regulator-4
/bus@f0000/dwc3-usb@f900000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dwc3-usb@f900000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000/i2c@20000000/tps6598x@3f/connector
/bus@f0000/dwc3-usb@f910000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dwc3-usb@f910000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-usb1-default-pins
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/ospi0-default-pins
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-rgmii1-default-pins
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-rgmii2-default-pins
/bus@f0000/ethernet@8000000/ethernet-ports/port@1 Linked as a fwnode consumer to /bus@f0000/bus@100000/phy@4044
/bus@f0000/ethernet@8000000/ethernet-ports/port@2 Linked as a fwnode consumer to /bus@f0000/bus@100000/phy@4044
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mdio1-default-pins
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /clock-divider-oldi
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-dss0-default-pins
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /display
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /bus@f0000/dss@30200000
/bus@f0000/dss@30200000/oldi-txes/oldi@1 Linked as a fwnode consumer to /display
/bus@f0000/dss@30200000/oldi-txes/oldi@1 Linked as a fwnode consumer to /bus@f0000/dss@30200000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@1
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@0
/bus@f0000/mailbox@29000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/watchdog@e000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e030000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e030000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e0f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e0f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mcasp1-default-pins
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /clock-divider-oldi - might never become dev
device: 'platform:display--platform:bus@f0000': device_add
platform bus@f0000: Linked as a sync state only consumer to display
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'bus@f0000:bus@4000000': device_add
device: '4084000.pinctrl': device_add
device: '4100000.esm': device_add
device: 'bus@f0000:bus@b00000': device_add
platform bus@f0000:bus@b00000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '43000000.syscon': device_add
device: '43000014.chipid': device_add
device: '43000200.ethernet-mac-syscon': device_add
device: '43004008.syscon': device_add
device: '43004018.syscon': device_add
device: '2b300050.target-module': device_add
device: '2b1f0000.rtc': device_add
platform 2b1f0000.rtc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'b00000.temperature-sensor': device_add
device: '70000000.sram': device_add
device: 'bus@f0000:bus@100000': device_add
device: '104044.phy': device_add
device: '104130.clock-controller': device_add
device: '1082e0.clock-controller': device_add
device: '1082e4.clock-controller': device_add
device: '108600.oldi-io-controller': device_add
device: 'bus@f0000:bus@48000000': device_add
platform bus@f0000:bus@48000000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000:bus@48000000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '4d000000.mailbox': device_add
platform 4d000000.mailbox: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@48000000/mailbox@4d000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '48000000.interrupt-controller': device_add
platform 48000000.interrupt-controller: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@48000000/interrupt-controller@48000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '485c0100.dma-controller': device_add
device: 'platform:48000000.interrupt-controller--platform:485c0100.dma-controller': device_add
devices_kset: Moving 485c0100.dma-controller to end of list
platform 485c0100.dma-controller: Linked as a consumer to 48000000.interrupt-controller
/bus@f0000/bus@48000000/dma-controller@485c0100 Dropping the fwnode link to /bus@f0000/bus@48000000/interrupt-controller@48000000
device: '485c0000.dma-controller': device_add
device: 'platform:48000000.interrupt-controller--platform:485c0000.dma-controller': device_add
devices_kset: Moving 485c0000.dma-controller to end of list
platform 485c0000.dma-controller: Linked as a consumer to 48000000.interrupt-controller
/bus@f0000/bus@48000000/dma-controller@485c0000 Dropping the fwnode link to /bus@f0000/bus@48000000/interrupt-controller@48000000
device: '44043000.system-controller': device_add
device: 'platform:4d000000.mailbox--platform:44043000.system-controller': device_add
devices_kset: Moving 44043000.system-controller to end of list
platform 44043000.system-controller: Linked as a consumer to 4d000000.mailbox
/bus@f0000/system-controller@44043000 Dropping the fwnode link to /bus@f0000/bus@48000000/mailbox@4d000000
device: '40900000.crypto': device_add
device: 'f4000.pinctrl': device_add
device: '420000.esm': device_add
device: '2400000.timer': device_add
platform 2400000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2410000.timer': device_add
platform 2410000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2420000.timer': device_add
platform 2420000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2430000.timer': device_add
platform 2430000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2440000.timer': device_add
platform 2440000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2450000.timer': device_add
platform 2450000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2460000.timer': device_add
platform 2460000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2470000.timer': device_add
platform 2470000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2800000.serial': device_add
platform 2800000.serial: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20000000.i2c': device_add
platform 20000000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20010000.i2c': device_add
platform 20010000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20020000.i2c': device_add
platform 20020000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'bus@f0000:interrupt-controller@a00000': device_add
platform bus@f0000:interrupt-controller@a00000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/interrupt-controller@a00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '600000.gpio': device_add
device: 'platform:bus@f0000:interrupt-controller@a00000--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
platform 600000.gpio: Linked as a consumer to bus@f0000:interrupt-controller@a00000
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/interrupt-controller@a00000
platform 600000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: '601000.gpio': device_add
device: 'platform:601000.gpio--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to 601000.gpio
device: 'platform:bus@f0000:interrupt-controller@a00000--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to bus@f0000:interrupt-controller@a00000
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/interrupt-controller@a00000
platform 601000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: 'fa10000.mmc': device_add
platform fa10000.mmc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'fa00000.mmc': device_add
platform fa00000.mmc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'f900000.dwc3-usb': device_add
platform f900000.dwc3-usb: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'fc00000.bus': device_add
platform fc00000.bus: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'fc40000.spi': device_add
platform fc40000.spi: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'fd00000.gpu': device_add
platform fd00000.gpu: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '8000000.ethernet': device_add
device: 'platform:104044.phy--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to 104044.phy
platform 8000000.ethernet: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '30200000.dss': device_add
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: depends on /bus@f0000/dss@30200000
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@1: cycle: depends on /bus@f0000/dss@30200000
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@1: cycle: child of /bus@f0000/dss@30200000
/display: cycle: depends on /bus@f0000/dss@30200000/oldi-txes/oldi@1
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: depends on /display
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: child of /bus@f0000/dss@30200000
/bus@f0000/dss@30200000: cycle: depends on /bus@f0000/dss@30200000/oldi-txes/oldi@0
----- cycle: end -----
platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@0
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@1: cycle: depends on /bus@f0000/dss@30200000
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: depends on /bus@f0000/dss@30200000
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: child of /bus@f0000/dss@30200000
/display: cycle: depends on /bus@f0000/dss@30200000/oldi-txes/oldi@0
/bus@f0000/dss@30200000/oldi-txes/oldi@1: cycle: depends on /display
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@1: cycle: child of /bus@f0000/dss@30200000
/bus@f0000/dss@30200000: cycle: depends on /bus@f0000/dss@30200000/oldi-txes/oldi@1
----- cycle: end -----
platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@1
platform 30200000.dss: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
platform 30200000.dss: Not linking /clock-divider-oldi - might never become dev
/bus@f0000/dss@30200000 Dropping the fwnode link to /clock-divider-oldi
device: 'platform:display--platform:30200000.dss': device_add
platform 30200000.dss: Linked as a sync state only consumer to display
device: '2a000000.spinlock': device_add
device: '29000000.mailbox': device_add
platform 29000000.mailbox: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mailbox@29000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'e000000.watchdog': device_add
device: 'e010000.watchdog': device_add
device: 'e020000.watchdog': device_add
device: 'e030000.watchdog': device_add
device: 'e0f0000.watchdog': device_add
device: '2b10000.audio-controller': device_add
platform 2b10000.audio-controller: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'opp-table': device_add
device: 'l2-cache0': device_add
device: 'leds': device_add
/leds Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/usr-led-default-pins
/leds/led-0 Linked as a fwnode consumer to /bus@f0000/gpio@601000
device: 'platform:601000.gpio--platform:leds': device_add
platform leds: Linked as a sync state only consumer to 601000.gpio
device: 'sound': device_add
/sound/simple-audio-card,codec Linked as a fwnode consumer to /clk-0
platform sound: Not linking /clk-0 - might never become dev
device: 'regulator-0': device_add
device: 'regulator-1': device_add
/regulator-1 Linked as a fwnode consumer to /regulator-0
device: 'platform:regulator-0--platform:regulator-1': device_add
devices_kset: Moving regulator-1 to end of list
platform regulator-1: Linked as a consumer to regulator-0
/regulator-1 Dropping the fwnode link to /regulator-0
device: 'regulator-2': device_add
/regulator-2 Linked as a fwnode consumer to /regulator-0
device: 'platform:regulator-2--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to regulator-2
device: 'platform:regulator-0--platform:regulator-2': device_add
devices_kset: Moving regulator-2 to end of list
platform regulator-2: Linked as a consumer to regulator-0
/regulator-2 Dropping the fwnode link to /regulator-0
device: 'regulator-3': device_add
/regulator-3 Linked as a fwnode consumer to /regulator-2
/regulator-3 Linked as a fwnode consumer to /bus@f0000/i2c@20010000/gpio@22
device: 'platform:regulator-3--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to regulator-3
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /regulator-3
device: 'platform:regulator-2--platform:regulator-3': device_add
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: Linked as a consumer to regulator-2
/regulator-3 Dropping the fwnode link to /regulator-2
device: 'regulator-4': device_add
/regulator-4 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
/regulator-4 Linked as a fwnode consumer to /regulator-1
/regulator-4 Linked as a fwnode consumer to /bus@f0000/gpio@600000
device: 'platform:regulator-4--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to regulator-4
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /regulator-4
device: 'platform:600000.gpio--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to 600000.gpio
/regulator-4 Dropping the fwnode link to /bus@f0000/gpio@600000
device: 'platform:regulator-1--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to regulator-1
/regulator-4 Dropping the fwnode link to /regulator-1
device: 'regulator-5': device_add
/regulator-5 Linked as a fwnode consumer to /regulator-2
device: 'platform:regulator-5--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to regulator-5
device: 'platform:regulator-2--platform:regulator-5': device_add
devices_kset: Moving regulator-5 to end of list
platform regulator-5: Linked as a consumer to regulator-2
/regulator-5 Dropping the fwnode link to /regulator-2
device: 'writeback': device_add
HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
device: 'memory_tiering': device_add
ACPI: Interpreter disabled.
device: 'soc0': device_add
k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
platform regulator-1: error -EPROBE_DEFER: supplier regulator-0 not ready
platform regulator-2: error -EPROBE_DEFER: supplier regulator-0 not ready
platform regulator-3: error -EPROBE_DEFER: wait for supplier /bus@f0000/i2c@20010000/gpio@22
device: 'regulator.1': device_add
platform regulator-5: error -EPROBE_DEFER: supplier regulator-2 not ready
platform regulator-4: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
iommu: Default domain type: Translated
iommu: DMA domain TLB invalidation policy: strict mode
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
platform 20000000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
platform 20010000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
platform 20020000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
PTP clock support registered
EDAC MC: Ver: 3.0.0
device: 'edac': device_add
device: 'mc': device_add
scmi_core: SCMI protocol bus registered
FPGA manager framework
Advanced Linux Sound Architecture Driver Initialized.
device: 'lo': device_add
clocksource: Switched to clocksource arch_sys_counter
VFS: Disk quotas dquot_6.6.0
VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
pnp: PnP ACPI: disabled
device: 'mem': device_add
device: 'null': device_add
device: 'port': device_add
device: 'zero': device_add
device: 'full': device_add
device: 'random': device_add
device: 'urandom': device_add
device: 'kmsg': device_add
device: 'tty': device_add
device: 'console': device_add
device: 'tty0': device_add
device: 'vcs': device_add
device: 'vcsu': device_add
device: 'vcsa': device_add
device: 'vcs1': device_add
device: 'vcsu1': device_add
device: 'vcsa1': device_add
device: 'tty1': device_add
device: 'tty2': device_add
device: 'tty3': device_add
device: 'tty4': device_add
device: 'tty5': device_add
device: 'tty6': device_add
device: 'tty7': device_add
device: 'tty8': device_add
device: 'tty9': device_add
device: 'tty10': device_add
device: 'tty11': device_add
device: 'tty12': device_add
device: 'tty13': device_add
device: 'tty14': device_add
device: 'tty15': device_add
device: 'tty16': device_add
device: 'tty17': device_add
device: 'tty18': device_add
device: 'tty19': device_add
device: 'tty20': device_add
device: 'tty21': device_add
device: 'tty22': device_add
device: 'tty23': device_add
device: 'tty24': device_add
device: 'tty25': device_add
device: 'tty26': device_add
device: 'tty27': device_add
device: 'tty28': device_add
device: 'tty29': device_add
device: 'tty30': device_add
device: 'tty31': device_add
device: 'tty32': device_add
device: 'tty33': device_add
device: 'tty34': device_add
device: 'tty35': device_add
device: 'tty36': device_add
device: 'tty37': device_add
device: 'tty38': device_add
device: 'tty39': device_add
device: 'tty40': device_add
device: 'tty41': device_add
device: 'tty42': device_add
device: 'tty43': device_add
device: 'tty44': device_add
device: 'tty45': device_add
device: 'tty46': device_add
device: 'tty47': device_add
device: 'tty48': device_add
device: 'tty49': device_add
device: 'tty50': device_add
device: 'tty51': device_add
device: 'tty52': device_add
device: 'tty53': device_add
device: 'tty54': device_add
device: 'tty55': device_add
device: 'tty56': device_add
device: 'tty57': device_add
device: 'tty58': device_add
device: 'tty59': device_add
device: 'tty60': device_add
device: 'tty61': device_add
device: 'tty62': device_add
device: 'tty63': device_add
device: 'hw_random': device_add
NET: Registered PF_INET protocol family
IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 73728 bytes, linear)
Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
TCP bind hash table entries: 16384 (order: 9, 2359296 bytes, linear)
TCP: Hash tables configured (established 16384 bind 16384)
UDP hash table entries: 1024 (order: 5, 163840 bytes, linear)
UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear)
NET: Registered PF_UNIX/PF_LOCAL protocol family
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp-with-tls transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
device: 'snapshot': device_add
device: 'clocksource': device_add
device: 'clocksource0': device_add
device: 'clockevents': device_add
device: 'clockevent0': device_add
device: 'clockevent1': device_add
device: 'clockevent2': device_add
device: 'clockevent3': device_add
device: 'broadcast': device_add
device: 'breakpoint': device_add
device: 'uprobe': device_add
device: 'tracepoint': device_add
device: 'software': device_add
Initialise system trusted keyrings
workingset: timestamp_bits=42 max_order=19 bucket_order=0
squashfs: version 4.0 (2009/01/31) Phillip Lougher
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
nfs4filelayout_init: NFSv4 File Layout Driver Registering...
nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
device: 'autofs': device_add
Key type asymmetric registered
Asymmetric key parser 'x509' registered
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
io scheduler mq-deadline registered
io scheduler kyber registered
io scheduler bfq registered
ti-sci-intr bus@f0000:interrupt-controller@a00000: error -EPROBE_DEFER: ti,sci read fail
ti-sci-inta 48000000.interrupt-controller: error -EPROBE_DEFER: ti,sci read fail
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/ethernet@8000000/cpts@3d000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/interrupt-controller@1800000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/interrupt-controller@1800000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'platform:bus@f0000--platform:f900000.dwc3-usb': device_add
platform f900000.dwc3-usb: Linked as a sync state only consumer to bus@f0000
device: 'platform:bus@f0000--platform:f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Linked as a sync state only consumer to bus@f0000
device: 'platform:bus@f0000--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to bus@f0000
simple-pm-bus bus@f0000: Dropping the link to display
device: 'platform:display--platform:bus@f0000': device_unregister
platform 2b300050.target-module: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: 'phy-104044.phy.0': device_add
device: 'phy-104044.phy.1': device_add
pinctrl-single 4084000.pinctrl: 34 pins, size 136
pinctrl-single f4000.pinctrl: 171 pins, size 684
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-uart0-default-pins
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mmc0-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mmc1-default-pins
/leds Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/leds Dropping the fwnode link to /bus@f0000/pinctrl@f4000/usr-led-default-pins
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mdio1-default-pins
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-rgmii1-default-pins
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-usb1-default-pins
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mcasp1-default-pins
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-dss0-default-pins
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-rgmii2-default-pins
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/ospi0-default-pins
/regulator-4 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/regulator-4 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-gpio1-ioexp-intr-default-pins
device: 'platform:f4000.pinctrl--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to f4000.pinctrl
/regulator-4 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to f4000.pinctrl
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:30200000.dss': device_add
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to f4000.pinctrl
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to f4000.pinctrl
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Linked as a sync state only consumer to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to f4000.pinctrl
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:leds': device_add
devices_kset: Moving leds to end of list
platform leds: Linked as a consumer to f4000.pinctrl
/leds Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to f4000.pinctrl
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to f4000.pinctrl
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to f4000.pinctrl
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
ledtrig-cpu: registered to indicate activity on CPUs
device: 'acpi-einj': device_add
platform 1082e0.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
platform 1082e4.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
platform 485c0100.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
platform 485c0000.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
device: 'ptyp0': device_add
device: 'ptyp1': device_add
device: 'ptyp2': device_add
device: 'ptyp3': device_add
device: 'ptyp4': device_add
device: 'ptyp5': device_add
device: 'ptyp6': device_add
device: 'ptyp7': device_add
device: 'ptyp8': device_add
device: 'ptyp9': device_add
device: 'ptypa': device_add
device: 'ptypb': device_add
device: 'ptypc': device_add
device: 'ptypd': device_add
device: 'ptype': device_add
device: 'ptypf': device_add
device: 'ttyp0': device_add
device: 'ttyp1': device_add
device: 'ttyp2': device_add
device: 'ttyp3': device_add
device: 'ttyp4': device_add
device: 'ttyp5': device_add
device: 'ttyp6': device_add
device: 'ttyp7': device_add
device: 'ttyp8': device_add
device: 'ttyp9': device_add
device: 'ttypa': device_add
device: 'ttypb': device_add
device: 'ttypc': device_add
device: 'ttypd': device_add
device: 'ttype': device_add
device: 'ttypf': device_add
device: 'ptmx': device_add
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
device: 'serial8250': device_add
device: 'serial8250:0': device_add
device: 'serial8250:0.0': device_add
device: 'serial0': device_add
device: 'ttyS0': device_add
device: 'serial8250:0.1': device_add
device: 'serial0': device_add
device: 'ttyS1': device_add
device: 'serial8250:0.2': device_add
device: 'serial0': device_add
device: 'ttyS2': device_add
device: 'serial8250:0.3': device_add
device: 'serial0': device_add
device: 'ttyS3': device_add
STM32 USART driver initialized
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'loop-control': device_add
device: 'loop0': device_add
device: '7:0': device_add
device: 'loop1': device_add
device: '7:1': device_add
device: 'loop2': device_add
device: '7:2': device_add
device: 'loop3': device_add
device: '7:3': device_add
device: 'loop4': device_add
device: '7:4': device_add
device: 'loop5': device_add
device: '7:5': device_add
device: 'loop6': device_add
device: '7:6': device_add
device: 'loop7': device_add
device: '7:7': device_add
loop: module loaded
device: 'system': device_add
device: 'reserved': device_add
device: 'mtd-0': device_add
platform fc40000.spi: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
device: 'Fixed MDIO bus.0': device_add
device: 'fixed-0': device_add
tun: Universal TUN/TAP device driver, 1.6
device: 'tun': device_add
platform 8000000.ethernet: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
device: 'vfio': device_add
VFIO - User Level meta-driver version: 0.3
platform f900000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform f910000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2b1f0000.rtc: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
i2c_dev: i2c /dev entries driver
device: 'ti-cpufreq': device_add
device: 'cpufreq-dt': device_add
cpu cpu0: error -EPROBE_DEFER: Couldn't find clock
device: 'psci-cpuidle': device_add
platform 44043000.system-controller: error -EPROBE_DEFER: supplier 4d000000.mailbox not ready
SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
platform 2400000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2410000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2420000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2430000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2440000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2450000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2460000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2470000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
device: 'armv8_cortex_a53': device_add
hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 (0,8000003f) counters available
watchdog: NMI not fully supported
watchdog: Hard watchdog permanently disabled
optee: probing for conduit method.
optee: revision 4.0 (2a5b1d12)
device: 'tee0': device_add
device: 'teepriv0': device_add
optee: dynamic shared memory is enabled
device: 'optee-ta-ab7a617c-b8e7-4d8f-8301-d09b61036b64': device_add
optee: initialized driver
random: crng init done
device: 'timer': device_add
device: 'snd-soc-dummy': device_add
NET: Registered PF_PACKET protocol family
Key type dns_resolver registered
device: 'cpu_dma_latency': device_add
registered taskstats version 1
Loading compiled-in X.509 certificates
device: 'memory_tier4': device_add
Demotion targets for Node 0: null
kmemleak: Kernel memory leak detector initialized (mem pool available: 15791)
kmemleak: Automatic memory scanning thread started
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving regulator-1 to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-2 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-5 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-5 to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 20020000.i2c to end of list
device: 'regulator.2': device_add
platform 20020000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving bus@f0000:interrupt-controller@a00000 to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 601000.gpio to end of list
ti-sci-intr bus@f0000:interrupt-controller@a00000: error -EPROBE_DEFER: ti,sci read fail
devices_kset: Moving 48000000.interrupt-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
devices_kset: Moving 485c0000.dma-controller to end of list
device: 'regulator.3': device_add
ti-sci-inta 48000000.interrupt-controller: error -EPROBE_DEFER: ti,sci read fail
platform regulator-3: error -EPROBE_DEFER: wait for supplier /bus@f0000/i2c@20010000/gpio@22
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving leds to end of list
device: 'regulator.4': device_add
platform regulator-4: error -EPROBE_DEFER: supplier 600000.gpio not ready
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
devices_kset: Moving 1082e0.clock-controller to end of list
platform 1082e0.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 1082e4.clock-controller to end of list
platform 1082e4.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 485c0100.dma-controller to end of list
platform 485c0100.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
devices_kset: Moving 485c0000.dma-controller to end of list
platform 485c0000.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
devices_kset: Moving 2800000.serial to end of list
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving cpufreq-dt to end of list
cpu cpu0: error -EPROBE_DEFER: Couldn't find clock
devices_kset: Moving 44043000.system-controller to end of list
ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.1.8--v09.01.08 (Kool Koala)')
device: '44043000.system-controller:power-controller': device_add
device: 'platform:44043000.system-controller:power-controller--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e0f0000.watchdog': device_add
devices_kset: Moving e0f0000.watchdog to end of list
platform e0f0000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e0f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e030000.watchdog': device_add
devices_kset: Moving e030000.watchdog to end of list
platform e030000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e030000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e020000.watchdog': device_add
devices_kset: Moving e020000.watchdog to end of list
platform e020000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e010000.watchdog': device_add
devices_kset: Moving e010000.watchdog to end of list
platform e010000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e000000.watchdog': device_add
devices_kset: Moving e000000.watchdog to end of list
platform e000000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:30200000.dss': device_add
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fd00000.gpu': device_add
devices_kset: Moving fd00000.gpu to end of list
platform fd00000.gpu: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:f910000.dwc3-usb': device_add
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dwc3-usb@f910000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:f900000.dwc3-usb': device_add
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dwc3-usb@f900000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20010000.i2c': device_add
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2470000.timer': device_add
devices_kset: Moving 2470000.timer to end of list
platform 2470000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2460000.timer': device_add
devices_kset: Moving 2460000.timer to end of list
platform 2460000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2450000.timer': device_add
devices_kset: Moving 2450000.timer to end of list
platform 2450000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2440000.timer': device_add
devices_kset: Moving 2440000.timer to end of list
platform 2440000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2430000.timer': device_add
devices_kset: Moving 2430000.timer to end of list
platform 2430000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2420000.timer': device_add
devices_kset: Moving 2420000.timer to end of list
platform 2420000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2410000.timer': device_add
devices_kset: Moving 2410000.timer to end of list
platform 2410000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2400000.timer': device_add
devices_kset: Moving 2400000.timer to end of list
platform 2400000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:b00000.temperature-sensor': device_add
devices_kset: Moving b00000.temperature-sensor to end of list
platform b00000.temperature-sensor: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/temperature-sensor@b00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2b1f0000.rtc': device_add
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2b300050.target-module': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/target-module@2b300050 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: '44043000.system-controller:clock-controller': device_add
device: 'platform:44043000.system-controller:clock-controller--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e0f0000.watchdog': device_add
devices_kset: Moving e0f0000.watchdog to end of list
platform e0f0000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e0f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e030000.watchdog': device_add
devices_kset: Moving e030000.watchdog to end of list
platform e030000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e030000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e020000.watchdog': device_add
devices_kset: Moving e020000.watchdog to end of list
platform e020000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e010000.watchdog': device_add
devices_kset: Moving e010000.watchdog to end of list
platform e010000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e000000.watchdog': device_add
devices_kset: Moving e000000.watchdog to end of list
platform e000000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:30200000.dss': device_add
platform 30200000.dss: Linked as a sync state only consumer to 44043000.system-controller:clock-controller
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to 44043000.system-controller:clock-controller
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fd00000.gpu': device_add
devices_kset: Moving fd00000.gpu to end of list
platform fd00000.gpu: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:f910000.dwc3-usb': device_add
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dwc3-usb@f910000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:f900000.dwc3-usb': device_add
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dwc3-usb@f900000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20010000.i2c': device_add
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2470000.timer': device_add
devices_kset: Moving 2470000.timer to end of list
platform 2470000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2460000.timer': device_add
devices_kset: Moving 2460000.timer to end of list
platform 2460000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2450000.timer': device_add
devices_kset: Moving 2450000.timer to end of list
platform 2450000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2440000.timer': device_add
devices_kset: Moving 2440000.timer to end of list
platform 2440000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2430000.timer': device_add
devices_kset: Moving 2430000.timer to end of list
platform 2430000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2420000.timer': device_add
devices_kset: Moving 2420000.timer to end of list
platform 2420000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2410000.timer': device_add
devices_kset: Moving 2410000.timer to end of list
platform 2410000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2400000.timer': device_add
devices_kset: Moving 2400000.timer to end of list
platform 2400000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:1082e4.clock-controller': device_add
devices_kset: Moving 1082e4.clock-controller to end of list
platform 1082e4.clock-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@100000/clock-controller@82e4 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:1082e0.clock-controller': device_add
devices_kset: Moving 1082e0.clock-controller to end of list
platform 1082e0.clock-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@100000/clock-controller@82e0 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2b1f0000.rtc': device_add
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2b300050.target-module': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@b00000/target-module@2b300050 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: '44043000.system-controller:reset-controller': device_add
devices_kset: Moving 2400000.timer to end of list
devices_kset: Moving 2410000.timer to end of list
devices_kset: Moving 2420000.timer to end of list
devices_kset: Moving 2430000.timer to end of list
devices_kset: Moving 2440000.timer to end of list
devices_kset: Moving 2450000.timer to end of list
devices_kset: Moving 2460000.timer to end of list
devices_kset: Moving 2470000.timer to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: error -EPROBE_DEFER: supplier bus@f0000:interrupt-controller@a00000 not ready
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: error -EPROBE_DEFER: supplier bus@f0000:interrupt-controller@a00000 not ready
devices_kset: Moving 20000000.i2c to end of list
device: 'i2c-0': device_add
device: 'i2c-0': device_add
device: '0-0041': device_add
device: '0-0051': device_add
device: '0-003f': device_add
omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
devices_kset: Moving 20010000.i2c to end of list
device: 'i2c-1': device_add
device: 'i2c-1': device_add
device: '1-001b': device_add
device: 'platform:regulator-5--i2c:1-001b': device_add
devices_kset: Moving 1-001b to end of list
i2c 1-001b: Linked as a consumer to regulator-5
/bus@f0000/i2c@20010000/audio-codec@1b Dropping the fwnode link to /regulator-5
device: 'platform:regulator-2--i2c:1-001b': device_add
devices_kset: Moving 1-001b to end of list
i2c 1-001b: Linked as a consumer to regulator-2
/bus@f0000/i2c@20010000/audio-codec@1b Dropping the fwnode link to /regulator-2
device: '1-0022': device_add
device: 'i2c:1-0022--platform:regulator-3': device_add
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: Linked as a consumer to 1-0022
/regulator-3 Dropping the fwnode link to /bus@f0000/i2c@20010000/gpio@22
device: 'i2c:1-0022--i2c:0-0041': device_add
devices_kset: Moving 0-0041 to end of list
i2c 0-0041: Linked as a consumer to 1-0022
/bus@f0000/i2c@20000000/touchscreen@41 Dropping the fwnode link to /bus@f0000/i2c@20010000/gpio@22
device: 'platform:f4000.pinctrl--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
i2c 1-0022: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:601000.gpio--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
i2c 1-0022: Linked as a consumer to 601000.gpio
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/gpio@601000
i2c 1-0022: error -EPROBE_DEFER: supplier 601000.gpio not ready
omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
omap_i2c 20010000.i2c: Dropping the link to 601000.gpio
device: 'platform:601000.gpio--platform:20010000.i2c': device_unregister
omap_i2c 20010000.i2c: Dropping the link to regulator-2
device: 'platform:regulator-2--platform:20010000.i2c': device_unregister
omap_i2c 20010000.i2c: Dropping the link to regulator-5
device: 'platform:regulator-5--platform:20010000.i2c': device_unregister
devices_kset: Moving 20020000.i2c to end of list
device: 'i2c-2': device_add
device: 'i2c-2': device_add
omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
devices_kset: Moving bus@f0000:interrupt-controller@a00000 to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 601000.gpio to end of list
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 48000000.interrupt-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
devices_kset: Moving 485c0000.dma-controller to end of list
platform regulator-4: error -EPROBE_DEFER: supplier 600000.gpio not ready
ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 2b300050.target-module to end of list
platform regulator-3: error -EPROBE_DEFER: supplier 1-0022 not ready
devices_kset: Moving leds to end of list
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
devices_kset: Moving 1082e0.clock-controller to end of list
devices_kset: Moving 1082e4.clock-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
ti-udma 485c0100.dma-controller: Number of rings: 82
ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
device: 'dma0chan0': device_add
device: 'dma0chan1': device_add
device: 'dma0chan2': device_add
device: 'dma0chan3': device_add
device: 'dma0chan4': device_add
device: 'dma0chan5': device_add
device: 'dma0chan6': device_add
device: 'dma0chan7': device_add
device: 'dma0chan8': device_add
device: 'dma0chan9': device_add
device: 'dma0chan10': device_add
device: 'dma0chan11': device_add
device: 'dma0chan12': device_add
device: 'dma0chan13': device_add
device: 'dma0chan14': device_add
device: 'dma0chan15': device_add
device: 'dma0chan16': device_add
device: 'dma0chan17': device_add
device: 'dma0chan18': device_add
device: 'dma0chan19': device_add
device: 'dma0chan20': device_add
device: 'dma0chan21': device_add
device: 'dma0chan22': device_add
device: 'dma0chan23': device_add
device: 'dma0chan24': device_add
device: 'dma0chan25': device_add
device: 'dma0chan26': device_add
device: 'dma0chan27': device_add
device: 'dma0chan28': device_add
device: 'dma0chan29': device_add
device: 'dma0chan30': device_add
device: 'dma0chan31': device_add
device: 'dma0chan32': device_add
device: 'dma0chan33': device_add
device: 'dma0chan34': device_add
device: 'dma0chan35': device_add
device: 'dma0chan36': device_add
device: 'dma0chan37': device_add
device: 'dma0chan38': device_add
device: 'dma0chan39': device_add
device: 'dma0chan40': device_add
device: 'dma0chan41': device_add
device: 'dma0chan42': device_add
device: 'dma0chan43': device_add
device: 'dma0chan44': device_add
device: 'dma0chan45': device_add
device: 'dma0chan46': device_add
device: 'dma0chan47': device_add
devices_kset: Moving 485c0000.dma-controller to end of list
ti-udma 485c0000.dma-controller: Number of rings: 150
ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
device: 'dma1chan0': device_add
device: 'dma1chan1': device_add
device: 'dma1chan2': device_add
device: 'dma1chan3': device_add
device: 'dma1chan4': device_add
device: 'dma1chan5': device_add
device: 'dma1chan6': device_add
device: 'dma1chan7': device_add
device: 'dma1chan8': device_add
device: 'dma1chan9': device_add
device: 'dma1chan10': device_add
device: 'dma1chan11': device_add
device: 'dma1chan12': device_add
device: 'dma1chan13': device_add
device: 'dma1chan14': device_add
device: 'dma1chan15': device_add
device: 'dma1chan16': device_add
device: 'dma1chan17': device_add
device: 'dma1chan18': device_add
device: 'dma1chan19': device_add
device: 'dma1chan20': device_add
device: 'dma1chan21': device_add
device: 'dma1chan22': device_add
device: 'dma1chan23': device_add
device: 'dma1chan24': device_add
device: 'dma1chan25': device_add
device: 'dma1chan26': device_add
device: 'dma1chan27': device_add
device: 'dma1chan28': device_add
device: 'dma1chan29': device_add
device: 'dma1chan30': device_add
device: 'dma1chan31': device_add
device: 'dma1chan32': device_add
device: 'dma1chan33': device_add
device: 'dma1chan34': device_add
devices_kset: Moving 2800000.serial to end of list
device: 'ttyS2': device_unregister
printk: legacy console [ttyS2] disabled
device: '2800000.serial:0': device_add
device: '2800000.serial:0.0': device_add
2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 237, base_baud = 3000000) is a 8250
printk: legacy console [ttyS2] enabled
device: 'serial0': device_add
device: 'ttyS2': device_add
devices_kset: Moving fc40000.spi to end of list
device: 'spi0': device_add
device: 'spi0.0': device_add
7 fixed-partitions partitions found on MTD device fc40000.spi.0
Creating 7 MTD partitions on "fc40000.spi.0":
0x000000000000-0x000000080000 : "ospi.tiboot3"
device: 'mtd0': device_add
device: 'mtd0': device_add
device: 'mtd0ro': device_add
device: 'mtdblock0': device_add
device: '31:0': device_add
0x000000080000-0x000000280000 : "ospi.tispl"
device: 'mtd1': device_add
device: 'mtd1': device_add
device: 'mtd1ro': device_add
device: 'mtdblock1': device_add
device: '31:1': device_add
0x000000280000-0x000000680000 : "ospi.u-boot"
device: 'mtd2': device_add
device: 'mtd2': device_add
device: 'mtd2ro': device_add
device: 'mtdblock2': device_add
device: '31:2': device_add
0x000000680000-0x0000006c0000 : "ospi.env"
device: 'mtd3': device_add
device: 'mtd3': device_add
device: 'mtd3ro': device_add
device: 'mtdblock3': device_add
device: '31:3': device_add
0x0000006c0000-0x000000700000 : "ospi.env.backup"
device: 'mtd4': device_add
device: 'mtd4': device_add
device: 'mtd4ro': device_add
device: 'mtdblock4': device_add
device: '31:4': device_add
0x000000800000-0x000003fc0000 : "ospi.rootfs"
device: 'mtd5': device_add
device: 'mtd5': device_add
device: 'mtd5ro': device_add
device: 'mtdblock5': device_add
device: '31:5': device_add
0x000003fc0000-0x000004000000 : "ospi.phypattern"
device: 'mtd6': device_add
device: 'mtd6': device_add
device: 'mtd6ro': device_add
device: 'mtdblock6': device_add
device: '31:6': device_add
devices_kset: Moving 8000000.ethernet to end of list
device: '8000f00.mdio': device_add
device: 'platform:f4000.pinctrl--platform:8000f00.mdio': device_add
devices_kset: Moving 8000f00.mdio to end of list
platform 8000f00.mdio: Linked as a consumer to f4000.pinctrl
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:44043000.system-controller:clock-controller--platform:8000f00.mdio': device_add
devices_kset: Moving 8000f00.mdio to end of list
platform 8000f00.mdio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
device: '8000f00.mdio': device_add
davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
device: '8000f00.mdio:00': device_add
device: '8000f00.mdio:01': device_add
davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000002
device: 'phy:phy-104044.phy.0--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio:00 to end of list
devices_kset: Moving 8000f00.mdio:01 to end of list
am65-cpsw-nuss 8000000.ethernet: Linked as a consumer to phy-104044.phy.0
device: 'phy:phy-104044.phy.1--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio:00 to end of list
devices_kset: Moving 8000f00.mdio:01 to end of list
am65-cpsw-nuss 8000000.ethernet: Linked as a consumer to phy-104044.phy.1
am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
am65-cpsw-nuss 8000000.ethernet: ALE Table size 512, Policers 32
device: 'tchan19-0xc600': device_add
device: 'tchan20-0xc601': device_add
device: 'tchan21-0xc602': device_add
device: 'tchan22-0xc603': device_add
device: 'tchan23-0xc604': device_add
device: 'tchan24-0xc605': device_add
device: 'tchan25-0xc606': device_add
device: 'tchan26-0xc607': device_add
device: 'rchan19-0x4600': device_add
am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
device: 'eth0': device_add
device: 'eth1': device_add
am65-cpsw-nuss 8000000.ethernet: Dropping the link to 104044.phy
device: 'platform:104044.phy--platform:8000000.ethernet': device_unregister
am65-cpsw-nuss 8000000.ethernet: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:8000000.ethernet': device_unregister
devices_kset: Moving f900000.dwc3-usb to end of list
device: '31000000.usb': device_add
device: 'platform:31000000.usb--i2c:0-003f': device_add
i2c 0-003f: Linked as a sync state only consumer to 31000000.usb
device: 'platform:bus@f0000--platform:31000000.usb': device_add
devices_kset: Moving 31000000.usb to end of list
platform 31000000.usb: Linked as a consumer to bus@f0000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000
----- cycle: start -----
/bus@f0000/i2c@20000000/tps6598x@3f/connector: cycle: depends on /bus@f0000/dwc3-usb@f900000/usb@31000000
/bus@f0000/dwc3-usb@f900000/usb@31000000: cycle: depends on /bus@f0000/i2c@20000000/tps6598x@3f/connector
----- cycle: end -----
platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/tps6598x@3f/connector
dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
device: 'xhci-hcd.0.auto': device_add
xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports
xhci-hcd xhci-hcd.0.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
xhci-hcd xhci-hcd.0.auto: irq 240, io mem 0x31000000
device: 'usb1': device_add
device: '1-0:1.0': device_add
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 1 port detected
device: 'usb1-port1': device_add
device: 'ep_81': device_add
device: 'ep_00': device_add
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000/i2c@20000000/tps6598x@3f/connector
device: 'wakeup0': device_add
dwc3-am62 f900000.dwc3-usb: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:f900000.dwc3-usb': device_unregister
devices_kset: Moving f910000.dwc3-usb to end of list
device: '31100000.usb': device_add
device: 'platform:f4000.pinctrl--platform:31100000.usb': device_add
devices_kset: Moving 31100000.usb to end of list
platform 31100000.usb: Linked as a consumer to f4000.pinctrl
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:bus@f0000--platform:31100000.usb': device_add
devices_kset: Moving 31100000.usb to end of list
platform 31100000.usb: Linked as a consumer to bus@f0000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000
device: 'xhci-hcd.1.auto': device_add
xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
xhci-hcd xhci-hcd.1.auto: USB3 root hub has no ports
xhci-hcd xhci-hcd.1.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
xhci-hcd xhci-hcd.1.auto: irq 241, io mem 0x31100000
device: 'usb2': device_add
device: '2-0:1.0': device_add
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 1 port detected
device: 'usb2-port1': device_add
device: 'ep_81': device_add
device: 'ep_00': device_add
device: 'wakeup1': device_add
dwc3-am62 f910000.dwc3-usb: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:f910000.dwc3-usb': device_unregister
dwc3-am62 f910000.dwc3-usb: Dropping the link to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:f910000.dwc3-usb': device_unregister
devices_kset: Moving 2b1f0000.rtc to end of list
device: 'wakeup2': device_add
device: 'rtc0': device_add
device: 'alarmtimer.2.auto': device_add
device: 'wakeup3': device_add
rtc-ti-k3 2b1f0000.rtc: registered as rtc0
rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:17 UTC (17)
device: 'ti_k3_rtc_scratch0': device_add
devices_kset: Moving cpufreq-dt to end of list
device: 'cooling_device0': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
device: 'gpiochip0': device_add
devices_kset: Moving 601000.gpio to end of list
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
device: 'gpiochip1': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
pca953x 1-0022: supply vcc not found, using dummy regulator
device: 'regulator:regulator.0--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
pca953x 1-0022: Linked as a consumer to regulator.0
pca953x 1-0022: using AI
device: 'gpiochip2': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 2b300050.target-module to end of list
device: 'regulator.5': device_add
devices_kset: Moving leds to end of list
device: 'regulator.6': device_add
device: 'am62-sk:green:heartbeat': device_add
leds-gpio leds: Dropping the link to 601000.gpio
device: 'platform:601000.gpio--platform:leds': device_unregister
devices_kset: Moving 2b300050.target-module to end of list
devices_kset: Moving 2b300050.target-module to end of list
am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
am65-cpsw-nuss 8000000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
Sending DHCP requests .., OK
IP-Config: Got DHCP answer from 192.168.89.1, my address is 192.168.89.100
IP-Config: Complete:
     device=eth0, hwaddr=1c:63:49:0f:62:0e, ipaddr=192.168.89.100, mask=255.255.255.0, gw=192.168.89.1
     host=buildroot, domain=lab, nis-domain=(none)
     bootserver=192.168.88.20, rootserver=192.168.88.20, rootpath=
     nameserver0=192.168.89.1
     ntpserver0=192.168.89.1
clk: Disabling unused clocks
PM: genpd: Disabling unused power domains
ALSA device list:
  No soundcards found.
device: '0:22': device_add
VFS: Mounted root (nfs filesystem) on device 0:22.
devtmpfs: mounted
Freeing unused kernel memory: 5888K
Run /sbin/init as init process
  with arguments:
    /sbin/init
  with environment:
    HOME=/
    TERM=linux
udevd[120]: starting version 3.2.14
udevd[121]: starting eudev-3.2.14
device: '0:29': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: deferred probe pending: (reason unknown)


# Loading the display drivers

[   21.240986] platform 2b300050.target-module: deferred probe pending: (reason unknown)
[   41.966927] vdd_mmc1: disabling
[  254.521214] sysrq: Changing Loglevel
[  254.525185] sysrq: Loglevel set to 9
[  257.555601] panel-simple display: supply power not found, using dummy regulator
[  257.564850] device: 'regulator:regulator.0--platform:display': device_add
[  257.576322] devices_kset: Moving display to end of list
[  257.581763] panel-simple display: Linked as a consumer to regulator.0
[  257.589149] /display Dropping the fwnode link to /bus@f0000/dss@30200000/oldi-txes/oldi@0
[  257.597715] /display Dropping the fwnode link to /bus@f0000/dss@30200000/oldi-txes/oldi@1
[  257.606578] devices_kset: Moving 2b300050.target-module to end of list
[  258.965776] device: 'card0': device_add
[  258.972907] device: 'card0-LVDS-1': device_add
[  258.982254] [drm] Initialized tidss 1.0.0 for 30200000.dss on minor 0
[  258.990443] /bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/dss@30200000/oldi-txes/oldi@0
[  259.000264] /bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/dss@30200000/oldi-txes/oldi@1
[  259.010171] tidss 30200000.dss: Dropping the link to display
[  259.016113] device: 'platform:display--platform:30200000.dss': device_unregister
[  259.026628] devices_kset: Moving 2b300050.target-module to end of list

cma: Reserved 64 MiB at 0x00000000f9a00000 on node -1
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.4
percpu: Embedded 34 pages/cpu s98832 r8192 d32240 u139264
pcpu-alloc: s98832 r8192 d32240 u139264 alloc=34*4096
pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
Detected VIPT I-cache on CPU0
CPU features: detected: GIC system register CPU interface
CPU features: detected: ARM erratum 845719
alternatives: applying boot alternatives
Kernel command line: console=ttyS2,115200n8 root=/dev/nfs rw nfsroot=/home/tomba/nfs/rootfs32,v3,tcp ip=::::buildroot:eth0:dhcp cma=64M
Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Fallback order for Node 0: 0 
Built 1 zonelists, mobility grouping on.  Total pages: 524288
Policy zone: DMA
mem auto-init: stack:all(zero), heap alloc:off, heap free:off
stackdepot: allocating hash table via alloc_large_system_hash
stackdepot hash table entries: 131072 (order: 9, 2097152 bytes, linear)
software IO TLB: SWIOTLB bounce buffer size adjusted to 2MB
software IO TLB: area num 4.
software IO TLB: mapped [mem 0x00000000f9300000-0x00000000f9500000] (2MB)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
ftrace: allocating 48751 entries in 191 pages
ftrace: allocated 191 pages with 7 groups
trace event string verifier disabled
Running RCU self tests
Running RCU synchronous self tests
rcu: Preemptible hierarchical RCU implementation.
rcu: 	RCU event tracing is enabled.
rcu: 	RCU lockdep checking is enabled.
rcu: 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
	Trampoline variant of Tasks RCU enabled.
	Rude variant of Tasks RCU enabled.
	Tracing variant of Tasks RCU enabled.
rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Running RCU synchronous self tests
RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
GICv3: GIC: Using split EOI/Deactivate mode
GICv3: 256 SPIs implemented
GICv3: 0 Extended SPIs implemented
Root IRQ handler: gic_handle_irq
GICv3: GICv3 features: 16 PPIs
GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
ITS [mem 0x01820000-0x0182ffff]
GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
ITS: using cache flushing for cmd queue
GICv3: using LPI property table @0x0000000080300000
GIC: using cache flushing for LPI property table
GICv3: CPU0: using allocated LPI pending table @0x0000000080310000
rcu: srcu_init: Setting srcu_struct sizes based on contention.
arch_timer: cp15 timer(s) running at 200.00MHz (phys).
clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
Console: colour dummy device 80x25
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: 6429 kB
 memory used for stack traces: 4224 kB
 per task-struct memory footprint: 1920 bytes
Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
pid_max: default: 32768 minimum: 301
LSM: initializing lsm=capability
Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
Running RCU synchronous self tests
Running RCU synchronous self tests
Running RCU Tasks wait API self tests
Running RCU Tasks Rude wait API self tests
Running RCU Tasks Trace wait API self tests
rcu: Hierarchical SRCU implementation.
rcu: 	Max phase no-delay instances is 1000.
Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Callback from call_rcu_tasks_trace() invoked.
EFI services will not be available.
smp: Bringing up secondary CPUs ...
Detected VIPT I-cache on CPU1
GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
GICv3: CPU1: using allocated LPI pending table @0x0000000080320000
CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
Detected VIPT I-cache on CPU2
GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
GICv3: CPU2: using allocated LPI pending table @0x0000000080330000
CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
Detected VIPT I-cache on CPU3
GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
GICv3: CPU3: using allocated LPI pending table @0x0000000080340000
CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
smp: Brought up 1 node, 4 CPUs
SMP: Total of 4 processors activated.
CPU: All CPU(s) started at EL2
CPU features: detected: 32-bit EL0 Support
CPU features: detected: CRC32 instructions
alternatives: applying system-wide alternatives
Memory: 1887988K/2097152K available (15616K kernel code, 2702K rwdata, 6308K rodata, 5888K init, 16316K bss, 131376K reserved, 65536K cma-reserved)
devtmpfs: initialized
device: 'platform': device_add
device: 'memory': device_add
device: 'memory16': device_add
device: 'memory17': device_add
device: 'memory18': device_add
device: 'memory19': device_add
device: 'memory20': device_add
device: 'memory21': device_add
device: 'memory22': device_add
device: 'memory23': device_add
device: 'memory24': device_add
device: 'memory25': device_add
device: 'memory26': device_add
device: 'memory27': device_add
device: 'memory28': device_add
device: 'memory29': device_add
device: 'memory30': device_add
device: 'memory31': device_add
device: 'node': device_add
device: 'node0': device_add
device: 'cpu': device_add
device: 'cpu0': device_add
device: 'cpu1': device_add
device: 'cpu2': device_add
device: 'cpu3': device_add
device: 'container': device_add
device: 'workqueue': device_add
Running RCU synchronous self tests
Running RCU synchronous self tests
DMA-API: preallocated 65536 debug entries
DMA-API: debugging enabled by kernel config
clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
20992 pages in range for non-PLT usage
512512 pages in range for PLT usage
pinctrl core: initialized pinctrl subsystem
device: 'reg-dummy': device_add
DMI not present or invalid.
device: 'regulator.0': device_add
Callback from call_rcu_tasks() invoked.
NET: Registered PF_NETLINK/PF_ROUTE protocol family
DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
audit: initializing netlink subsys (disabled)
audit: type=2000 audit(0.344:1): state=initialized audit_enabled=0 res=1
device: 'vtcon0': device_add
thermal_sys: Registered thermal governor 'step_wise'
thermal_sys: Registered thermal governor 'power_allocator'
cpuidle: using governor menu
hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
ASID allocator initialised with 65536 entries
Serial: AMBA PL011 UART driver
device: '9ca00000.ramoops': device_add
device: 'firmware:optee': device_add
device: 'firmware:psci': device_add
device: 'display': device_add
/display Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@0
device: 'timer-cl0-cpu0': device_add
/timer-cl0-cpu0 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
platform timer-cl0-cpu0: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/timer-cl0-cpu0 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'pmu': device_add
/pmu Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
platform pmu: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/pmu Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'bus@f0000': device_add
/bus@f0000/bus@b00000/target-module@2b300050 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@b00000/target-module@2b300050 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@b00000/temperature-sensor@b00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/interrupt-controller@1800000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@100000/clock-controller@82e0 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@100000/clock-controller@82e4 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@48000000/mailbox@4d000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@48000000/interrupt-controller@48000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@48000000/dma-controller@485c0100 Linked as a fwnode consumer to /bus@f0000/bus@48000000/interrupt-controller@48000000
/bus@f0000/bus@48000000/dma-controller@485c0000 Linked as a fwnode consumer to /bus@f0000/bus@48000000/interrupt-controller@48000000
/bus@f0000/system-controller@44043000 Linked as a fwnode consumer to /bus@f0000/bus@48000000/mailbox@4d000000
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-uart0-default-pins
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
/bus@f0000/i2c@20000000/touchscreen@41 Linked as a fwnode consumer to /bus@f0000/i2c@20010000/gpio@22
/bus@f0000/i2c@20000000/tps6598x@3f/connector Linked as a fwnode consumer to /bus@f0000/dwc3-usb@f900000/usb@31000000
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
/bus@f0000/i2c@20010000/audio-codec@1b Linked as a fwnode consumer to /regulator-2
/bus@f0000/i2c@20010000/audio-codec@1b Linked as a fwnode consumer to /regulator-5
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/gpio@601000
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-gpio1-ioexp-intr-default-pins
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
/bus@f0000/interrupt-controller@a00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@a00000
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@a00000
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mmc0-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mmc1-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /regulator-3
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /regulator-4
/bus@f0000/dwc3-usb@f900000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dwc3-usb@f900000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000/i2c@20000000/tps6598x@3f/connector
/bus@f0000/dwc3-usb@f910000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dwc3-usb@f910000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-usb1-default-pins
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/ospi0-default-pins
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-rgmii1-default-pins
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-rgmii2-default-pins
/bus@f0000/ethernet@8000000/ethernet-ports/port@1 Linked as a fwnode consumer to /bus@f0000/bus@100000/phy@4044
/bus@f0000/ethernet@8000000/ethernet-ports/port@2 Linked as a fwnode consumer to /bus@f0000/bus@100000/phy@4044
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mdio1-default-pins
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /clock-divider-oldi
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-dss0-default-pins
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /display
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /bus@f0000/dss@30200000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@0
/bus@f0000/mailbox@29000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/watchdog@e000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e030000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e030000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e0f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e0f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mcasp1-default-pins
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /clock-divider-oldi - might never become dev
device: 'platform:display--platform:bus@f0000': device_add
platform bus@f0000: Linked as a sync state only consumer to display
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'bus@f0000:bus@4000000': device_add
device: '4084000.pinctrl': device_add
device: '4100000.esm': device_add
device: 'bus@f0000:bus@b00000': device_add
platform bus@f0000:bus@b00000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '43000000.syscon': device_add
device: '43000014.chipid': device_add
device: '43000200.ethernet-mac-syscon': device_add
device: '43004008.syscon': device_add
device: '43004018.syscon': device_add
device: '2b300050.target-module': device_add
device: '2b1f0000.rtc': device_add
platform 2b1f0000.rtc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'b00000.temperature-sensor': device_add
device: '70000000.sram': device_add
device: 'bus@f0000:bus@100000': device_add
device: '104044.phy': device_add
device: '104130.clock-controller': device_add
device: '1082e0.clock-controller': device_add
device: '1082e4.clock-controller': device_add
device: '108600.oldi-io-controller': device_add
device: 'bus@f0000:bus@48000000': device_add
platform bus@f0000:bus@48000000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000:bus@48000000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '4d000000.mailbox': device_add
platform 4d000000.mailbox: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@48000000/mailbox@4d000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '48000000.interrupt-controller': device_add
platform 48000000.interrupt-controller: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@48000000/interrupt-controller@48000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '485c0100.dma-controller': device_add
device: 'platform:48000000.interrupt-controller--platform:485c0100.dma-controller': device_add
devices_kset: Moving 485c0100.dma-controller to end of list
platform 485c0100.dma-controller: Linked as a consumer to 48000000.interrupt-controller
/bus@f0000/bus@48000000/dma-controller@485c0100 Dropping the fwnode link to /bus@f0000/bus@48000000/interrupt-controller@48000000
device: '485c0000.dma-controller': device_add
device: 'platform:48000000.interrupt-controller--platform:485c0000.dma-controller': device_add
devices_kset: Moving 485c0000.dma-controller to end of list
platform 485c0000.dma-controller: Linked as a consumer to 48000000.interrupt-controller
/bus@f0000/bus@48000000/dma-controller@485c0000 Dropping the fwnode link to /bus@f0000/bus@48000000/interrupt-controller@48000000
device: '44043000.system-controller': device_add
device: 'platform:4d000000.mailbox--platform:44043000.system-controller': device_add
devices_kset: Moving 44043000.system-controller to end of list
platform 44043000.system-controller: Linked as a consumer to 4d000000.mailbox
/bus@f0000/system-controller@44043000 Dropping the fwnode link to /bus@f0000/bus@48000000/mailbox@4d000000
device: '40900000.crypto': device_add
device: 'f4000.pinctrl': device_add
device: '420000.esm': device_add
device: '2400000.timer': device_add
platform 2400000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2410000.timer': device_add
platform 2410000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2420000.timer': device_add
platform 2420000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2430000.timer': device_add
platform 2430000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2440000.timer': device_add
platform 2440000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2450000.timer': device_add
platform 2450000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2460000.timer': device_add
platform 2460000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2470000.timer': device_add
platform 2470000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2800000.serial': device_add
platform 2800000.serial: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20000000.i2c': device_add
platform 20000000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20010000.i2c': device_add
platform 20010000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20020000.i2c': device_add
platform 20020000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'bus@f0000:interrupt-controller@a00000': device_add
platform bus@f0000:interrupt-controller@a00000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/interrupt-controller@a00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '600000.gpio': device_add
device: 'platform:bus@f0000:interrupt-controller@a00000--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
platform 600000.gpio: Linked as a consumer to bus@f0000:interrupt-controller@a00000
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/interrupt-controller@a00000
platform 600000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: '601000.gpio': device_add
device: 'platform:601000.gpio--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to 601000.gpio
device: 'platform:bus@f0000:interrupt-controller@a00000--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to bus@f0000:interrupt-controller@a00000
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/interrupt-controller@a00000
platform 601000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: 'fa10000.mmc': device_add
platform fa10000.mmc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'fa00000.mmc': device_add
platform fa00000.mmc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'f900000.dwc3-usb': device_add
platform f900000.dwc3-usb: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'fc00000.bus': device_add
platform fc00000.bus: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'fc40000.spi': device_add
platform fc40000.spi: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'fd00000.gpu': device_add
platform fd00000.gpu: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '8000000.ethernet': device_add
device: 'platform:104044.phy--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to 104044.phy
platform 8000000.ethernet: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '30200000.dss': device_add
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: depends on /bus@f0000/dss@30200000
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: child of /bus@f0000/dss@30200000
/bus@f0000/dss@30200000: cycle: depends on /bus@f0000/dss@30200000/oldi-txes/oldi@0
----- cycle: end -----
platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@0
platform 30200000.dss: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
platform 30200000.dss: Not linking /clock-divider-oldi - might never become dev
/bus@f0000/dss@30200000 Dropping the fwnode link to /clock-divider-oldi
device: 'platform:display--platform:30200000.dss': device_add
platform 30200000.dss: Linked as a sync state only consumer to display
device: '2a000000.spinlock': device_add
device: '29000000.mailbox': device_add
platform 29000000.mailbox: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mailbox@29000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'e000000.watchdog': device_add
device: 'e010000.watchdog': device_add
device: 'e020000.watchdog': device_add
device: 'e030000.watchdog': device_add
device: 'e0f0000.watchdog': device_add
device: '2b10000.audio-controller': device_add
platform 2b10000.audio-controller: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'opp-table': device_add
device: 'l2-cache0': device_add
device: 'leds': device_add
/leds Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/usr-led-default-pins
/leds/led-0 Linked as a fwnode consumer to /bus@f0000/gpio@601000
device: 'platform:601000.gpio--platform:leds': device_add
platform leds: Linked as a sync state only consumer to 601000.gpio
device: 'sound': device_add
/sound/simple-audio-card,codec Linked as a fwnode consumer to /clk-0
platform sound: Not linking /clk-0 - might never become dev
device: 'regulator-0': device_add
device: 'regulator-1': device_add
/regulator-1 Linked as a fwnode consumer to /regulator-0
device: 'platform:regulator-0--platform:regulator-1': device_add
devices_kset: Moving regulator-1 to end of list
platform regulator-1: Linked as a consumer to regulator-0
/regulator-1 Dropping the fwnode link to /regulator-0
device: 'regulator-2': device_add
/regulator-2 Linked as a fwnode consumer to /regulator-0
device: 'platform:regulator-2--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to regulator-2
device: 'platform:regulator-0--platform:regulator-2': device_add
devices_kset: Moving regulator-2 to end of list
platform regulator-2: Linked as a consumer to regulator-0
/regulator-2 Dropping the fwnode link to /regulator-0
device: 'regulator-3': device_add
/regulator-3 Linked as a fwnode consumer to /regulator-2
/regulator-3 Linked as a fwnode consumer to /bus@f0000/i2c@20010000/gpio@22
device: 'platform:regulator-3--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to regulator-3
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /regulator-3
device: 'platform:regulator-2--platform:regulator-3': device_add
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: Linked as a consumer to regulator-2
/regulator-3 Dropping the fwnode link to /regulator-2
device: 'regulator-4': device_add
/regulator-4 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
/regulator-4 Linked as a fwnode consumer to /regulator-1
/regulator-4 Linked as a fwnode consumer to /bus@f0000/gpio@600000
device: 'platform:regulator-4--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to regulator-4
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /regulator-4
device: 'platform:600000.gpio--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to 600000.gpio
/regulator-4 Dropping the fwnode link to /bus@f0000/gpio@600000
device: 'platform:regulator-1--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to regulator-1
/regulator-4 Dropping the fwnode link to /regulator-1
device: 'regulator-5': device_add
/regulator-5 Linked as a fwnode consumer to /regulator-2
device: 'platform:regulator-5--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to regulator-5
device: 'platform:regulator-2--platform:regulator-5': device_add
devices_kset: Moving regulator-5 to end of list
platform regulator-5: Linked as a consumer to regulator-2
/regulator-5 Dropping the fwnode link to /regulator-2
device: 'writeback': device_add
HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
device: 'memory_tiering': device_add
ACPI: Interpreter disabled.
device: 'soc0': device_add
k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
platform regulator-1: error -EPROBE_DEFER: supplier regulator-0 not ready
platform regulator-2: error -EPROBE_DEFER: supplier regulator-0 not ready
platform regulator-3: error -EPROBE_DEFER: wait for supplier /bus@f0000/i2c@20010000/gpio@22
platform regulator-5: error -EPROBE_DEFER: supplier regulator-2 not ready
device: 'regulator.1': device_add
platform regulator-4: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
iommu: Default domain type: Translated
iommu: DMA domain TLB invalidation policy: strict mode
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
platform 20000000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
platform 20010000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
platform 20020000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
PTP clock support registered
EDAC MC: Ver: 3.0.0
device: 'edac': device_add
device: 'mc': device_add
scmi_core: SCMI protocol bus registered
FPGA manager framework
Advanced Linux Sound Architecture Driver Initialized.
device: 'lo': device_add
clocksource: Switched to clocksource arch_sys_counter
VFS: Disk quotas dquot_6.6.0
VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
pnp: PnP ACPI: disabled
device: 'mem': device_add
device: 'null': device_add
device: 'port': device_add
device: 'zero': device_add
device: 'full': device_add
device: 'random': device_add
device: 'urandom': device_add
device: 'kmsg': device_add
device: 'tty': device_add
device: 'console': device_add
device: 'tty0': device_add
device: 'vcs': device_add
device: 'vcsu': device_add
device: 'vcsa': device_add
device: 'vcs1': device_add
device: 'vcsu1': device_add
device: 'vcsa1': device_add
device: 'tty1': device_add
device: 'tty2': device_add
device: 'tty3': device_add
device: 'tty4': device_add
device: 'tty5': device_add
device: 'tty6': device_add
device: 'tty7': device_add
device: 'tty8': device_add
device: 'tty9': device_add
device: 'tty10': device_add
device: 'tty11': device_add
device: 'tty12': device_add
device: 'tty13': device_add
device: 'tty14': device_add
device: 'tty15': device_add
device: 'tty16': device_add
device: 'tty17': device_add
device: 'tty18': device_add
device: 'tty19': device_add
device: 'tty20': device_add
device: 'tty21': device_add
device: 'tty22': device_add
device: 'tty23': device_add
device: 'tty24': device_add
device: 'tty25': device_add
device: 'tty26': device_add
device: 'tty27': device_add
device: 'tty28': device_add
device: 'tty29': device_add
device: 'tty30': device_add
device: 'tty31': device_add
device: 'tty32': device_add
device: 'tty33': device_add
device: 'tty34': device_add
device: 'tty35': device_add
device: 'tty36': device_add
device: 'tty37': device_add
device: 'tty38': device_add
device: 'tty39': device_add
device: 'tty40': device_add
device: 'tty41': device_add
device: 'tty42': device_add
device: 'tty43': device_add
device: 'tty44': device_add
device: 'tty45': device_add
device: 'tty46': device_add
device: 'tty47': device_add
device: 'tty48': device_add
device: 'tty49': device_add
device: 'tty50': device_add
device: 'tty51': device_add
device: 'tty52': device_add
device: 'tty53': device_add
device: 'tty54': device_add
device: 'tty55': device_add
device: 'tty56': device_add
device: 'tty57': device_add
device: 'tty58': device_add
device: 'tty59': device_add
device: 'tty60': device_add
device: 'tty61': device_add
device: 'tty62': device_add
device: 'tty63': device_add
device: 'hw_random': device_add
NET: Registered PF_INET protocol family
IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 73728 bytes, linear)
Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
TCP bind hash table entries: 16384 (order: 9, 2359296 bytes, linear)
TCP: Hash tables configured (established 16384 bind 16384)
UDP hash table entries: 1024 (order: 5, 163840 bytes, linear)
UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear)
NET: Registered PF_UNIX/PF_LOCAL protocol family
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp-with-tls transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
device: 'snapshot': device_add
device: 'clocksource': device_add
device: 'clocksource0': device_add
device: 'clockevents': device_add
device: 'clockevent0': device_add
device: 'clockevent1': device_add
device: 'clockevent2': device_add
device: 'clockevent3': device_add
device: 'broadcast': device_add
device: 'breakpoint': device_add
device: 'uprobe': device_add
device: 'tracepoint': device_add
device: 'software': device_add
Initialise system trusted keyrings
workingset: timestamp_bits=42 max_order=19 bucket_order=0
squashfs: version 4.0 (2009/01/31) Phillip Lougher
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
nfs4filelayout_init: NFSv4 File Layout Driver Registering...
nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
device: 'autofs': device_add
Key type asymmetric registered
Asymmetric key parser 'x509' registered
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
io scheduler mq-deadline registered
io scheduler kyber registered
io scheduler bfq registered
ti-sci-intr bus@f0000:interrupt-controller@a00000: error -EPROBE_DEFER: ti,sci read fail
ti-sci-inta 48000000.interrupt-controller: error -EPROBE_DEFER: ti,sci read fail
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/ethernet@8000000/cpts@3d000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/interrupt-controller@1800000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/interrupt-controller@1800000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'platform:bus@f0000--platform:f900000.dwc3-usb': device_add
platform f900000.dwc3-usb: Linked as a sync state only consumer to bus@f0000
device: 'platform:bus@f0000--platform:f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Linked as a sync state only consumer to bus@f0000
device: 'platform:bus@f0000--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to bus@f0000
simple-pm-bus bus@f0000: Dropping the link to display
device: 'platform:display--platform:bus@f0000': device_unregister
platform 2b300050.target-module: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: 'phy-104044.phy.0': device_add
device: 'phy-104044.phy.1': device_add
pinctrl-single 4084000.pinctrl: 34 pins, size 136
pinctrl-single f4000.pinctrl: 171 pins, size 684
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-uart0-default-pins
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mmc0-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mmc1-default-pins
/leds Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/leds Dropping the fwnode link to /bus@f0000/pinctrl@f4000/usr-led-default-pins
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mdio1-default-pins
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-rgmii1-default-pins
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-usb1-default-pins
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mcasp1-default-pins
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-dss0-default-pins
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-rgmii2-default-pins
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/ospi0-default-pins
/regulator-4 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/regulator-4 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-gpio1-ioexp-intr-default-pins
device: 'platform:f4000.pinctrl--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to f4000.pinctrl
/regulator-4 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to f4000.pinctrl
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:30200000.dss': device_add
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to f4000.pinctrl
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to f4000.pinctrl
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Linked as a sync state only consumer to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to f4000.pinctrl
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:leds': device_add
devices_kset: Moving leds to end of list
platform leds: Linked as a consumer to f4000.pinctrl
/leds Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to f4000.pinctrl
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to f4000.pinctrl
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to f4000.pinctrl
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
ledtrig-cpu: registered to indicate activity on CPUs
device: 'acpi-einj': device_add
platform 1082e0.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
platform 1082e4.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
platform 485c0100.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
platform 485c0000.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
device: 'ptyp0': device_add
device: 'ptyp1': device_add
device: 'ptyp2': device_add
device: 'ptyp3': device_add
device: 'ptyp4': device_add
device: 'ptyp5': device_add
device: 'ptyp6': device_add
device: 'ptyp7': device_add
device: 'ptyp8': device_add
device: 'ptyp9': device_add
device: 'ptypa': device_add
device: 'ptypb': device_add
device: 'ptypc': device_add
device: 'ptypd': device_add
device: 'ptype': device_add
device: 'ptypf': device_add
device: 'ttyp0': device_add
device: 'ttyp1': device_add
device: 'ttyp2': device_add
device: 'ttyp3': device_add
device: 'ttyp4': device_add
device: 'ttyp5': device_add
device: 'ttyp6': device_add
device: 'ttyp7': device_add
device: 'ttyp8': device_add
device: 'ttyp9': device_add
device: 'ttypa': device_add
device: 'ttypb': device_add
device: 'ttypc': device_add
device: 'ttypd': device_add
device: 'ttype': device_add
device: 'ttypf': device_add
device: 'ptmx': device_add
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
device: 'serial8250': device_add
device: 'serial8250:0': device_add
device: 'serial8250:0.0': device_add
device: 'serial0': device_add
device: 'ttyS0': device_add
device: 'serial8250:0.1': device_add
device: 'serial0': device_add
device: 'ttyS1': device_add
device: 'serial8250:0.2': device_add
device: 'serial0': device_add
device: 'ttyS2': device_add
device: 'serial8250:0.3': device_add
device: 'serial0': device_add
device: 'ttyS3': device_add
STM32 USART driver initialized
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'loop-control': device_add
device: 'loop0': device_add
device: '7:0': device_add
device: 'loop1': device_add
device: '7:1': device_add
device: 'loop2': device_add
device: '7:2': device_add
device: 'loop3': device_add
device: '7:3': device_add
device: 'loop4': device_add
device: '7:4': device_add
device: 'loop5': device_add
device: '7:5': device_add
device: 'loop6': device_add
device: '7:6': device_add
device: 'loop7': device_add
device: '7:7': device_add
loop: module loaded
device: 'system': device_add
device: 'reserved': device_add
device: 'mtd-0': device_add
platform fc40000.spi: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
device: 'Fixed MDIO bus.0': device_add
device: 'fixed-0': device_add
tun: Universal TUN/TAP device driver, 1.6
device: 'tun': device_add
platform 8000000.ethernet: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
device: 'vfio': device_add
VFIO - User Level meta-driver version: 0.3
platform f900000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform f910000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2b1f0000.rtc: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
i2c_dev: i2c /dev entries driver
device: 'ti-cpufreq': device_add
device: 'cpufreq-dt': device_add
cpu cpu0: error -EPROBE_DEFER: Couldn't find clock
device: 'psci-cpuidle': device_add
platform 44043000.system-controller: error -EPROBE_DEFER: supplier 4d000000.mailbox not ready
SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
platform 2400000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2410000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2420000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2430000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2440000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2450000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2460000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2470000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
device: 'armv8_cortex_a53': device_add
hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 (0,8000003f) counters available
watchdog: NMI not fully supported
watchdog: Hard watchdog permanently disabled
optee: probing for conduit method.
optee: revision 4.0 (2a5b1d12)
device: 'tee0': device_add
device: 'teepriv0': device_add
optee: dynamic shared memory is enabled
device: 'optee-ta-ab7a617c-b8e7-4d8f-8301-d09b61036b64': device_add
random: crng init done
optee: initialized driver
device: 'timer': device_add
device: 'snd-soc-dummy': device_add
NET: Registered PF_PACKET protocol family
Key type dns_resolver registered
device: 'cpu_dma_latency': device_add
registered taskstats version 1
Loading compiled-in X.509 certificates
device: 'memory_tier4': device_add
Demotion targets for Node 0: null
kmemleak: Kernel memory leak detector initialized (mem pool available: 15791)
kmemleak: Automatic memory scanning thread started
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving regulator-1 to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-2 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-5 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
device: 'regulator.2': device_add
devices_kset: Moving regulator-5 to end of list
devices_kset: Moving regulator-4 to end of list
device: 'regulator.3': device_add
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: error -EPROBE_DEFER: wait for supplier /bus@f0000/i2c@20010000/gpio@22
devices_kset: Moving 20000000.i2c to end of list
platform regulator-4: error -EPROBE_DEFER: supplier 600000.gpio not ready
platform 20000000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving bus@f0000:interrupt-controller@a00000 to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 601000.gpio to end of list
device: 'regulator.4': device_add
ti-sci-intr bus@f0000:interrupt-controller@a00000: error -EPROBE_DEFER: ti,sci read fail
devices_kset: Moving 48000000.interrupt-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
devices_kset: Moving 485c0000.dma-controller to end of list
ti-sci-inta 48000000.interrupt-controller: error -EPROBE_DEFER: ti,sci read fail
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving leds to end of list
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
devices_kset: Moving 1082e0.clock-controller to end of list
platform 1082e0.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 1082e4.clock-controller to end of list
platform 1082e4.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 485c0100.dma-controller to end of list
platform 485c0100.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
devices_kset: Moving 485c0000.dma-controller to end of list
platform 485c0000.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
devices_kset: Moving 2800000.serial to end of list
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving cpufreq-dt to end of list
cpu cpu0: error -EPROBE_DEFER: Couldn't find clock
devices_kset: Moving 44043000.system-controller to end of list
ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.1.8--v09.01.08 (Kool Koala)')
device: '44043000.system-controller:power-controller': device_add
device: 'platform:44043000.system-controller:power-controller--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e0f0000.watchdog': device_add
devices_kset: Moving e0f0000.watchdog to end of list
platform e0f0000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e0f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e030000.watchdog': device_add
devices_kset: Moving e030000.watchdog to end of list
platform e030000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e030000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e020000.watchdog': device_add
devices_kset: Moving e020000.watchdog to end of list
platform e020000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e010000.watchdog': device_add
devices_kset: Moving e010000.watchdog to end of list
platform e010000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e000000.watchdog': device_add
devices_kset: Moving e000000.watchdog to end of list
platform e000000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:30200000.dss': device_add
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fd00000.gpu': device_add
devices_kset: Moving fd00000.gpu to end of list
platform fd00000.gpu: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:f910000.dwc3-usb': device_add
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dwc3-usb@f910000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:f900000.dwc3-usb': device_add
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dwc3-usb@f900000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20010000.i2c': device_add
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2470000.timer': device_add
devices_kset: Moving 2470000.timer to end of list
platform 2470000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2460000.timer': device_add
devices_kset: Moving 2460000.timer to end of list
platform 2460000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2450000.timer': device_add
devices_kset: Moving 2450000.timer to end of list
platform 2450000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2440000.timer': device_add
devices_kset: Moving 2440000.timer to end of list
platform 2440000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2430000.timer': device_add
devices_kset: Moving 2430000.timer to end of list
platform 2430000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2420000.timer': device_add
devices_kset: Moving 2420000.timer to end of list
platform 2420000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2410000.timer': device_add
devices_kset: Moving 2410000.timer to end of list
platform 2410000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2400000.timer': device_add
devices_kset: Moving 2400000.timer to end of list
platform 2400000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:b00000.temperature-sensor': device_add
devices_kset: Moving b00000.temperature-sensor to end of list
platform b00000.temperature-sensor: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/temperature-sensor@b00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2b1f0000.rtc': device_add
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2b300050.target-module': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/target-module@2b300050 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: '44043000.system-controller:clock-controller': device_add
device: 'platform:44043000.system-controller:clock-controller--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e0f0000.watchdog': device_add
devices_kset: Moving e0f0000.watchdog to end of list
platform e0f0000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e0f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e030000.watchdog': device_add
devices_kset: Moving e030000.watchdog to end of list
platform e030000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e030000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e020000.watchdog': device_add
devices_kset: Moving e020000.watchdog to end of list
platform e020000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e010000.watchdog': device_add
devices_kset: Moving e010000.watchdog to end of list
platform e010000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e000000.watchdog': device_add
devices_kset: Moving e000000.watchdog to end of list
platform e000000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:30200000.dss': device_add
platform 30200000.dss: Linked as a sync state only consumer to 44043000.system-controller:clock-controller
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to 44043000.system-controller:clock-controller
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fd00000.gpu': device_add
devices_kset: Moving fd00000.gpu to end of list
platform fd00000.gpu: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:f910000.dwc3-usb': device_add
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dwc3-usb@f910000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:f900000.dwc3-usb': device_add
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dwc3-usb@f900000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20010000.i2c': device_add
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2470000.timer': device_add
devices_kset: Moving 2470000.timer to end of list
platform 2470000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2460000.timer': device_add
devices_kset: Moving 2460000.timer to end of list
platform 2460000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2450000.timer': device_add
devices_kset: Moving 2450000.timer to end of list
platform 2450000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2440000.timer': device_add
devices_kset: Moving 2440000.timer to end of list
platform 2440000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2430000.timer': device_add
devices_kset: Moving 2430000.timer to end of list
platform 2430000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2420000.timer': device_add
devices_kset: Moving 2420000.timer to end of list
platform 2420000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2410000.timer': device_add
devices_kset: Moving 2410000.timer to end of list
platform 2410000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2400000.timer': device_add
devices_kset: Moving 2400000.timer to end of list
platform 2400000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:1082e4.clock-controller': device_add
devices_kset: Moving 1082e4.clock-controller to end of list
platform 1082e4.clock-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@100000/clock-controller@82e4 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:1082e0.clock-controller': device_add
devices_kset: Moving 1082e0.clock-controller to end of list
platform 1082e0.clock-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@100000/clock-controller@82e0 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2b1f0000.rtc': device_add
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2b300050.target-module': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@b00000/target-module@2b300050 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: '44043000.system-controller:reset-controller': device_add
devices_kset: Moving 2400000.timer to end of list
devices_kset: Moving 2410000.timer to end of list
devices_kset: Moving 2420000.timer to end of list
devices_kset: Moving 2430000.timer to end of list
devices_kset: Moving 2440000.timer to end of list
devices_kset: Moving 2450000.timer to end of list
devices_kset: Moving 2460000.timer to end of list
devices_kset: Moving 2470000.timer to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: error -EPROBE_DEFER: supplier bus@f0000:interrupt-controller@a00000 not ready
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: error -EPROBE_DEFER: supplier bus@f0000:interrupt-controller@a00000 not ready
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: error -EPROBE_DEFER: wait for supplier /bus@f0000/i2c@20010000/gpio@22
devices_kset: Moving 20000000.i2c to end of list
platform regulator-4: error -EPROBE_DEFER: supplier 600000.gpio not ready
device: 'i2c-0': device_add
device: 'i2c-0': device_add
device: '0-0041': device_add
device: '0-0051': device_add
device: '0-003f': device_add
omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
devices_kset: Moving 20010000.i2c to end of list
device: 'i2c-1': device_add
device: 'i2c-1': device_add
device: '1-001b': device_add
device: 'platform:regulator-5--i2c:1-001b': device_add
devices_kset: Moving 1-001b to end of list
i2c 1-001b: Linked as a consumer to regulator-5
/bus@f0000/i2c@20010000/audio-codec@1b Dropping the fwnode link to /regulator-5
device: 'platform:regulator-2--i2c:1-001b': device_add
devices_kset: Moving 1-001b to end of list
i2c 1-001b: Linked as a consumer to regulator-2
/bus@f0000/i2c@20010000/audio-codec@1b Dropping the fwnode link to /regulator-2
device: '1-0022': device_add
device: 'i2c:1-0022--platform:regulator-3': device_add
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: Linked as a consumer to 1-0022
/regulator-3 Dropping the fwnode link to /bus@f0000/i2c@20010000/gpio@22
device: 'i2c:1-0022--i2c:0-0041': device_add
devices_kset: Moving 0-0041 to end of list
i2c 0-0041: Linked as a consumer to 1-0022
/bus@f0000/i2c@20000000/touchscreen@41 Dropping the fwnode link to /bus@f0000/i2c@20010000/gpio@22
device: 'platform:f4000.pinctrl--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
i2c 1-0022: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:601000.gpio--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
i2c 1-0022: Linked as a consumer to 601000.gpio
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/gpio@601000
i2c 1-0022: error -EPROBE_DEFER: supplier 601000.gpio not ready
omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
omap_i2c 20010000.i2c: Dropping the link to 601000.gpio
device: 'platform:601000.gpio--platform:20010000.i2c': device_unregister
omap_i2c 20010000.i2c: Dropping the link to regulator-2
device: 'platform:regulator-2--platform:20010000.i2c': device_unregister
omap_i2c 20010000.i2c: Dropping the link to regulator-5
device: 'platform:regulator-5--platform:20010000.i2c': device_unregister
devices_kset: Moving 20020000.i2c to end of list
device: 'i2c-2': device_add
device: 'i2c-2': device_add
omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
devices_kset: Moving bus@f0000:interrupt-controller@a00000 to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 601000.gpio to end of list
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
devices_kset: Moving 48000000.interrupt-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
devices_kset: Moving 485c0000.dma-controller to end of list
ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
devices_kset: Moving 2b300050.target-module to end of list
devices_kset: Moving leds to end of list
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
devices_kset: Moving 1082e0.clock-controller to end of list
devices_kset: Moving 1082e4.clock-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
ti-udma 485c0100.dma-controller: Number of rings: 82
ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
device: 'dma0chan0': device_add
device: 'dma0chan1': device_add
device: 'dma0chan2': device_add
device: 'dma0chan3': device_add
device: 'dma0chan4': device_add
device: 'dma0chan5': device_add
device: 'dma0chan6': device_add
device: 'dma0chan7': device_add
device: 'dma0chan8': device_add
device: 'dma0chan9': device_add
device: 'dma0chan10': device_add
device: 'dma0chan11': device_add
device: 'dma0chan12': device_add
device: 'dma0chan13': device_add
device: 'dma0chan14': device_add
device: 'dma0chan15': device_add
device: 'dma0chan16': device_add
device: 'dma0chan17': device_add
device: 'dma0chan18': device_add
device: 'dma0chan19': device_add
device: 'dma0chan20': device_add
device: 'dma0chan21': device_add
device: 'dma0chan22': device_add
device: 'dma0chan23': device_add
device: 'dma0chan24': device_add
device: 'dma0chan25': device_add
device: 'dma0chan26': device_add
device: 'dma0chan27': device_add
device: 'dma0chan28': device_add
device: 'dma0chan29': device_add
device: 'dma0chan30': device_add
device: 'dma0chan31': device_add
device: 'dma0chan32': device_add
device: 'dma0chan33': device_add
device: 'dma0chan34': device_add
device: 'dma0chan35': device_add
device: 'dma0chan36': device_add
device: 'dma0chan37': device_add
device: 'dma0chan38': device_add
device: 'dma0chan39': device_add
device: 'dma0chan40': device_add
device: 'dma0chan41': device_add
device: 'dma0chan42': device_add
device: 'dma0chan43': device_add
device: 'dma0chan44': device_add
device: 'dma0chan45': device_add
device: 'dma0chan46': device_add
device: 'dma0chan47': device_add
devices_kset: Moving 485c0000.dma-controller to end of list
ti-udma 485c0000.dma-controller: Number of rings: 150
ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
device: 'dma1chan0': device_add
device: 'dma1chan1': device_add
device: 'dma1chan2': device_add
device: 'dma1chan3': device_add
device: 'dma1chan4': device_add
device: 'dma1chan5': device_add
device: 'dma1chan6': device_add
device: 'dma1chan7': device_add
device: 'dma1chan8': device_add
device: 'dma1chan9': device_add
device: 'dma1chan10': device_add
device: 'dma1chan11': device_add
device: 'dma1chan12': device_add
device: 'dma1chan13': device_add
device: 'dma1chan14': device_add
device: 'dma1chan15': device_add
device: 'dma1chan16': device_add
device: 'dma1chan17': device_add
device: 'dma1chan18': device_add
device: 'dma1chan19': device_add
device: 'dma1chan20': device_add
device: 'dma1chan21': device_add
device: 'dma1chan22': device_add
device: 'dma1chan23': device_add
device: 'dma1chan24': device_add
device: 'dma1chan25': device_add
device: 'dma1chan26': device_add
device: 'dma1chan27': device_add
device: 'dma1chan28': device_add
device: 'dma1chan29': device_add
device: 'dma1chan30': device_add
device: 'dma1chan31': device_add
device: 'dma1chan32': device_add
device: 'dma1chan33': device_add
device: 'dma1chan34': device_add
devices_kset: Moving 2800000.serial to end of list
device: 'ttyS2': device_unregister
printk: legacy console [ttyS2] disabled
device: '2800000.serial:0': device_add
device: '2800000.serial:0.0': device_add
2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 237, base_baud = 3000000) is a 8250
printk: legacy console [ttyS2] enabled
device: 'serial0': device_add
device: 'ttyS2': device_add
devices_kset: Moving fc40000.spi to end of list
device: 'spi0': device_add
device: 'spi0.0': device_add
7 fixed-partitions partitions found on MTD device fc40000.spi.0
Creating 7 MTD partitions on "fc40000.spi.0":
0x000000000000-0x000000080000 : "ospi.tiboot3"
device: 'mtd0': device_add
device: 'mtd0': device_add
device: 'mtd0ro': device_add
device: 'mtdblock0': device_add
device: '31:0': device_add
0x000000080000-0x000000280000 : "ospi.tispl"
device: 'mtd1': device_add
device: 'mtd1': device_add
device: 'mtd1ro': device_add
device: 'mtdblock1': device_add
device: '31:1': device_add
0x000000280000-0x000000680000 : "ospi.u-boot"
device: 'mtd2': device_add
device: 'mtd2': device_add
device: 'mtd2ro': device_add
device: 'mtdblock2': device_add
device: '31:2': device_add
0x000000680000-0x0000006c0000 : "ospi.env"
device: 'mtd3': device_add
device: 'mtd3': device_add
device: 'mtd3ro': device_add
device: 'mtdblock3': device_add
device: '31:3': device_add
0x0000006c0000-0x000000700000 : "ospi.env.backup"
device: 'mtd4': device_add
device: 'mtd4': device_add
device: 'mtd4ro': device_add
device: 'mtdblock4': device_add
device: '31:4': device_add
0x000000800000-0x000003fc0000 : "ospi.rootfs"
device: 'mtd5': device_add
device: 'mtd5': device_add
device: 'mtd5ro': device_add
device: 'mtdblock5': device_add
device: '31:5': device_add
0x000003fc0000-0x000004000000 : "ospi.phypattern"
device: 'mtd6': device_add
device: 'mtd6': device_add
device: 'mtd6ro': device_add
device: 'mtdblock6': device_add
device: '31:6': device_add
devices_kset: Moving 8000000.ethernet to end of list
device: '8000f00.mdio': device_add
device: 'platform:f4000.pinctrl--platform:8000f00.mdio': device_add
devices_kset: Moving 8000f00.mdio to end of list
platform 8000f00.mdio: Linked as a consumer to f4000.pinctrl
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:44043000.system-controller:clock-controller--platform:8000f00.mdio': device_add
devices_kset: Moving 8000f00.mdio to end of list
platform 8000f00.mdio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
device: '8000f00.mdio': device_add
davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
device: '8000f00.mdio:00': device_add
device: '8000f00.mdio:01': device_add
davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000002
device: 'phy:phy-104044.phy.0--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio:00 to end of list
devices_kset: Moving 8000f00.mdio:01 to end of list
am65-cpsw-nuss 8000000.ethernet: Linked as a consumer to phy-104044.phy.0
device: 'phy:phy-104044.phy.1--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio:00 to end of list
devices_kset: Moving 8000f00.mdio:01 to end of list
am65-cpsw-nuss 8000000.ethernet: Linked as a consumer to phy-104044.phy.1
am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
am65-cpsw-nuss 8000000.ethernet: ALE Table size 512, Policers 32
device: 'tchan19-0xc600': device_add
device: 'tchan20-0xc601': device_add
device: 'tchan21-0xc602': device_add
device: 'tchan22-0xc603': device_add
device: 'tchan23-0xc604': device_add
device: 'tchan24-0xc605': device_add
device: 'tchan25-0xc606': device_add
device: 'tchan26-0xc607': device_add
device: 'rchan19-0x4600': device_add
am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
device: 'eth0': device_add
device: 'eth1': device_add
am65-cpsw-nuss 8000000.ethernet: Dropping the link to 104044.phy
device: 'platform:104044.phy--platform:8000000.ethernet': device_unregister
am65-cpsw-nuss 8000000.ethernet: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:8000000.ethernet': device_unregister
devices_kset: Moving f900000.dwc3-usb to end of list
device: '31000000.usb': device_add
device: 'platform:31000000.usb--i2c:0-003f': device_add
i2c 0-003f: Linked as a sync state only consumer to 31000000.usb
device: 'platform:bus@f0000--platform:31000000.usb': device_add
devices_kset: Moving 31000000.usb to end of list
platform 31000000.usb: Linked as a consumer to bus@f0000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000
----- cycle: start -----
/bus@f0000/i2c@20000000/tps6598x@3f/connector: cycle: depends on /bus@f0000/dwc3-usb@f900000/usb@31000000
/bus@f0000/dwc3-usb@f900000/usb@31000000: cycle: depends on /bus@f0000/i2c@20000000/tps6598x@3f/connector
----- cycle: end -----
platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/tps6598x@3f/connector
dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
device: 'xhci-hcd.0.auto': device_add
xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports
xhci-hcd xhci-hcd.0.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
xhci-hcd xhci-hcd.0.auto: irq 240, io mem 0x31000000
device: 'usb1': device_add
device: '1-0:1.0': device_add
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 1 port detected
device: 'usb1-port1': device_add
device: 'ep_81': device_add
device: 'ep_00': device_add
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000/i2c@20000000/tps6598x@3f/connector
device: 'wakeup0': device_add
dwc3-am62 f900000.dwc3-usb: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:f900000.dwc3-usb': device_unregister
devices_kset: Moving f910000.dwc3-usb to end of list
device: '31100000.usb': device_add
device: 'platform:f4000.pinctrl--platform:31100000.usb': device_add
devices_kset: Moving 31100000.usb to end of list
platform 31100000.usb: Linked as a consumer to f4000.pinctrl
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:bus@f0000--platform:31100000.usb': device_add
devices_kset: Moving 31100000.usb to end of list
platform 31100000.usb: Linked as a consumer to bus@f0000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000
device: 'xhci-hcd.1.auto': device_add
xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
xhci-hcd xhci-hcd.1.auto: USB3 root hub has no ports
xhci-hcd xhci-hcd.1.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
xhci-hcd xhci-hcd.1.auto: irq 241, io mem 0x31100000
device: 'usb2': device_add
device: '2-0:1.0': device_add
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 1 port detected
device: 'usb2-port1': device_add
device: 'ep_81': device_add
device: 'ep_00': device_add
device: 'wakeup1': device_add
dwc3-am62 f910000.dwc3-usb: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:f910000.dwc3-usb': device_unregister
dwc3-am62 f910000.dwc3-usb: Dropping the link to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:f910000.dwc3-usb': device_unregister
devices_kset: Moving 2b1f0000.rtc to end of list
device: 'wakeup2': device_add
device: 'rtc0': device_add
device: 'alarmtimer.2.auto': device_add
device: 'wakeup3': device_add
rtc-ti-k3 2b1f0000.rtc: registered as rtc0
rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:17 UTC (17)
device: 'ti_k3_rtc_scratch0': device_add
devices_kset: Moving cpufreq-dt to end of list
device: 'cooling_device0': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
device: 'gpiochip0': device_add
devices_kset: Moving 601000.gpio to end of list
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
device: 'gpiochip1': device_add
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: error -EPROBE_DEFER: supplier 1-0022 not ready
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
pca953x 1-0022: supply vcc not found, using dummy regulator
device: 'regulator.5': device_add
device: 'regulator:regulator.0--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
pca953x 1-0022: Linked as a consumer to regulator.0
pca953x 1-0022: using AI
device: 'gpiochip2': device_add
devices_kset: Moving 2b300050.target-module to end of list
devices_kset: Moving leds to end of list
device: 'am62-sk:green:heartbeat': device_add
leds-gpio leds: Dropping the link to 601000.gpio
device: 'platform:601000.gpio--platform:leds': device_unregister
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 2b300050.target-module to end of list
devices_kset: Moving 2b300050.target-module to end of list
device: 'regulator.6': device_add
devices_kset: Moving 2b300050.target-module to end of list
am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
am65-cpsw-nuss 8000000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
Sending DHCP requests .., OK
IP-Config: Got DHCP answer from 192.168.89.1, my address is 192.168.89.100
IP-Config: Complete:
     device=eth0, hwaddr=1c:63:49:0f:62:0e, ipaddr=192.168.89.100, mask=255.255.255.0, gw=192.168.89.1
     host=buildroot, domain=lab, nis-domain=(none)
     bootserver=192.168.88.20, rootserver=192.168.88.20, rootpath=
     nameserver0=192.168.89.1
     ntpserver0=192.168.89.1
clk: Disabling unused clocks
PM: genpd: Disabling unused power domains
ALSA device list:
  No soundcards found.
device: '0:22': device_add
VFS: Mounted root (nfs filesystem) on device 0:22.
devtmpfs: mounted
Freeing unused kernel memory: 5888K
Run /sbin/init as init process
  with arguments:
    /sbin/init
  with environment:
    HOME=/
    TERM=linux
udevd[118]: starting version 3.2.14
udevd[119]: starting eudev-3.2.14
device: '0:29': device_add


# Loading the display drivers

[   43.228508] platform display: error -EPROBE_DEFER: wait for supplier /bus@f0000/dss@30200000/oldi-txes/oldi@0
[   44.622012] tidss 30200000.dss: error -EPROBE_DEFER: no panel/bridge for OLDI0.
[   44.629614] tidss 30200000.dss: error -EPROBE_DEFER: failed to init OLDI


# cat /debug/devices_deferred
2b300050.target-module
display	platform: wait for supplier /bus@f0000/dss@30200000/oldi-txes/oldi@0
30200000.dss	tidss: failed to init OLDI

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.4
percpu: Embedded 34 pages/cpu s98832 r8192 d32240 u139264
pcpu-alloc: s98832 r8192 d32240 u139264 alloc=34*4096
pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
Detected VIPT I-cache on CPU0
CPU features: detected: GIC system register CPU interface
CPU features: detected: ARM erratum 845719
alternatives: applying boot alternatives
Kernel command line: console=ttyS2,115200n8 root=/dev/nfs rw nfsroot=/home/tomba/nfs/rootfs32,v3,tcp ip=::::buildroot:eth0:dhcp cma=64M
Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Fallback order for Node 0: 0 
Built 1 zonelists, mobility grouping on.  Total pages: 524288
Policy zone: DMA
mem auto-init: stack:all(zero), heap alloc:off, heap free:off
stackdepot: allocating hash table via alloc_large_system_hash
stackdepot hash table entries: 131072 (order: 9, 2097152 bytes, linear)
software IO TLB: SWIOTLB bounce buffer size adjusted to 2MB
software IO TLB: area num 4.
software IO TLB: mapped [mem 0x00000000f9300000-0x00000000f9500000] (2MB)
SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
ftrace: allocating 48751 entries in 191 pages
ftrace: allocated 191 pages with 7 groups
trace event string verifier disabled
Running RCU self tests
Running RCU synchronous self tests
rcu: Preemptible hierarchical RCU implementation.
rcu: 	RCU event tracing is enabled.
rcu: 	RCU lockdep checking is enabled.
rcu: 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=4.
	Trampoline variant of Tasks RCU enabled.
	Rude variant of Tasks RCU enabled.
	Tracing variant of Tasks RCU enabled.
rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Running RCU synchronous self tests
RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
GICv3: GIC: Using split EOI/Deactivate mode
GICv3: 256 SPIs implemented
GICv3: 0 Extended SPIs implemented
Root IRQ handler: gic_handle_irq
GICv3: GICv3 features: 16 PPIs
GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
ITS [mem 0x01820000-0x0182ffff]
GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
ITS: using cache flushing for cmd queue
GICv3: using LPI property table @0x0000000080300000
GIC: using cache flushing for LPI property table
GICv3: CPU0: using allocated LPI pending table @0x0000000080310000
rcu: srcu_init: Setting srcu_struct sizes based on contention.
arch_timer: cp15 timer(s) running at 200.00MHz (phys).
clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
Console: colour dummy device 80x25
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: 6429 kB
 memory used for stack traces: 4224 kB
 per task-struct memory footprint: 1920 bytes
Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
pid_max: default: 32768 minimum: 301
LSM: initializing lsm=capability
Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
Running RCU synchronous self tests
Running RCU synchronous self tests
Running RCU Tasks wait API self tests
Running RCU Tasks Rude wait API self tests
Running RCU Tasks Trace wait API self tests
rcu: Hierarchical SRCU implementation.
rcu: 	Max phase no-delay instances is 1000.
Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Callback from call_rcu_tasks_trace() invoked.
EFI services will not be available.
smp: Bringing up secondary CPUs ...
Detected VIPT I-cache on CPU1
GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
GICv3: CPU1: using allocated LPI pending table @0x0000000080320000
CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
Detected VIPT I-cache on CPU2
GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
GICv3: CPU2: using allocated LPI pending table @0x0000000080330000
CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
Detected VIPT I-cache on CPU3
GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
GICv3: CPU3: using allocated LPI pending table @0x0000000080340000
CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
smp: Brought up 1 node, 4 CPUs
SMP: Total of 4 processors activated.
CPU: All CPU(s) started at EL2
CPU features: detected: 32-bit EL0 Support
CPU features: detected: CRC32 instructions
alternatives: applying system-wide alternatives
Memory: 1887992K/2097152K available (15616K kernel code, 2702K rwdata, 6308K rodata, 5888K init, 16316K bss, 131372K reserved, 65536K cma-reserved)
devtmpfs: initialized
device: 'platform': device_add
device: 'memory': device_add
device: 'memory16': device_add
device: 'memory17': device_add
device: 'memory18': device_add
device: 'memory19': device_add
device: 'memory20': device_add
device: 'memory21': device_add
device: 'memory22': device_add
device: 'memory23': device_add
device: 'memory24': device_add
device: 'memory25': device_add
device: 'memory26': device_add
device: 'memory27': device_add
device: 'memory28': device_add
device: 'memory29': device_add
device: 'memory30': device_add
device: 'memory31': device_add
device: 'node': device_add
device: 'node0': device_add
device: 'cpu': device_add
device: 'cpu0': device_add
device: 'cpu1': device_add
device: 'cpu2': device_add
device: 'cpu3': device_add
device: 'container': device_add
device: 'workqueue': device_add
Running RCU synchronous self tests
Running RCU synchronous self tests
DMA-API: preallocated 65536 debug entries
DMA-API: debugging enabled by kernel config
clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
20992 pages in range for non-PLT usage
512512 pages in range for PLT usage
pinctrl core: initialized pinctrl subsystem
device: 'reg-dummy': device_add
DMI not present or invalid.
device: 'regulator.0': device_add
NET: Registered PF_NETLINK/PF_ROUTE protocol family
Callback from call_rcu_tasks() invoked.
DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
audit: initializing netlink subsys (disabled)
audit: type=2000 audit(0.336:1): state=initialized audit_enabled=0 res=1
device: 'vtcon0': device_add
thermal_sys: Registered thermal governor 'step_wise'
thermal_sys: Registered thermal governor 'power_allocator'
cpuidle: using governor menu
hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
ASID allocator initialised with 65536 entries
Serial: AMBA PL011 UART driver
device: '9ca00000.ramoops': device_add
device: 'firmware:optee': device_add
device: 'firmware:psci': device_add
device: 'display': device_add
/display Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@0
/display Dropping the fwnode link to /bus@f0000/dss@30200000/oldi-txes/oldi@0
device: 'timer-cl0-cpu0': device_add
/timer-cl0-cpu0 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
platform timer-cl0-cpu0: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/timer-cl0-cpu0 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'pmu': device_add
/pmu Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
platform pmu: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/pmu Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'bus@f0000': device_add
/bus@f0000/bus@b00000/target-module@2b300050 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@b00000/target-module@2b300050 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@b00000/temperature-sensor@b00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/interrupt-controller@1800000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@100000/clock-controller@82e0 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@100000/clock-controller@82e4 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@48000000/mailbox@4d000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@48000000/interrupt-controller@48000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@48000000/dma-controller@485c0100 Linked as a fwnode consumer to /bus@f0000/bus@48000000/interrupt-controller@48000000
/bus@f0000/bus@48000000/dma-controller@485c0000 Linked as a fwnode consumer to /bus@f0000/bus@48000000/interrupt-controller@48000000
/bus@f0000/system-controller@44043000 Linked as a fwnode consumer to /bus@f0000/bus@48000000/mailbox@4d000000
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2400000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2410000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2420000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2430000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2440000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2450000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2460000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/timer@2470000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-uart0-default-pins
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
/bus@f0000/i2c@20000000/touchscreen@41 Linked as a fwnode consumer to /bus@f0000/i2c@20010000/gpio@22
/bus@f0000/i2c@20000000/tps6598x@3f/connector Linked as a fwnode consumer to /bus@f0000/dwc3-usb@f900000/usb@31000000
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
/bus@f0000/i2c@20010000/audio-codec@1b Linked as a fwnode consumer to /regulator-2
/bus@f0000/i2c@20010000/audio-codec@1b Linked as a fwnode consumer to /regulator-5
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/gpio@601000
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-gpio1-ioexp-intr-default-pins
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
/bus@f0000/interrupt-controller@a00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@a00000
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/gpio@600000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@a00000
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/gpio@601000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mmc0-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mmc1-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /regulator-3
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /regulator-4
/bus@f0000/dwc3-usb@f900000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dwc3-usb@f900000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000/i2c@20000000/tps6598x@3f/connector
/bus@f0000/dwc3-usb@f910000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dwc3-usb@f910000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-usb1-default-pins
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/ospi0-default-pins
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/gpu@fd00000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-rgmii1-default-pins
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-rgmii2-default-pins
/bus@f0000/ethernet@8000000/ethernet-ports/port@1 Linked as a fwnode consumer to /bus@f0000/bus@100000/phy@4044
/bus@f0000/ethernet@8000000/ethernet-ports/port@2 Linked as a fwnode consumer to /bus@f0000/bus@100000/phy@4044
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mdio1-default-pins
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /clock-divider-oldi
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-dss0-default-pins
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /display
/bus@f0000/dss@30200000/oldi-txes/oldi@0 Linked as a fwnode consumer to /bus@f0000/dss@30200000
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/dss@30200000/oldi-txes/oldi@0
/bus@f0000/mailbox@29000000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/watchdog@e000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e000000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e010000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e020000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e030000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e030000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/watchdog@e0f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/watchdog@e0f0000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/interrupt-controller@1800000
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/clock-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/system-controller@44043000/power-controller
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/main-mcasp1-default-pins
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /clock-divider-oldi - might never become dev
device: 'platform:display--platform:bus@f0000': device_add
platform bus@f0000: Linked as a sync state only consumer to display
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'bus@f0000:bus@4000000': device_add
device: '4084000.pinctrl': device_add
device: '4100000.esm': device_add
device: 'bus@f0000:bus@b00000': device_add
platform bus@f0000:bus@b00000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '43000000.syscon': device_add
device: '43000014.chipid': device_add
device: '43000200.ethernet-mac-syscon': device_add
device: '43004008.syscon': device_add
device: '43004018.syscon': device_add
device: '2b300050.target-module': device_add
device: '2b1f0000.rtc': device_add
platform 2b1f0000.rtc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'b00000.temperature-sensor': device_add
device: '70000000.sram': device_add
device: 'bus@f0000:bus@100000': device_add
device: '104044.phy': device_add
device: '104130.clock-controller': device_add
device: '1082e0.clock-controller': device_add
device: '1082e4.clock-controller': device_add
device: '108600.oldi-io-controller': device_add
device: 'bus@f0000:bus@48000000': device_add
platform bus@f0000:bus@48000000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
platform bus@f0000:bus@48000000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '4d000000.mailbox': device_add
platform 4d000000.mailbox: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@48000000/mailbox@4d000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '48000000.interrupt-controller': device_add
platform 48000000.interrupt-controller: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@48000000/interrupt-controller@48000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '485c0100.dma-controller': device_add
device: 'platform:48000000.interrupt-controller--platform:485c0100.dma-controller': device_add
devices_kset: Moving 485c0100.dma-controller to end of list
platform 485c0100.dma-controller: Linked as a consumer to 48000000.interrupt-controller
/bus@f0000/bus@48000000/dma-controller@485c0100 Dropping the fwnode link to /bus@f0000/bus@48000000/interrupt-controller@48000000
device: '485c0000.dma-controller': device_add
device: 'platform:48000000.interrupt-controller--platform:485c0000.dma-controller': device_add
devices_kset: Moving 485c0000.dma-controller to end of list
platform 485c0000.dma-controller: Linked as a consumer to 48000000.interrupt-controller
/bus@f0000/bus@48000000/dma-controller@485c0000 Dropping the fwnode link to /bus@f0000/bus@48000000/interrupt-controller@48000000
device: '44043000.system-controller': device_add
device: 'platform:4d000000.mailbox--platform:44043000.system-controller': device_add
devices_kset: Moving 44043000.system-controller to end of list
platform 44043000.system-controller: Linked as a consumer to 4d000000.mailbox
/bus@f0000/system-controller@44043000 Dropping the fwnode link to /bus@f0000/bus@48000000/mailbox@4d000000
device: '40900000.crypto': device_add
device: 'f4000.pinctrl': device_add
device: '420000.esm': device_add
device: '2400000.timer': device_add
platform 2400000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2410000.timer': device_add
platform 2410000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2420000.timer': device_add
platform 2420000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2430000.timer': device_add
platform 2430000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2440000.timer': device_add
platform 2440000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2450000.timer': device_add
platform 2450000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2460000.timer': device_add
platform 2460000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2470000.timer': device_add
platform 2470000.timer: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '2800000.serial': device_add
platform 2800000.serial: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20000000.i2c': device_add
platform 20000000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20010000.i2c': device_add
platform 20010000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '20020000.i2c': device_add
platform 20020000.i2c: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'bus@f0000:interrupt-controller@a00000': device_add
platform bus@f0000:interrupt-controller@a00000: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/interrupt-controller@a00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '600000.gpio': device_add
device: 'platform:bus@f0000:interrupt-controller@a00000--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
platform 600000.gpio: Linked as a consumer to bus@f0000:interrupt-controller@a00000
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/interrupt-controller@a00000
platform 600000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: '601000.gpio': device_add
device: 'platform:601000.gpio--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to 601000.gpio
device: 'platform:bus@f0000:interrupt-controller@a00000--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to bus@f0000:interrupt-controller@a00000
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/interrupt-controller@a00000
platform 601000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: 'fa10000.mmc': device_add
platform fa10000.mmc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'fa00000.mmc': device_add
platform fa00000.mmc: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'f900000.dwc3-usb': device_add
platform f900000.dwc3-usb: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'fc00000.bus': device_add
platform fc00000.bus: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: 'fc40000.spi': device_add
platform fc40000.spi: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'fd00000.gpu': device_add
platform fd00000.gpu: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: '8000000.ethernet': device_add
device: 'platform:104044.phy--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to 104044.phy
platform 8000000.ethernet: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
device: '30200000.dss': device_add
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: depends on /bus@f0000/dss@30200000
----- cycle: start -----
/bus@f0000/dss@30200000/oldi-txes/oldi@0: cycle: child of /bus@f0000/dss@30200000
/bus@f0000/dss@30200000: cycle: depends on /bus@f0000/dss@30200000/oldi-txes/oldi@0
----- cycle: end -----
platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/dss@30200000/oldi-txes/oldi@0
platform 30200000.dss: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
platform 30200000.dss: Not linking /clock-divider-oldi - might never become dev
/bus@f0000/dss@30200000 Dropping the fwnode link to /clock-divider-oldi
device: 'platform:display--platform:30200000.dss': device_add
platform 30200000.dss: Linked as a sync state only consumer to display
device: '2a000000.spinlock': device_add
device: '29000000.mailbox': device_add
platform 29000000.mailbox: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/mailbox@29000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'e000000.watchdog': device_add
device: 'e010000.watchdog': device_add
device: 'e020000.watchdog': device_add
device: 'e030000.watchdog': device_add
device: 'e0f0000.watchdog': device_add
device: '2b10000.audio-controller': device_add
platform 2b10000.audio-controller: Not linking /bus@f0000/interrupt-controller@1800000 - might never become dev
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'opp-table': device_add
device: 'l2-cache0': device_add
device: 'leds': device_add
/leds Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/usr-led-default-pins
/leds/led-0 Linked as a fwnode consumer to /bus@f0000/gpio@601000
device: 'platform:601000.gpio--platform:leds': device_add
platform leds: Linked as a sync state only consumer to 601000.gpio
device: 'sound': device_add
/sound/simple-audio-card,codec Linked as a fwnode consumer to /clk-0
platform sound: Not linking /clk-0 - might never become dev
device: 'regulator-0': device_add
device: 'regulator-1': device_add
/regulator-1 Linked as a fwnode consumer to /regulator-0
device: 'platform:regulator-0--platform:regulator-1': device_add
devices_kset: Moving regulator-1 to end of list
platform regulator-1: Linked as a consumer to regulator-0
/regulator-1 Dropping the fwnode link to /regulator-0
device: 'regulator-2': device_add
/regulator-2 Linked as a fwnode consumer to /regulator-0
device: 'platform:regulator-2--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to regulator-2
device: 'platform:regulator-0--platform:regulator-2': device_add
devices_kset: Moving regulator-2 to end of list
platform regulator-2: Linked as a consumer to regulator-0
/regulator-2 Dropping the fwnode link to /regulator-0
device: 'regulator-3': device_add
/regulator-3 Linked as a fwnode consumer to /regulator-2
/regulator-3 Linked as a fwnode consumer to /bus@f0000/i2c@20010000/gpio@22
device: 'platform:regulator-3--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to regulator-3
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /regulator-3
device: 'platform:regulator-2--platform:regulator-3': device_add
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: Linked as a consumer to regulator-2
/regulator-3 Dropping the fwnode link to /regulator-2
device: 'regulator-4': device_add
/regulator-4 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
/regulator-4 Linked as a fwnode consumer to /regulator-1
/regulator-4 Linked as a fwnode consumer to /bus@f0000/gpio@600000
device: 'platform:regulator-4--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to regulator-4
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /regulator-4
device: 'platform:600000.gpio--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to 600000.gpio
/regulator-4 Dropping the fwnode link to /bus@f0000/gpio@600000
device: 'platform:regulator-1--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to regulator-1
/regulator-4 Dropping the fwnode link to /regulator-1
device: 'regulator-5': device_add
/regulator-5 Linked as a fwnode consumer to /regulator-2
device: 'platform:regulator-5--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to regulator-5
device: 'platform:regulator-2--platform:regulator-5': device_add
devices_kset: Moving regulator-5 to end of list
platform regulator-5: Linked as a consumer to regulator-2
/regulator-5 Dropping the fwnode link to /regulator-2
device: 'writeback': device_add
HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
device: 'memory_tiering': device_add
ACPI: Interpreter disabled.
device: 'soc0': device_add
k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
platform regulator-1: error -EPROBE_DEFER: supplier regulator-0 not ready
platform regulator-2: error -EPROBE_DEFER: supplier regulator-0 not ready
platform regulator-3: error -EPROBE_DEFER: wait for supplier /bus@f0000/i2c@20010000/gpio@22
platform regulator-5: error -EPROBE_DEFER: supplier regulator-2 not ready
device: 'regulator.1': device_add
platform regulator-4: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
iommu: Default domain type: Translated
iommu: DMA domain TLB invalidation policy: strict mode
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
platform 20000000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
platform 20010000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
platform 20020000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
pps_core: LinuxPPS API ver. 1 registered
pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx>
PTP clock support registered
EDAC MC: Ver: 3.0.0
device: 'edac': device_add
device: 'mc': device_add
scmi_core: SCMI protocol bus registered
FPGA manager framework
Advanced Linux Sound Architecture Driver Initialized.
device: 'lo': device_add
clocksource: Switched to clocksource arch_sys_counter
VFS: Disk quotas dquot_6.6.0
VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
pnp: PnP ACPI: disabled
device: 'mem': device_add
device: 'null': device_add
device: 'port': device_add
device: 'zero': device_add
device: 'full': device_add
device: 'random': device_add
device: 'urandom': device_add
device: 'kmsg': device_add
device: 'tty': device_add
device: 'console': device_add
device: 'tty0': device_add
device: 'vcs': device_add
device: 'vcsu': device_add
device: 'vcsa': device_add
device: 'vcs1': device_add
device: 'vcsu1': device_add
device: 'vcsa1': device_add
device: 'tty1': device_add
device: 'tty2': device_add
device: 'tty3': device_add
device: 'tty4': device_add
device: 'tty5': device_add
device: 'tty6': device_add
device: 'tty7': device_add
device: 'tty8': device_add
device: 'tty9': device_add
device: 'tty10': device_add
device: 'tty11': device_add
device: 'tty12': device_add
device: 'tty13': device_add
device: 'tty14': device_add
device: 'tty15': device_add
device: 'tty16': device_add
device: 'tty17': device_add
device: 'tty18': device_add
device: 'tty19': device_add
device: 'tty20': device_add
device: 'tty21': device_add
device: 'tty22': device_add
device: 'tty23': device_add
device: 'tty24': device_add
device: 'tty25': device_add
device: 'tty26': device_add
device: 'tty27': device_add
device: 'tty28': device_add
device: 'tty29': device_add
device: 'tty30': device_add
device: 'tty31': device_add
device: 'tty32': device_add
device: 'tty33': device_add
device: 'tty34': device_add
device: 'tty35': device_add
device: 'tty36': device_add
device: 'tty37': device_add
device: 'tty38': device_add
device: 'tty39': device_add
device: 'tty40': device_add
device: 'tty41': device_add
device: 'tty42': device_add
device: 'tty43': device_add
device: 'tty44': device_add
device: 'tty45': device_add
device: 'tty46': device_add
device: 'tty47': device_add
device: 'tty48': device_add
device: 'tty49': device_add
device: 'tty50': device_add
device: 'tty51': device_add
device: 'tty52': device_add
device: 'tty53': device_add
device: 'tty54': device_add
device: 'tty55': device_add
device: 'tty56': device_add
device: 'tty57': device_add
device: 'tty58': device_add
device: 'tty59': device_add
device: 'tty60': device_add
device: 'tty61': device_add
device: 'tty62': device_add
device: 'tty63': device_add
device: 'hw_random': device_add
NET: Registered PF_INET protocol family
IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
tcp_listen_portaddr_hash hash table entries: 1024 (order: 4, 73728 bytes, linear)
Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
TCP bind hash table entries: 16384 (order: 9, 2359296 bytes, linear)
TCP: Hash tables configured (established 16384 bind 16384)
UDP hash table entries: 1024 (order: 5, 163840 bytes, linear)
UDP-Lite hash table entries: 1024 (order: 5, 163840 bytes, linear)
NET: Registered PF_UNIX/PF_LOCAL protocol family
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp-with-tls transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
device: 'snapshot': device_add
device: 'clocksource': device_add
device: 'clocksource0': device_add
device: 'clockevents': device_add
device: 'clockevent0': device_add
device: 'clockevent1': device_add
device: 'clockevent2': device_add
device: 'clockevent3': device_add
device: 'broadcast': device_add
device: 'breakpoint': device_add
device: 'uprobe': device_add
device: 'tracepoint': device_add
device: 'software': device_add
Initialise system trusted keyrings
workingset: timestamp_bits=42 max_order=19 bucket_order=0
squashfs: version 4.0 (2009/01/31) Phillip Lougher
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
nfs4filelayout_init: NFSv4 File Layout Driver Registering...
nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
device: 'autofs': device_add
Key type asymmetric registered
Asymmetric key parser 'x509' registered
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
io scheduler mq-deadline registered
io scheduler kyber registered
io scheduler bfq registered
ti-sci-intr bus@f0000:interrupt-controller@a00000: error -EPROBE_DEFER: ti,sci read fail
ti-sci-inta 48000000.interrupt-controller: error -EPROBE_DEFER: ti,sci read fail
/bus@f0000/ethernet@8000000/cpts@3d000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/ethernet@8000000/cpts@3d000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
/bus@f0000/interrupt-controller@1800000 Linked as a fwnode consumer to /bus@f0000
/bus@f0000/interrupt-controller@1800000 Dropping the fwnode link to /bus@f0000/interrupt-controller@1800000
device: 'platform:bus@f0000--platform:f900000.dwc3-usb': device_add
platform f900000.dwc3-usb: Linked as a sync state only consumer to bus@f0000
device: 'platform:bus@f0000--platform:f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Linked as a sync state only consumer to bus@f0000
device: 'platform:bus@f0000--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to bus@f0000
simple-pm-bus bus@f0000: Dropping the link to display
device: 'platform:display--platform:bus@f0000': device_unregister
platform 2b300050.target-module: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
device: 'phy-104044.phy.0': device_add
device: 'phy-104044.phy.1': device_add
pinctrl-single 4084000.pinctrl: 34 pins, size 136
pinctrl-single f4000.pinctrl: 171 pins, size 684
/bus@f0000/serial@2800000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-uart0-default-pins
/bus@f0000/i2c@20000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c0-default-pins
/bus@f0000/i2c@20010000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c1-default-pins
/bus@f0000/i2c@20020000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-i2c2-default-pins
/bus@f0000/mmc@fa10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mmc0-default-pins
/bus@f0000/mmc@fa00000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mmc1-default-pins
/leds Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/leds Dropping the fwnode link to /bus@f0000/pinctrl@f4000/usr-led-default-pins
/bus@f0000/ethernet@8000000/mdio@f00 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mdio1-default-pins
/bus@f0000/ethernet@8000000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-rgmii1-default-pins
/bus@f0000/dwc3-usb@f910000/usb@31100000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-usb1-default-pins
/bus@f0000/audio-controller@2b10000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-mcasp1-default-pins
/bus@f0000/dss@30200000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-dss0-default-pins
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-rgmii2-default-pins
/bus@f0000/bus@fc00000/spi@fc40000 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/ospi0-default-pins
/regulator-4 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/regulator-4 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/vdd-sd-dv-default-pins
/bus@f0000/i2c@20010000/gpio@22 Linked as a fwnode consumer to /bus@f0000/pinctrl@f4000
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/pinctrl@f4000/main-gpio1-ioexp-intr-default-pins
device: 'platform:f4000.pinctrl--platform:20010000.i2c': device_add
platform 20010000.i2c: Linked as a sync state only consumer to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:regulator-4': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: Linked as a consumer to f4000.pinctrl
/regulator-4 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to f4000.pinctrl
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:30200000.dss': device_add
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to f4000.pinctrl
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to f4000.pinctrl
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:f910000.dwc3-usb': device_add
platform f910000.dwc3-usb: Linked as a sync state only consumer to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to f4000.pinctrl
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:leds': device_add
devices_kset: Moving leds to end of list
platform leds: Linked as a consumer to f4000.pinctrl
/leds Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to f4000.pinctrl
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to f4000.pinctrl
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:f4000.pinctrl--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to f4000.pinctrl
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
ledtrig-cpu: registered to indicate activity on CPUs
device: 'acpi-einj': device_add
platform 1082e0.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
platform 1082e4.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
platform 485c0100.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
platform 485c0000.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
device: 'ptyp0': device_add
device: 'ptyp1': device_add
device: 'ptyp2': device_add
device: 'ptyp3': device_add
device: 'ptyp4': device_add
device: 'ptyp5': device_add
device: 'ptyp6': device_add
device: 'ptyp7': device_add
device: 'ptyp8': device_add
device: 'ptyp9': device_add
device: 'ptypa': device_add
device: 'ptypb': device_add
device: 'ptypc': device_add
device: 'ptypd': device_add
device: 'ptype': device_add
device: 'ptypf': device_add
device: 'ttyp0': device_add
device: 'ttyp1': device_add
device: 'ttyp2': device_add
device: 'ttyp3': device_add
device: 'ttyp4': device_add
device: 'ttyp5': device_add
device: 'ttyp6': device_add
device: 'ttyp7': device_add
device: 'ttyp8': device_add
device: 'ttyp9': device_add
device: 'ttypa': device_add
device: 'ttypb': device_add
device: 'ttypc': device_add
device: 'ttypd': device_add
device: 'ttype': device_add
device: 'ttypf': device_add
device: 'ptmx': device_add
Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
device: 'serial8250': device_add
device: 'serial8250:0': device_add
device: 'serial8250:0.0': device_add
device: 'serial0': device_add
device: 'ttyS0': device_add
device: 'serial8250:0.1': device_add
device: 'serial0': device_add
device: 'ttyS1': device_add
device: 'serial8250:0.2': device_add
device: 'serial0': device_add
device: 'ttyS2': device_add
device: 'serial8250:0.3': device_add
device: 'serial0': device_add
device: 'ttyS3': device_add
STM32 USART driver initialized
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'cache': device_add
device: 'index0': device_add
device: 'index1': device_add
device: 'index2': device_add
device: 'loop-control': device_add
device: 'loop0': device_add
device: '7:0': device_add
device: 'loop1': device_add
device: '7:1': device_add
device: 'loop2': device_add
device: '7:2': device_add
device: 'loop3': device_add
device: '7:3': device_add
device: 'loop4': device_add
device: '7:4': device_add
device: 'loop5': device_add
device: '7:5': device_add
device: 'loop6': device_add
device: '7:6': device_add
device: 'loop7': device_add
device: '7:7': device_add
loop: module loaded
device: 'system': device_add
device: 'reserved': device_add
device: 'mtd-0': device_add
platform fc40000.spi: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
device: 'Fixed MDIO bus.0': device_add
device: 'fixed-0': device_add
tun: Universal TUN/TAP device driver, 1.6
device: 'tun': device_add
platform 8000000.ethernet: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
device: 'vfio': device_add
VFIO - User Level meta-driver version: 0.3
platform f900000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform f910000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2b1f0000.rtc: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
i2c_dev: i2c /dev entries driver
device: 'ti-cpufreq': device_add
device: 'cpufreq-dt': device_add
cpu cpu0: error -EPROBE_DEFER: Couldn't find clock
device: 'psci-cpuidle': device_add
platform 44043000.system-controller: error -EPROBE_DEFER: supplier 4d000000.mailbox not ready
SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
platform 2400000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2410000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2420000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2430000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2440000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2450000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2460000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
platform 2470000.timer: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
device: 'armv8_cortex_a53': device_add
hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 (0,8000003f) counters available
watchdog: NMI not fully supported
watchdog: Hard watchdog permanently disabled
optee: probing for conduit method.
optee: revision 4.0 (2a5b1d12)
device: 'tee0': device_add
device: 'teepriv0': device_add
optee: dynamic shared memory is enabled
device: 'optee-ta-ab7a617c-b8e7-4d8f-8301-d09b61036b64': device_add
random: crng init done
optee: initialized driver
device: 'timer': device_add
device: 'snd-soc-dummy': device_add
NET: Registered PF_PACKET protocol family
Key type dns_resolver registered
device: 'cpu_dma_latency': device_add
registered taskstats version 1
Loading compiled-in X.509 certificates
device: 'memory_tier4': device_add
Demotion targets for Node 0: null
kmemleak: Kernel memory leak detector initialized (mem pool available: 15791)
kmemleak: Automatic memory scanning thread started
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving regulator-1 to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-2 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-5 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-5 to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving bus@f0000:interrupt-controller@a00000 to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 601000.gpio to end of list
device: 'regulator.2': device_add
ti-sci-intr bus@f0000:interrupt-controller@a00000: error -EPROBE_DEFER: ti,sci read fail
device: 'regulator.3': device_add
devices_kset: Moving 48000000.interrupt-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
devices_kset: Moving 485c0000.dma-controller to end of list
platform regulator-3: error -EPROBE_DEFER: wait for supplier /bus@f0000/i2c@20010000/gpio@22
platform regulator-5: error -EPROBE_DEFER: supplier regulator-2 not ready
platform regulator-4: error -EPROBE_DEFER: supplier 600000.gpio not ready
ti-sci-inta 48000000.interrupt-controller: error -EPROBE_DEFER: ti,sci read fail
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving leds to end of list
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
devices_kset: Moving 1082e0.clock-controller to end of list
platform 1082e0.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 1082e4.clock-controller to end of list
platform 1082e4.clock-controller: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/clock-controller
devices_kset: Moving 485c0100.dma-controller to end of list
platform 485c0100.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
devices_kset: Moving 485c0000.dma-controller to end of list
platform 485c0000.dma-controller: error -EPROBE_DEFER: supplier 48000000.interrupt-controller not ready
devices_kset: Moving 2800000.serial to end of list
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: error -EPROBE_DEFER: wait for supplier /bus@f0000/system-controller@44043000/power-controller
devices_kset: Moving cpufreq-dt to end of list
cpu cpu0: error -EPROBE_DEFER: Couldn't find clock
devices_kset: Moving 44043000.system-controller to end of list
ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.1.8--v09.01.08 (Kool Koala)')
device: '44043000.system-controller:power-controller': device_add
device: 'platform:44043000.system-controller:power-controller--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e0f0000.watchdog': device_add
devices_kset: Moving e0f0000.watchdog to end of list
platform e0f0000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e0f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e030000.watchdog': device_add
devices_kset: Moving e030000.watchdog to end of list
platform e030000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e030000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e020000.watchdog': device_add
devices_kset: Moving e020000.watchdog to end of list
platform e020000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e010000.watchdog': device_add
devices_kset: Moving e010000.watchdog to end of list
platform e010000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:e000000.watchdog': device_add
devices_kset: Moving e000000.watchdog to end of list
platform e000000.watchdog: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/watchdog@e000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:30200000.dss': device_add
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fd00000.gpu': device_add
devices_kset: Moving fd00000.gpu to end of list
platform fd00000.gpu: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:f910000.dwc3-usb': device_add
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dwc3-usb@f910000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:f900000.dwc3-usb': device_add
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/dwc3-usb@f900000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20010000.i2c': device_add
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2470000.timer': device_add
devices_kset: Moving 2470000.timer to end of list
platform 2470000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2460000.timer': device_add
devices_kset: Moving 2460000.timer to end of list
platform 2460000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2450000.timer': device_add
devices_kset: Moving 2450000.timer to end of list
platform 2450000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2440000.timer': device_add
devices_kset: Moving 2440000.timer to end of list
platform 2440000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2430000.timer': device_add
devices_kset: Moving 2430000.timer to end of list
platform 2430000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2420000.timer': device_add
devices_kset: Moving 2420000.timer to end of list
platform 2420000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2410000.timer': device_add
devices_kset: Moving 2410000.timer to end of list
platform 2410000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2400000.timer': device_add
devices_kset: Moving 2400000.timer to end of list
platform 2400000.timer: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:b00000.temperature-sensor': device_add
devices_kset: Moving b00000.temperature-sensor to end of list
platform b00000.temperature-sensor: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/temperature-sensor@b00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2b1f0000.rtc': device_add
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: 'platform:44043000.system-controller:power-controller--platform:2b300050.target-module': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: Linked as a consumer to 44043000.system-controller:power-controller
/bus@f0000/bus@b00000/target-module@2b300050 Dropping the fwnode link to /bus@f0000/system-controller@44043000/power-controller
device: '44043000.system-controller:clock-controller': device_add
device: 'platform:44043000.system-controller:clock-controller--platform:2b10000.audio-controller': device_add
devices_kset: Moving 2b10000.audio-controller to end of list
platform 2b10000.audio-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/audio-controller@2b10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e0f0000.watchdog': device_add
devices_kset: Moving e0f0000.watchdog to end of list
platform e0f0000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e0f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e030000.watchdog': device_add
devices_kset: Moving e030000.watchdog to end of list
platform e030000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e030000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e020000.watchdog': device_add
devices_kset: Moving e020000.watchdog to end of list
platform e020000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e010000.watchdog': device_add
devices_kset: Moving e010000.watchdog to end of list
platform e010000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:e000000.watchdog': device_add
devices_kset: Moving e000000.watchdog to end of list
platform e000000.watchdog: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/watchdog@e000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:30200000.dss': device_add
platform 30200000.dss: Linked as a sync state only consumer to 44043000.system-controller:clock-controller
devices_kset: Moving 30200000.dss to end of list
platform 30200000.dss: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:8000000.ethernet': device_add
platform 8000000.ethernet: Linked as a sync state only consumer to 44043000.system-controller:clock-controller
devices_kset: Moving 8000000.ethernet to end of list
platform 8000000.ethernet: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/ethernet@8000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fd00000.gpu': device_add
devices_kset: Moving fd00000.gpu to end of list
platform fd00000.gpu: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpu@fd00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fc40000.spi': device_add
devices_kset: Moving fc40000.spi to end of list
platform fc40000.spi: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@fc00000/spi@fc40000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:f910000.dwc3-usb': device_add
devices_kset: Moving f910000.dwc3-usb to end of list
platform f910000.dwc3-usb: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dwc3-usb@f910000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:f900000.dwc3-usb': device_add
devices_kset: Moving f900000.dwc3-usb to end of list
platform f900000.dwc3-usb: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/dwc3-usb@f900000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fa00000.mmc': device_add
devices_kset: Moving fa00000.mmc to end of list
platform fa00000.mmc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/mmc@fa00000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:fa10000.mmc': device_add
devices_kset: Moving fa10000.mmc to end of list
platform fa10000.mmc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/mmc@fa10000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:601000.gpio': device_add
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpio@601000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:600000.gpio': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/gpio@600000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20020000.i2c': device_add
devices_kset: Moving 20020000.i2c to end of list
platform 20020000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20020000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20010000.i2c': device_add
devices_kset: Moving 20010000.i2c to end of list
platform 20010000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20010000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:20000000.i2c': device_add
devices_kset: Moving 20000000.i2c to end of list
platform 20000000.i2c: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/i2c@20000000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2800000.serial': device_add
devices_kset: Moving 2800000.serial to end of list
platform 2800000.serial: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/serial@2800000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2470000.timer': device_add
devices_kset: Moving 2470000.timer to end of list
platform 2470000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2470000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2460000.timer': device_add
devices_kset: Moving 2460000.timer to end of list
platform 2460000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2460000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2450000.timer': device_add
devices_kset: Moving 2450000.timer to end of list
platform 2450000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2450000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2440000.timer': device_add
devices_kset: Moving 2440000.timer to end of list
platform 2440000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2440000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2430000.timer': device_add
devices_kset: Moving 2430000.timer to end of list
platform 2430000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2430000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2420000.timer': device_add
devices_kset: Moving 2420000.timer to end of list
platform 2420000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2420000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2410000.timer': device_add
devices_kset: Moving 2410000.timer to end of list
platform 2410000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2410000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2400000.timer': device_add
devices_kset: Moving 2400000.timer to end of list
platform 2400000.timer: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/timer@2400000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:1082e4.clock-controller': device_add
devices_kset: Moving 1082e4.clock-controller to end of list
platform 1082e4.clock-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@100000/clock-controller@82e4 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:1082e0.clock-controller': device_add
devices_kset: Moving 1082e0.clock-controller to end of list
platform 1082e0.clock-controller: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@100000/clock-controller@82e0 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2b1f0000.rtc': device_add
devices_kset: Moving 2b1f0000.rtc to end of list
platform 2b1f0000.rtc: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@b00000/rtc@2b1f0000 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: 'platform:44043000.system-controller:clock-controller--platform:2b300050.target-module': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/bus@b00000/target-module@2b300050 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
device: '44043000.system-controller:reset-controller': device_add
devices_kset: Moving 2400000.timer to end of list
devices_kset: Moving 2410000.timer to end of list
devices_kset: Moving 2420000.timer to end of list
devices_kset: Moving 2430000.timer to end of list
devices_kset: Moving 2440000.timer to end of list
devices_kset: Moving 2450000.timer to end of list
devices_kset: Moving 2460000.timer to end of list
devices_kset: Moving 2470000.timer to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform 600000.gpio: error -EPROBE_DEFER: supplier bus@f0000:interrupt-controller@a00000 not ready
devices_kset: Moving 601000.gpio to end of list
platform 601000.gpio: error -EPROBE_DEFER: supplier bus@f0000:interrupt-controller@a00000 not ready
devices_kset: Moving 20000000.i2c to end of list
device: 'i2c-0': device_add
device: 'i2c-0': device_add
device: '0-0041': device_add
device: '0-0051': device_add
device: '0-003f': device_add
omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
devices_kset: Moving 20010000.i2c to end of list
device: 'i2c-1': device_add
device: 'i2c-1': device_add
device: '1-001b': device_add
device: 'platform:regulator-5--i2c:1-001b': device_add
devices_kset: Moving 1-001b to end of list
i2c 1-001b: Linked as a consumer to regulator-5
/bus@f0000/i2c@20010000/audio-codec@1b Dropping the fwnode link to /regulator-5
device: 'platform:regulator-2--i2c:1-001b': device_add
devices_kset: Moving 1-001b to end of list
i2c 1-001b: Linked as a consumer to regulator-2
/bus@f0000/i2c@20010000/audio-codec@1b Dropping the fwnode link to /regulator-2
device: '1-0022': device_add
device: 'i2c:1-0022--platform:regulator-3': device_add
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-3: Linked as a consumer to 1-0022
/regulator-3 Dropping the fwnode link to /bus@f0000/i2c@20010000/gpio@22
device: 'i2c:1-0022--i2c:0-0041': device_add
devices_kset: Moving 0-0041 to end of list
i2c 0-0041: Linked as a consumer to 1-0022
/bus@f0000/i2c@20000000/touchscreen@41 Dropping the fwnode link to /bus@f0000/i2c@20010000/gpio@22
device: 'platform:f4000.pinctrl--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
i2c 1-0022: Linked as a consumer to f4000.pinctrl
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:601000.gpio--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
i2c 1-0022: Linked as a consumer to 601000.gpio
/bus@f0000/i2c@20010000/gpio@22 Dropping the fwnode link to /bus@f0000/gpio@601000
i2c 1-0022: error -EPROBE_DEFER: supplier 601000.gpio not ready
omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
omap_i2c 20010000.i2c: Dropping the link to 601000.gpio
device: 'platform:601000.gpio--platform:20010000.i2c': device_unregister
omap_i2c 20010000.i2c: Dropping the link to regulator-2
device: 'platform:regulator-2--platform:20010000.i2c': device_unregister
omap_i2c 20010000.i2c: Dropping the link to regulator-5
device: 'platform:regulator-5--platform:20010000.i2c': device_unregister
devices_kset: Moving 20020000.i2c to end of list
device: 'i2c-2': device_add
device: 'i2c-2': device_add
omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
devices_kset: Moving bus@f0000:interrupt-controller@a00000 to end of list
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 601000.gpio to end of list
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
platform regulator-4: error -EPROBE_DEFER: supplier 600000.gpio not ready
devices_kset: Moving regulator-5 to end of list
devices_kset: Moving 1-001b to end of list
platform regulator-3: error -EPROBE_DEFER: supplier 1-0022 not ready
devices_kset: Moving 48000000.interrupt-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
devices_kset: Moving 485c0000.dma-controller to end of list
ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
device: 'regulator.4': device_add
devices_kset: Moving 2b300050.target-module to end of list
devices_kset: Moving leds to end of list
leds-gpio leds: error -EPROBE_DEFER: Failed to get GPIO '/leds/led-0'
devices_kset: Moving 1082e0.clock-controller to end of list
devices_kset: Moving 1082e4.clock-controller to end of list
devices_kset: Moving 485c0100.dma-controller to end of list
ti-udma 485c0100.dma-controller: Number of rings: 82
ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
device: 'dma0chan0': device_add
device: 'dma0chan1': device_add
device: 'dma0chan2': device_add
device: 'dma0chan3': device_add
device: 'dma0chan4': device_add
device: 'dma0chan5': device_add
device: 'dma0chan6': device_add
device: 'dma0chan7': device_add
device: 'dma0chan8': device_add
device: 'dma0chan9': device_add
device: 'dma0chan10': device_add
device: 'dma0chan11': device_add
device: 'dma0chan12': device_add
device: 'dma0chan13': device_add
device: 'dma0chan14': device_add
device: 'dma0chan15': device_add
device: 'dma0chan16': device_add
device: 'dma0chan17': device_add
device: 'dma0chan18': device_add
device: 'dma0chan19': device_add
device: 'dma0chan20': device_add
device: 'dma0chan21': device_add
device: 'dma0chan22': device_add
device: 'dma0chan23': device_add
device: 'dma0chan24': device_add
device: 'dma0chan25': device_add
device: 'dma0chan26': device_add
device: 'dma0chan27': device_add
device: 'dma0chan28': device_add
device: 'dma0chan29': device_add
device: 'dma0chan30': device_add
device: 'dma0chan31': device_add
device: 'dma0chan32': device_add
device: 'dma0chan33': device_add
device: 'dma0chan34': device_add
device: 'dma0chan35': device_add
device: 'dma0chan36': device_add
device: 'dma0chan37': device_add
device: 'dma0chan38': device_add
device: 'dma0chan39': device_add
device: 'dma0chan40': device_add
device: 'dma0chan41': device_add
device: 'dma0chan42': device_add
device: 'dma0chan43': device_add
device: 'dma0chan44': device_add
device: 'dma0chan45': device_add
device: 'dma0chan46': device_add
device: 'dma0chan47': device_add
devices_kset: Moving 485c0000.dma-controller to end of list
ti-udma 485c0000.dma-controller: Number of rings: 150
ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
device: 'dma1chan0': device_add
device: 'dma1chan1': device_add
device: 'dma1chan2': device_add
device: 'dma1chan3': device_add
device: 'dma1chan4': device_add
device: 'dma1chan5': device_add
device: 'dma1chan6': device_add
device: 'dma1chan7': device_add
device: 'dma1chan8': device_add
device: 'dma1chan9': device_add
device: 'dma1chan10': device_add
device: 'dma1chan11': device_add
device: 'dma1chan12': device_add
device: 'dma1chan13': device_add
device: 'dma1chan14': device_add
device: 'dma1chan15': device_add
device: 'dma1chan16': device_add
device: 'dma1chan17': device_add
device: 'dma1chan18': device_add
device: 'dma1chan19': device_add
device: 'dma1chan20': device_add
device: 'dma1chan21': device_add
device: 'dma1chan22': device_add
device: 'dma1chan23': device_add
device: 'dma1chan24': device_add
device: 'dma1chan25': device_add
device: 'dma1chan26': device_add
device: 'dma1chan27': device_add
device: 'dma1chan28': device_add
device: 'dma1chan29': device_add
device: 'dma1chan30': device_add
device: 'dma1chan31': device_add
device: 'dma1chan32': device_add
device: 'dma1chan33': device_add
device: 'dma1chan34': device_add
devices_kset: Moving 2800000.serial to end of list
device: 'ttyS2': device_unregister
printk: legacy console [ttyS2] disabled
device: '2800000.serial:0': device_add
device: '2800000.serial:0.0': device_add
2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 237, base_baud = 3000000) is a 8250
printk: legacy console [ttyS2] enabled
device: 'serial0': device_add
device: 'ttyS2': device_add
devices_kset: Moving fc40000.spi to end of list
device: 'spi0': device_add
device: 'spi0.0': device_add
7 fixed-partitions partitions found on MTD device fc40000.spi.0
Creating 7 MTD partitions on "fc40000.spi.0":
0x000000000000-0x000000080000 : "ospi.tiboot3"
device: 'mtd0': device_add
device: 'mtd0': device_add
device: 'mtd0ro': device_add
device: 'mtdblock0': device_add
device: '31:0': device_add
0x000000080000-0x000000280000 : "ospi.tispl"
device: 'mtd1': device_add
device: 'mtd1': device_add
device: 'mtd1ro': device_add
device: 'mtdblock1': device_add
device: '31:1': device_add
0x000000280000-0x000000680000 : "ospi.u-boot"
device: 'mtd2': device_add
device: 'mtd2': device_add
device: 'mtd2ro': device_add
device: 'mtdblock2': device_add
device: '31:2': device_add
0x000000680000-0x0000006c0000 : "ospi.env"
device: 'mtd3': device_add
device: 'mtd3': device_add
device: 'mtd3ro': device_add
device: 'mtdblock3': device_add
device: '31:3': device_add
0x0000006c0000-0x000000700000 : "ospi.env.backup"
device: 'mtd4': device_add
device: 'mtd4': device_add
device: 'mtd4ro': device_add
device: 'mtdblock4': device_add
device: '31:4': device_add
0x000000800000-0x000003fc0000 : "ospi.rootfs"
device: 'mtd5': device_add
device: 'mtd5': device_add
device: 'mtd5ro': device_add
device: 'mtdblock5': device_add
device: '31:5': device_add
0x000003fc0000-0x000004000000 : "ospi.phypattern"
device: 'mtd6': device_add
device: 'mtd6': device_add
device: 'mtd6ro': device_add
device: 'mtdblock6': device_add
device: '31:6': device_add
devices_kset: Moving 8000000.ethernet to end of list
device: '8000f00.mdio': device_add
device: 'platform:f4000.pinctrl--platform:8000f00.mdio': device_add
devices_kset: Moving 8000f00.mdio to end of list
platform 8000f00.mdio: Linked as a consumer to f4000.pinctrl
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:44043000.system-controller:clock-controller--platform:8000f00.mdio': device_add
devices_kset: Moving 8000f00.mdio to end of list
platform 8000f00.mdio: Linked as a consumer to 44043000.system-controller:clock-controller
/bus@f0000/ethernet@8000000/mdio@f00 Dropping the fwnode link to /bus@f0000/system-controller@44043000/clock-controller
davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
device: '8000f00.mdio': device_add
davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
device: '8000f00.mdio:00': device_add
device: '8000f00.mdio:01': device_add
davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000002
device: 'phy:phy-104044.phy.0--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio:00 to end of list
devices_kset: Moving 8000f00.mdio:01 to end of list
am65-cpsw-nuss 8000000.ethernet: Linked as a consumer to phy-104044.phy.0
device: 'phy:phy-104044.phy.1--platform:8000000.ethernet': device_add
devices_kset: Moving 8000000.ethernet to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio to end of list
devices_kset: Moving 8000f00.mdio:00 to end of list
devices_kset: Moving 8000f00.mdio:01 to end of list
am65-cpsw-nuss 8000000.ethernet: Linked as a consumer to phy-104044.phy.1
am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
am65-cpsw-nuss 8000000.ethernet: ALE Table size 512, Policers 32
device: 'tchan19-0xc600': device_add
device: 'tchan20-0xc601': device_add
device: 'tchan21-0xc602': device_add
device: 'tchan22-0xc603': device_add
device: 'tchan23-0xc604': device_add
device: 'tchan24-0xc605': device_add
device: 'tchan25-0xc606': device_add
device: 'tchan26-0xc607': device_add
device: 'rchan19-0x4600': device_add
am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
device: 'eth0': device_add
device: 'eth1': device_add
am65-cpsw-nuss 8000000.ethernet: Dropping the link to 104044.phy
device: 'platform:104044.phy--platform:8000000.ethernet': device_unregister
am65-cpsw-nuss 8000000.ethernet: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:8000000.ethernet': device_unregister
devices_kset: Moving f900000.dwc3-usb to end of list
device: '31000000.usb': device_add
device: 'platform:31000000.usb--i2c:0-003f': device_add
i2c 0-003f: Linked as a sync state only consumer to 31000000.usb
device: 'platform:bus@f0000--platform:31000000.usb': device_add
devices_kset: Moving 31000000.usb to end of list
platform 31000000.usb: Linked as a consumer to bus@f0000
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000
----- cycle: start -----
/bus@f0000/i2c@20000000/tps6598x@3f/connector: cycle: depends on /bus@f0000/dwc3-usb@f900000/usb@31000000
/bus@f0000/dwc3-usb@f900000/usb@31000000: cycle: depends on /bus@f0000/i2c@20000000/tps6598x@3f/connector
----- cycle: end -----
platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/tps6598x@3f/connector
dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
device: 'xhci-hcd.0.auto': device_add
xhci-hcd xhci-hcd.0.auto: xHCI Host Controller
xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1
xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports
xhci-hcd xhci-hcd.0.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
xhci-hcd xhci-hcd.0.auto: irq 240, io mem 0x31000000
device: 'usb1': device_add
device: '1-0:1.0': device_add
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 1 port detected
device: 'usb1-port1': device_add
device: 'ep_81': device_add
device: 'ep_00': device_add
/bus@f0000/dwc3-usb@f900000/usb@31000000 Dropping the fwnode link to /bus@f0000/i2c@20000000/tps6598x@3f/connector
device: 'wakeup0': device_add
dwc3-am62 f900000.dwc3-usb: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:f900000.dwc3-usb': device_unregister
devices_kset: Moving f910000.dwc3-usb to end of list
device: '31100000.usb': device_add
device: 'platform:f4000.pinctrl--platform:31100000.usb': device_add
devices_kset: Moving 31100000.usb to end of list
platform 31100000.usb: Linked as a consumer to f4000.pinctrl
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000/pinctrl@f4000
device: 'platform:bus@f0000--platform:31100000.usb': device_add
devices_kset: Moving 31100000.usb to end of list
platform 31100000.usb: Linked as a consumer to bus@f0000
/bus@f0000/dwc3-usb@f910000/usb@31100000 Dropping the fwnode link to /bus@f0000
device: 'xhci-hcd.1.auto': device_add
xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
xhci-hcd xhci-hcd.1.auto: USB3 root hub has no ports
xhci-hcd xhci-hcd.1.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000808020000010
xhci-hcd xhci-hcd.1.auto: irq 241, io mem 0x31100000
device: 'usb2': device_add
device: '2-0:1.0': device_add
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 1 port detected
device: 'usb2-port1': device_add
device: 'ep_81': device_add
device: 'ep_00': device_add
device: 'wakeup1': device_add
dwc3-am62 f910000.dwc3-usb: Dropping the link to bus@f0000
device: 'platform:bus@f0000--platform:f910000.dwc3-usb': device_unregister
dwc3-am62 f910000.dwc3-usb: Dropping the link to f4000.pinctrl
device: 'platform:f4000.pinctrl--platform:f910000.dwc3-usb': device_unregister
devices_kset: Moving 2b1f0000.rtc to end of list
device: 'wakeup2': device_add
device: 'rtc0': device_add
device: 'alarmtimer.2.auto': device_add
device: 'wakeup3': device_add
rtc-ti-k3 2b1f0000.rtc: registered as rtc0
rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:17 UTC (17)
device: 'ti_k3_rtc_scratch0': device_add
devices_kset: Moving cpufreq-dt to end of list
device: 'cooling_device0': device_add
devices_kset: Moving 600000.gpio to end of list
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
device: 'gpiochip0': device_add
devices_kset: Moving 601000.gpio to end of list
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
device: 'gpiochip1': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
pca953x 1-0022: supply vcc not found, using dummy regulator
device: 'regulator:regulator.0--i2c:1-0022': device_add
devices_kset: Moving 1-0022 to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 0-0041 to end of list
pca953x 1-0022: Linked as a consumer to regulator.0
pca953x 1-0022: using AI
device: 'gpiochip2': device_add
devices_kset: Moving regulator-4 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving regulator-3 to end of list
devices_kset: Moving fa00000.mmc to end of list
devices_kset: Moving 2b300050.target-module to end of list
device: 'regulator.5': device_add
devices_kset: Moving leds to end of list
device: 'regulator.6': device_add
device: 'am62-sk:green:heartbeat': device_add
leds-gpio leds: Dropping the link to 601000.gpio
device: 'platform:601000.gpio--platform:leds': device_unregister
devices_kset: Moving 2b300050.target-module to end of list
devices_kset: Moving 2b300050.target-module to end of list
am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
am65-cpsw-nuss 8000000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
Sending DHCP requests .., OK
IP-Config: Got DHCP answer from 192.168.89.1, my address is 192.168.89.100
IP-Config: Complete:
     device=eth0, hwaddr=1c:63:49:0f:62:0e, ipaddr=192.168.89.100, mask=255.255.255.0, gw=192.168.89.1
     host=buildroot, domain=lab, nis-domain=(none)
     bootserver=192.168.88.20, rootserver=192.168.88.20, rootpath=
     nameserver0=192.168.89.1
     ntpserver0=192.168.89.1
clk: Disabling unused clocks
PM: genpd: Disabling unused power domains
ALSA device list:
  No soundcards found.
device: '0:22': device_add
VFS: Mounted root (nfs filesystem) on device 0:22.
devtmpfs: mounted
Freeing unused kernel memory: 5888K
Run /sbin/init as init process
  with arguments:
    /sbin/init
  with environment:
    HOME=/
    TERM=linux
udevd[118]: starting version 3.2.14
udevd[119]: starting eudev-3.2.14
device: '0:29': device_add
devices_kset: Moving 2b300050.target-module to end of list
platform 2b300050.target-module: deferred probe pending: (reason unknown)


# Loading the display drivers

[   50.149243] panel-simple display: supply power not found, using dummy regulator
[   50.159021] device: 'regulator:regulator.0--platform:display': device_add
[   50.169892] devices_kset: Moving display to end of list
[   50.175272] panel-simple display: Linked as a consumer to regulator.0
[   50.184932] devices_kset: Moving 2b300050.target-module to end of list
[   51.573463] device: 'card0': device_add
[   51.580778] device: 'card0-LVDS-1': device_add
[   51.590868] [drm] Initialized tidss 1.0.0 for 30200000.dss on minor 0
[   51.598616] /bus@f0000/dss@30200000 Dropping the fwnode link to /bus@f0000/dss@30200000/oldi-txes/oldi@0
[   51.608815] tidss 30200000.dss: Dropping the link to display
[   51.614737] device: 'platform:display--platform:30200000.dss': device_unregister
[   51.624985] devices_kset: Moving 2b300050.target-module to end of list


[Index of Archives]     [Linux DRI Users]     [Linux Intel Graphics]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [XFree86]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [XFree86]
  Powered by Linux