[Letux-kernel] LetuxOS on Beagle Y AI

H. Nikolaus Schaller hns at goldelico.com
Wed Mar 5 17:11:02 CET 2025



> Am 05.03.2025 um 16:42 schrieb H. Nikolaus Schaller <hns at goldelico.com>:
> 
> Or am I installing/loading the wrong DTB file? Only arch/arm64/boot/dts/ti/k3-j722s-evm.dts has an entry "regulator-mmc1".
> 
> Well, http://download.goldelico.com/letux-u-boot/BeagleY-AI/latest/uEnv.txt defines ti/k3-am67a-beagley-ai.dtb.
> 
> But if I remember correctly now, U-Boot may load the FDT before it tries the uEnv.txt. Hence, there may
> be a default involved.

Well,
U-Boot tells (after a modification):

	load //ti/k3-j722s-evm.dtb

So U-Boot is loading the wrong DTB!

Ah, it seems to use ${name_fdt} and uEnv.txt sets ${fdtfile}.

Ok, after fixing this and loading the correct DTB makes things a little more understandable, but still not boot.
The pca95xx has gone and "regulator-mmc1" is now called "regulator-3". But still pending to probe.

Now, the (new) error message shows better what the problem is:

[   11.914487] platform fa00000.mmc: deferred probe pending: platform: supplier regulator-3 not ready
[   11.923480] platform regulator-3: deferred probe pending: reg-fixed-voltage: can't get GPIO
[   11.931823] platform leds: deferred probe pending: leds-gpio: Failed to get GPIO '/leds/led-0'

The regulator-3 can't get it's GPIO. The definition is:

	vdd_mmc1: regulator-3 {
		compatible = "regulator-fixed";
		regulator-name = "vdd_mmc1";
		pinctrl-names = "default";
		pinctrl-0 = <&vdd_3v3_sd_pins_default>;
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		regulator-boot-on;
		enable-active-high;
		gpio = <&main_gpio1 50 GPIO_ACTIVE_HIGH>;
		bootph-all;
	};

Unless pinctrl is broken, it only depends on main_gpio1 from arch/arm64/boot/dts/ti/k3-am62p-j722s-common-main.dtsi

	main_gpio1: gpio at 601000 {
		compatible = "ti,am64-gpio", "ti,keystone-gpio";
		reg = <0x00 0x00601000 0x00 0x100>;
		gpio-controller;
		#gpio-cells = <2>;
		interrupt-parent = <&main_gpio_intr>;
		interrupts = <180>, <181>, <182>,
			     <183>, <184>, <185>;
		interrupt-controller;
		#interrupt-cells = <2>;
		ti,davinci-gpio-unbanked = <0>;
		power-domains = <&k3_pds 78 TI_SCI_PD_EXCLUSIVE>;
		clocks = <&k3_clks 78 0>;
		clock-names = "gpio";
	};

Digging around shows that "ti,keystone-gpio" needs CONFIG_GPIO_DAVINCI. And:

# CONFIG_GPIO_DAVINCI is not set

I'll report the result.
 
BR,
Nikolaus

U-Boot SPL 2023.04-g93735daa (Jun 14 2024 - 23:22:59 +0000)
SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.6--w2023.01-j722s (Kool Koa')
SPL initial stack usage: 17048 bytes
Trying to boot from MMC2
Authentication passed
Authentication passed
Authentication passed
Authentication passed
Authentication passed
Starting ATF on ARM64 core...

NOTICE:  BL31: v2.11.0(release):517b7f9
NOTICE:  BL31: Built : 23:22:59, Jun 14 2024
NOTICE:  Upgrade Firmwares for Power off functionality
ERROR:   Failed to get response (-19)
ERROR:   Transfer send failed (-19)
ERROR:   Unable to query firmware capabilities (-19)
I/TC: 
I/TC: OP-TEE version: 4.2.0 (gcc version 12.2.0 (Debian 12.2.0-14)) #1 Fri Jun 14 23:22:59 UTC 2024 aarch64
I/TC: WARNING: This OP-TEE configuration might be insecure!
I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html
I/TC: Primary CPU initializing
I/TC: GIC redistributor base address not provided
I/TC: Assuming default GIC group status and modifier
I/TC: SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.6--w2023.01-j722s (Kool Koa')
I/TC: HUK Initialized
I/TC: Primary CPU switching to normal world boot

U-Boot SPL 2023.04-g93735daa (Jun 14 2024 - 23:22:59 +0000)
SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.6--w2023.01-j722s (Kool Koa')
Trying to boot from MMC2
Authentication passed
Authentication passed


U-Boot 2023.04-g93735daa (Jun 14 2024 - 23:22:59 +0000)

SoC:   J722S SR1.0 HS-FS
Model: BeagleBoard.org BeagleY-AI
DRAM:  2 GiB (effective 4 GiB)
Core:  104 devices, 28 uclasses, devicetree: separate
MMC:   mmc at fa00000: 1, mmc at fa20000: 2
Loading Environment from nowhere... OK
In:    serial at 2800000
Out:   serial at 2800000
Err:   serial at 2800000
Net:   eth0: ethernet at 8000000port@1
Press SPACE to abort autoboot in 2 seconds
switch to partitions #0, OK
mmc1 is current device
SD/MMC found on device 1
Failed to load 'boot.scr'
725 bytes read in 37 ms (18.6 KiB/s)
Loaded env from uEnv.txt
Importing environment from mmc1 ...
Running uenvcmd ...
switch to partitions #0, OK
mmc1 is current device
SD/MMC found on device 1
9205174 bytes read in 427 ms (20.6 MiB/s)
load //ti/k3-am67a-beagley-ai.dtb		<---- this is now correct
57929 bytes read in 47 ms (1.2 MiB/s)
   Uncompressing Kernel Image
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
Working FDT set to 88000000
   Loading Device Tree to 000000008ffee000, end 000000008ffff248 ... OK
Working FDT set to 8ffee000

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 6.14.0-rc5-letux-arm64+ (hns at iMac.local) (aarch64-linux-gnu-gcc (GCC) 6.3.0, GNU ld (GNU Binutils) 2.27) #1778 SMP Wed Mar  5 14:57:47 CET 2025
[    0.000000] Machine model: BeagleBoard.org BeagleY-AI		<---- I could have seen earlier...
[    0.000000] efi: UEFI not found.
[    0.000000] earlycon: omap8250 at MMIO 0x0000000002800000 (options '')
[    0.000000] printk: legacy bootconsole [omap8250] enabled
[    0.000000] OF: reserved mem: 0x000000009e780000..0x000000009e7fffff (512 KiB) nomap non-reusable tfa at 9e780000
[    0.000000] OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee at 9e800000

[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node r5f-dma-memory at a0000000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a0000000..0x00000000a00fffff (1024 KiB) nomap non-reusable r5f-dma-memory at a0000000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node r5f-memory at a0100000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a0100000..0x00000000a0ffffff (15360 KiB) nomap non-reusable r5f-memory at a0100000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node mcu-r5fss-dma-memory-region at a1000000, compatible id shared-dma-pool

[    0.000000] OF: reserved mem: 0x00000000a1000000..0x00000000a10fffff (1024 KiB) nomap non-reusable mcu-r5fss-dma-memory-region at a1000000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node mcu-r5fss-memory-region at a1100000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a1100000..0x00000000a1ffffff (15360 KiB) nomap non-reusable mcu-r5fss-memory-region at a1100000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node main-r5fss-dma-memory-region at a2000000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a2000000..0x00000000a20fffff (1024 KiB) nomap non-reusable main-r5fss-dma-memory-region at a2000000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node main-r5fss-memory-region at a2100000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a2100000..0x00000000a2ffffff (15360 KiB) nomap non-reusable main-r5fss-memory-region at a2100000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node c7x-dma-memory at a3000000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a3000000..0x00000000a30fffff (1024 KiB) nomap non-reusable c7x-dma-memory at a3000000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node c7x-memory at a3100000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a3100000..0x00000000a3ffffff (15360 KiB) nomap non-reusable c7x-memory at a3100000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node c7x-dma-memory at a4000000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a4000000..0x00000000a40fffff (1024 KiB) nomap non-reusable c7x-dma-memory at a4000000
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node c7x-memory at a4100000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: 0x00000000a4100000..0x00000000a4ffffff (15360 KiB) nomap non-reusable c7x-memory at a4100000
[    0.000000] OF: reserved mem: 0x00000000a5000000..0x00000000a6bfffff (28672 KiB) nomap non-reusable ipc-memories at a5000000
[    0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x00000008ffffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x8ff7f5080-0x8ff7f70bf]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000008ffffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e77ffff]
[    0.000000]   node   0: [mem 0x000000009e780000-0x00000000a6bfffff]
[    0.000000]   node   0: [mem 0x00000000a6c00000-0x00000000ffffffff]
[    0.000000]   node   0: [mem 0x0000000880000000-0x00000008ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff]
[    0.000000] cma: Reserved 32 MiB at 0x00000000fe000000 on node -1
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.5
[    0.000000] percpu: Embedded 21 pages/cpu s47768 r8192 d30056 u86016
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Kernel command line: console=ttyO2,115200n8 root=PARTUUID=d37232c9-01 rw rootfstype=ext4 rootwait earlycon
[    0.000000] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Fallback order for Node 0: 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1048576
[    0.000000] Policy zone: Normal
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: area num 4.
[    0.000000] software IO TLB: mapped [mem 0x00000000fa000000-0x00000000fe000000] (64MB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=4.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 256 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
[    0.000000] ITS [mem 0x01820000-0x0182ffff]
[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[    0.000000] ITS at 0x0000000001820000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS at 0x0000000001820000: allocated 524288 Devices @880800000 (flat, esz 8, psz 64K, shr 0)
[    0.000000] ITS: using cache flushing for cmd queue
[    0.000000] GICv3: using LPI property table @0x0000000880050000
[    0.000000] GIC: using cache flushing for LPI property table
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000880060000
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[    0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[    0.008755] Console: colour dummy device 80x25
[    0.013317] WARNING: Your 'console=ttyO2' has been replaced by 'ttyS2'
[    0.019981] This ensures that you still see kernel messages. Please
[    0.026373] update your kernel commandline.
[    0.030705] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[    0.041367] pid_max: default: 32768 minimum: 301
[    0.046145] LSM: initializing lsm=capability
[    0.050625] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.058190] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.086455] rcu: Hierarchical SRCU implementation.
[    0.091369] rcu:     Max phase no-delay instances is 1000.
[    0.096887] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[    0.105385] fsl-mc MSI: msi-controller at 1820000 domain created
[    0.111415] EFI services will not be available.
[    0.116287] smp: Bringing up secondary CPUs ...
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
I/TC: Secondary CPU 2 initializing
I/TC: Secondary CPU 2 switching to normal world boot
I/TC: Secondary CPU 3 initializing
I/TC: Secondary CPU 3 switching to normal world boot
[    0.129514] Detected VIPT I-cache on CPU1
[    0.129602] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
[    0.129619] GICv3: CPU1: using allocated LPI pending table @0x0000000880070000
[    0.129670] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.138356] Detected VIPT I-cache on CPU2
[    0.138416] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
[    0.138431] GICv3: CPU2: using allocated LPI pending table @0x0000000880080000
[    0.138466] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
[    0.147085] Detected VIPT I-cache on CPU3
[    0.147144] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
[    0.147161] GICv3: CPU3: using allocated LPI pending table @0x0000000880090000
[    0.147194] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
[    0.147281] smp: Brought up 1 node, 4 CPUs
[    0.226831] SMP: Total of 4 processors activated.
[    0.231631] CPU: All CPU(s) started at EL2
[    0.235811] CPU features: detected: 32-bit EL0 Support
[    0.241055] CPU features: detected: CRC32 instructions
[    0.246340] alternatives: applying system-wide alternatives
[    0.252726] Memory: 3847720K/4194304K available (12864K kernel code, 1496K rwdata, 4404K rodata, 3776K init, 473K bss, 305552K reserved, 32768K cma-reserved)
[    0.268324] devtmpfs: initialized
[    0.278432] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.288442] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.296249] 26960 pages in range for non-PLT usage
[    0.296270] 518480 pages in range for PLT usage
[    0.301423] pinctrl core: initialized pinctrl subsystem
[    0.313098] DMI not present or invalid.
[    0.319223] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.326150] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    0.333482] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.341539] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.349683] audit: initializing netlink subsys (disabled)
[    0.355405] audit: type=2000 audit(0.236:1): state=initialized audit_enabled=0 res=1
[    0.356574] thermal_sys: Registered thermal governor 'step_wise'
[    0.363342] thermal_sys: Registered thermal governor 'power_allocator'
[    0.369530] cpuidle: using governor menu
[    0.380425] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.387452] ASID allocator initialised with 65536 entries
[    0.393199] Serial: AMBA PL011 UART driver
[    0.401446] /bus at f0000/interrupt-controller at 1800000: Fixed dependency cycle(s) with /bus at f0000/interrupt-controller at 1800000
[    0.423465] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.430441] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.436848] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.443779] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.450176] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.457103] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.463502] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.470429] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.477787] cryptd: max_cpu_qlen set to 1000
[    0.483100] ACPI: Interpreter disabled.
[    0.487336] k3-chipinfo 43000014.chipid: Family:J722S rev:SR1.0 JTAGID[0x0bba002f] Detected
[    0.496547] iommu: Default domain type: Translated
[    0.501468] iommu: DMA domain TLB invalidation policy: strict mode
[    0.508266] SCSI subsystem initialized
[    0.512495] usbcore: registered new interface driver usbfs
[    0.518126] usbcore: registered new interface driver hub
[    0.523579] usbcore: registered new device driver usb
[    0.529359] pps_core: LinuxPPS API ver. 1 registered
[    0.534431] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti at linux.it>
[    0.543766] PTP clock support registered
[    0.547800] EDAC MC: Ver: 3.0.0
[    0.551332] scmi_core: SCMI protocol bus registered
[    0.556676] FPGA manager framework
[    0.561200] vgaarb: loaded
[    0.564424] clocksource: Switched to clocksource arch_sys_counter
[    0.570928] VFS: Disk quotas dquot_6.6.0
[    0.574961] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.582226] pnp: PnP ACPI: disabled
[    0.591909] NET: Registered PF_INET protocol family
[    0.597145] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.607258] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.616034] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.623952] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.632239] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[    0.640765] TCP: Hash tables configured (established 32768 bind 32768)
[    0.647628] UDP hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.654723] UDP-Lite hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.662408] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.668829] RPC: Registered named UNIX socket transport module.
[    0.674906] RPC: Registered udp transport module.
[    0.679709] RPC: Registered tcp transport module.
[    0.684510] RPC: Registered tcp-with-tls transport module.
[    0.690108] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.696695] PCI: CLS 0 bytes, default 64
[    0.702345] Initialise system trusted keyrings
[    0.707089] workingset: timestamp_bits=44 max_order=20 bucket_order=0
[    0.714179] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.720521] NFS: Registering the id_resolver key type
[    0.725726] Key type id_resolver registered
[    0.729995] Key type id_legacy registered
[    0.734106] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.740951] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.748715] 9p: Installing v9fs 9p2000 file system support
[    0.793559] Key type asymmetric registered
[    0.797749] Asymmetric key parser 'x509' registered
[    0.802796] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.810358] io scheduler mq-deadline registered
[    0.814983] io scheduler kyber registered
[    0.819119] io scheduler bfq registered
[    0.826872] pinctrl-single 4084000.pinctrl: 34 pins, size 136
[    0.833417] pinctrl-single f4000.pinctrl: 171 pins, size 684
[    0.841722] ledtrig-cpu: registered to indicate activity on CPUs
[    0.858361] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.868052] STM32 USART driver initialized
[    0.878962] loop: module loaded
[    0.883296] megasas: 07.727.03.00-rc1
[    0.890009] tun: Universal TUN/TAP device driver, 1.6
[    0.896211] thunder_xcv, ver 1.0
[    0.899580] thunder_bgx, ver 1.0
[    0.902926] nicpf, ver 1.0
[    0.906310] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    0.913709] hns3: Copyright (c) 2017 Huawei Corporation.
[    0.919198] hclge is initializing
[    0.922619] e1000: Intel(R) PRO/1000 Network Driver
[    0.927602] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.933505] e1000e: Intel(R) PRO/1000 Network Driver
[    0.938573] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.944638] igb: Intel(R) Gigabit Ethernet Network Driver
[    0.950151] igb: Copyright (c) 2007-2014 Intel Corporation.
[    0.955866] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    0.962264] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    0.968558] sky2: driver version 1.30
[    0.973128] VFIO - User Level meta-driver version: 0.3
[    0.980661] usbcore: registered new interface driver usb-storage
[    0.990076] i2c_dev: i2c /dev entries driver
[    0.997906] sdhci: Secure Digital Host Controller Interface driver
[    1.004250] sdhci: Copyright(c) Pierre Ossman
[    1.009206] Synopsys Designware Multimedia Card Interface Driver
[    1.016224] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.023129] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    1.030587] usbcore: registered new interface driver usbhid
[    1.036311] usbhid: USB HID core driver
[    1.043384] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 (0,8000003f) counters available
[    1.054615] optee: probing for conduit method.
I/TC: Reserved shared memory is enabled
I/TC: Dynamic shared memory is enabled
I/TC: Normal World virtualization support is disabled
I/TC: Asynchronous notifications are disabled
[    1.059226] optee: revision 4.2 (0000000012d7c4ee)
[    1.075921] optee: dynamic shared memory is enabled
[    1.086268] optee: initialized driver
[    1.091339] NET: Registered PF_PACKET protocol family
[    1.096621] 9pnet: Installing 9P2000 support
[    1.101078] Key type dns_resolver registered
[    1.116707] registered taskstats version 1
[    1.120942] Loading compiled-in X.509 certificates
[    1.132926] Demotion targets for Node 0: null
[    1.144342] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.0.6--w2023.01-j722s (Kool Koa')
[    1.195113] omap_i2c 2b200000.i2c: bus 0 rev0.12 at 100 kHz
[    1.201464] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
[    1.209945] ti-sci-intr bus at f0000:interrupt-controller at a00000: Interrupt Router 3 domain created
[    1.219282] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
[    1.228458] ti-sci-inta 4e400000.interrupt-controller: Interrupt Aggregator domain 200 created
[    1.239232] ------------[ cut here ]------------
[    1.243986] wiz bus at f0000:phy at f000000: Unable to create SERDES platform device
[    1.251408] WARNING: CPU: 2 PID: 47 at drivers/phy/ti/phy-j721e-wiz.c:1620 wiz_probe+0xbfc/0xe78
[    1.260390] Modules linked in:
[    1.263506] CPU: 2 UID: 0 PID: 47 Comm: kworker/u16:2 Not tainted 6.14.0-rc5-letux-arm64+ #1778
[    1.272385] Hardware name: BeagleBoard.org BeagleY-AI (DT)
[    1.277980] Workqueue: events_unbound deferred_probe_work_func
[    1.283940] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[    1.291044] pc : wiz_probe+0xbfc/0xe78
[    1.294869] lr : wiz_probe+0xbfc/0xe78
[    1.298695] sp : ffff800081d2ba20
[    1.302069] x29: ffff800081d2ba20 x28: ffff00080134d000 x27: ffff00080015f000
[    1.309355] x26: ffff00087f82fdc0 x25: ffff00087f8305a8 x24: 0000000000000000
[    1.316640] x23: 0000000000000001 x22: ffff000800c320d0 x21: ffff800081073000
[    1.323925] x20: ffff00080015f010 x19: ffff000800c32080 x18: ffffffffffffffff
[    1.331211] x17: 69766564206d726f x16: 6674616c70205345 x15: 000000000000010a
[    1.338498] x14: ffff8000810739d8 x13: ffff8000814cdac8 x12: 00000000ffffefff
[    1.345785] x11: 0000000000000001 x10: 0000000000000001 x9 : ffff800081525b50
[    1.353071] x8 : c0000000ffffefff x7 : 0000000000017fe8 x6 : ffff800081525af8
[    1.360356] x5 : 0000000000057fa8 x4 : 0000000000000000 x3 : ffff800081d2b6f8
[    1.367641] x2 : e77784274aab7900 x1 : e77784274aab7900 x0 : 0000000000000000
[    1.374927] Call trace:
[    1.377417]  wiz_probe+0xbfc/0xe78 (P)
[    1.381245]  platform_probe+0x8c/0xdc
[    1.384981]  really_probe+0xdc/0x284
[    1.388629]  __driver_probe_device+0x78/0x134
[    1.393075]  driver_probe_device+0x38/0x118
[    1.397344]  __device_attach_driver+0x90/0xdc
[    1.401790]  bus_for_each_drv+0x78/0xdc
[    1.405704]  __device_attach+0x100/0x188
[    1.409705]  device_initial_probe+0x10/0x18
[    1.413974]  bus_probe_device+0xa4/0xa8
[    1.417889]  deferred_probe_work_func+0x80/0xb4
[    1.422512]  process_scheduled_works+0x180/0x318
[    1.427228]  worker_thread+0x148/0x304
[    1.431055]  kthread+0x16c/0x1b8
[    1.434347]  ret_from_fork+0x10/0x20
[    1.437999] ---[ end trace 0000000000000000 ]---
[    1.442751] wiz bus at f0000:phy at f000000: probe with driver wiz failed with error -12
[    1.453451] ------------[ cut here ]------------
[    1.458187] wiz bus at f0000:phy at f010000: Unable to create SERDES platform device
[    1.465596] WARNING: CPU: 2 PID: 47 at drivers/phy/ti/phy-j721e-wiz.c:1620 wiz_probe+0xbfc/0xe78
[    1.474577] Modules linked in:
[    1.477696] CPU: 2 UID: 0 PID: 47 Comm: kworker/u16:2 Tainted: G        W          6.14.0-rc5-letux-arm64+ #1778
[    1.488085] Tainted: [W]=WARN
[    1.491105] Hardware name: BeagleBoard.org BeagleY-AI (DT)
[    1.496699] Workqueue: events_unbound deferred_probe_work_func
[    1.502657] pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
[    1.509762] pc : wiz_probe+0xbfc/0xe78
[    1.513587] lr : wiz_probe+0xbfc/0xe78
[    1.517411] sp : ffff800081d2ba20
[    1.520785] x29: ffff800081d2ba20 x28: ffff00080134d000 x27: ffff00080015f400
[    1.528074] x26: ffff00087f830e10 x25: ffff00087f8315f8 x24: 0000000000000000
[    1.535360] x23: 0000000000000001 x22: ffff000800c320d0 x21: ffff800081073000
[    1.542646] x20: ffff00080015f410 x19: ffff000800c32080 x18: ffffffffffffffff
[    1.549932] x17: 69766564206d726f x16: 6674616c70205345 x15: 0000000000000131
[    1.557218] x14: ffff8000810739d8 x13: ffff8000814cdac8 x12: 00000000ffffefff
[    1.564504] x11: 0000000000000001 x10: 0000000000000001 x9 : ffff800081525b50
[    1.571789] x8 : c0000000ffffefff x7 : 0000000000017fe8 x6 : ffff800081525af8
[    1.579074] x5 : 0000000000057fa8 x4 : 0000000000000000 x3 : ffff800081d2b6f8
[    1.586360] x2 : e77784274aab7900 x1 : e77784274aab7900 x0 : 0000000000000000
[    1.593646] Call trace:
[    1.596134]  wiz_probe+0xbfc/0xe78 (P)
[    1.599963]  platform_probe+0x8c/0xdc
[    1.603697]  really_probe+0xdc/0x284
[    1.607344]  __driver_probe_device+0x78/0x134
[    1.611791]  driver_probe_device+0x38/0x118
[    1.616060]  __device_attach_driver+0x90/0xdc
[    1.620507]  bus_for_each_drv+0x78/0xdc
[    1.624421]  __device_attach+0x100/0x188
[    1.628424]  device_initial_probe+0x10/0x18
[    1.632692]  bus_probe_device+0xa4/0xa8
[    1.636604]  deferred_probe_work_func+0x80/0xb4
[    1.641228]  process_scheduled_works+0x180/0x318
[    1.645944]  worker_thread+0x148/0x304
[    1.649771]  kthread+0x16c/0x1b8
[    1.653064]  ret_from_fork+0x10/0x20
[    1.656715] ---[ end trace 0000000000000000 ]---
[    1.661477] wiz bus at f0000:phy at f010000: probe with driver wiz failed with error -12
[    1.671712] ti-udma 485c0100.dma-controller: Number of rings: 82
[    1.680051] ti-udma 485c0100.dma-controller: Channels: 44 (bchan: 16, tchan: 12, rchan: 16)
[    1.691405] ti-udma 485c0000.dma-controller: Number of rings: 150
[    1.701991] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
[    1.711914] ti-udma 4e230000.dma-controller: error -EINVAL: invalid resource (null)
[    1.719800] ti-udma 4e230000.dma-controller: probe with driver ti-udma failed with error -22
[    1.730469] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 226, base_baud = 3000000) is a 8250
[    1.739385] printk: legacy console [ttyS2] enabled
[    1.739385] printk: legacy console [ttyS2] enabled
[    1.749108] printk: legacy bootconsole [omap8250] disabled
[    1.749108] printk: legacy bootconsole [omap8250] disabled
[    1.762949] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
[    1.768159] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:09 UTC (9)
[    1.786880] clk: Disabling unused clocks
[    1.795341] PM: genpd: Disabling unused power domains
[    1.800903] Waiting for root device PARTUUID=d37232c9-01...
[   11.914487] platform fa00000.mmc: deferred probe pending: platform: supplier regulator-3 not ready
[   11.923480] platform regulator-3: deferred probe pending: reg-fixed-voltage: can't get GPIO
[   11.931823] platform leds: deferred probe pending: leds-gpio: Failed to get GPIO '/leds/led-0'
[   11.940421] platform regulator-4: deferred probe pending: (reason unknown)



More information about the Letux-kernel mailing list