This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
We have a custom board design using 2 (MT40A2G8AG-062E AUT:F) for 4GBytes SDRAM. Can I access the full address range using the u-boot utilities (mm & md)? If so, could you provide examples for each 2GByte chip?
I think in U-Boot you are limited to the first 4GB (32-bit) of address space, which means 2GB of DDR (since DDR starts at 0x8000_0000). But let me double-check, we have some 4GB boards here.
Regards, Andreas
Andreas,
OK! Thanks!
Right now it looks like I'm looking at the same memory location when I use 0x880000000 or 0x80000000 for the address with md.
I looked into this briefly, looks like 64-bit support for memory commands should be automatic.
README-Configuration Settings: README------------------------ README- README:- MEM_SUPPORT_64BIT_DATA: Defined automatically if compiled as 64-bit. README- Optionally it can be defined to support 64-bit memory commands.
...some related code-snippet here...
include/compiler.h-#ifdef __LP64__ include/compiler.h:#define MEM_SUPPORT_64BIT_DATA 1 include/compiler.h-#else include/compiler.h:#define MEM_SUPPORT_64BIT_DATA 0 include/compiler.h-#endif
I've not gotten a chance yet to try it.
Regards, Andreas
Andreas,
Let me know what you find!
I'm using one of the pre-built images. I'll look for that define!
Jim,
I just tried this on SK-AM62A, which has 4GB of DDR, using last-year's SDK v9.x U-Boot image. There was no issue accessing memory above the first 2GB.
First, you can confirm the memory map with U-Boots `bdinfo` command. You can see that the first 2GB are mapped to address 0x8000_0000, and the second 2GB to address 0x8_8000_0000 as expected for all AM6x devices (see TRM).
=> bdinfo boot_params = 0x0000000000000000 DRAM bank = 0x0000000000000000 -> start = 0x0000000080000000 -> size = 0x0000000080000000 DRAM bank = 0x0000000000000001 -> start = 0x0000000880000000 -> size = 0x0000000080000000 flashstart = 0x0000000000000000 flashsize = 0x0000000000000000 flashoffset = 0x0000000000000000 baudrate = 115200 bps relocaddr = 0x00000000ffedd000 reloc off = 0x000000007f6dd000 Build = 64-bit current eth = ethernet@8000000port@1 ethaddr = 1c:63:49:17:21:cc IP addr = <NULL> fdt_blob = 0x00000000fde90dd0 new_fdt = 0x00000000fde90dd0 fdt_size = 0x000000000000bfe0 multi_dtb_fit= 0x0000000000000000 lmb_dump_all: memory.cnt = 0x2 memory[0] [0x80000000-0xffffffff], 0x80000000 bytes flags: 0 memory[1] [0x880000000-0x8ffffffff], 0x80000000 bytes flags: 0 reserved.cnt = 0x6 reserved[0] [0x99800000-0x9b7ffffe], 0x01ffffff bytes flags: 4 reserved[1] [0x9b800000-0x9e6fffff], 0x02f00000 bytes flags: 4 reserved[2] [0x9e780000-0xa2ffffff], 0x04880000 bytes flags: 4 reserved[3] [0xae000000-0xbfffffff], 0x12000000 bytes flags: 4 reserved[4] [0xfce8c000-0xffffffff], 0x03174000 bytes flags: 0 reserved[5] [0x880000000-0x8ffffffff], 0x80000000 bytes flags: 0 devicetree = separate arch_number = 0x0000000000000000 TLB addr = 0x00000000ffff0000 irq_sp = 0x00000000fde90dc0 sp start = 0x00000000fde90dc0 Early malloc usage: 2dc8 / 8000
Now, let's write a sequence of words (1, 2, 3, 4) to address 0x8000_0000 and a second sequence of words (5, 6, 7, 8) to address 0x8_8000_0000 while in-between checking both memory areas, to make sure one doesn't affect another and they are truly independent.
=> md 0x80000000 10 80000000: 01000000 02000000 40000000 00000100 ...........@.... 80000010: 80000400 20000000 00000200 00000000 ....... ........ 80000020: 00000000 40002000 00008100 a0000000 ..... .@........ 80000030: 00008000 00000400 02000000 00000000 ................ => md 0x880000000 10 880000000: 42400000 10100000 00000200 00000200 ..@B............ 880000010: 08000000 01000000 00000000 0a000000 ................ 880000020: 00080200 00020200 01000000 22000000 ..............." 880000030: 00000001 10000000 06000000 02000010 ................ => mm 0x80000000 80000000: 01000000 ? 1 80000004: 02000000 ? 2 80000008: 40000000 ? 3 8000000c: 00000100 ? 4 80000010: 80000400 ? q => md 0x80000000 10 80000000: 00000001 00000002 00000003 00000004 ................ 80000010: 80000400 20000000 00000200 00000000 ....... ........ 80000020: 00000000 40002000 00008100 a0000000 ..... .@........ 80000030: 00008000 00000400 02000000 00000000 ................ => md 0x880000000 10 880000000: 42400000 10100000 00000200 00000200 ..@B............ 880000010: 08000000 01000000 00000000 0a000000 ................ 880000020: 00080200 00020200 01000000 22000000 ..............." 880000030: 00000001 10000000 06000000 02000010 ................ => mm 0x880000000 880000000: 42400000 ? 5 880000004: 10100000 ? 6 880000008: 00000200 ? 7 88000000c: 00000200 ? 8 880000010: 08000000 ? q => md 0x80000000 10 80000000: 00000001 00000002 00000003 00000004 ................ 80000010: 80000400 20000000 00000200 00000000 ....... ........ 80000020: 00000000 40002000 00008100 a0000000 ..... .@........ 80000030: 00008000 00000400 02000000 00000000 ................ => md 0x880000000 10 880000000: 00000005 00000006 00000007 00000008 ................ 880000010: 08000000 01000000 00000000 0a000000 ................ 880000020: 00080200 00020200 01000000 22000000 ..............." 880000030: 00000001 10000000 06000000 02000010 ................
Everything working exactly as expected.
And this doesn't apply just to the memory command, but also to other commands. I've successfully transferred a large image over TFTP to address 0x8_8000_0000 in the past without issues.
Regards, Andreas
Andreas,
I don't see the second 2GB of DDR...
Is there a configuration setting missing?
Here's what I have in k3-am625-sk.dts -
I found another thread that had some information on it but it doesn't seem to be the solution -
I'm using 09.02.01.10.
SK-AM62B (with an AM62x device on it) which is what uses the k3-am625-sk.dts file you looked at only comes with 2GB of DDR, so this is expected,
What I was testing this was a SK-AM62A (with an AM62Ax device on it), which has 4GB of DDR. Different device tree file, see...
$ git grep -A 5 'memory@8' arch/arm/dts/k3-am62a7-sk.dts arch/arm/dts/k3-am62a7-sk.dts: memory@80000000 { arch/arm/dts/k3-am62a7-sk.dts- device_type = "memory"; arch/arm/dts/k3-am62a7-sk.dts- /* 4G RAM */ arch/arm/dts/k3-am62a7-sk.dts- reg = <0x00000000 0x80000000 0x00000000 0x80000000>, arch/arm/dts/k3-am62a7-sk.dts- <0x00000008 0x80000000 0x00000000 0x80000000>; arch/arm/dts/k3-am62a7-sk.dts- };
Regards, Andreas
Andreas,
OK! I tried to follow the above thread but there seems to be an issue with the Am62x driver. Without updating to a newer version, how can we proceed. It seems that a patch in the code is necessary. (k3-ddrss.c, etc.)
Without updating to a newer version, how can we proceed. It seems that a patch in the code is necessary. (k3-ddrss.c, etc.)
You should try moving to the latest U-Boot, at least for testing purposes. It should not be that difficult. If you have any specific challenge, pls let us know.
Regards, Andreas
Andreas,
OK! They'll be moving me off this project by week's end. I'll see how far I get! For the most part, I was brought in to get USB, SPI, EMMC and Ethernet going in one of the TI Linux environments. That has been successful. I let them know about the upper 2 GB of memory issue.
Thanks for your help thus far! I'll see if I can get this last issue resolved within the time I have left! I'll follow up within the next couple of days.
For the most part, I was brought in to get USB, SPI, EMMC and Ethernet going in one of the TI Linux environments. That has been successful.
Glad to hear!
I let them know about the upper 2 GB of memory issue.
Yes trying SDK v10.0 should be the starting point there; which is also what should be used for further development (not SDK v9.x). If you must use v9.x you can always try to identify and backport specific fixes to get DDR working with 4GB on AM62x. But you'd still be missing out on many of the other fixes/improvements that U-Boot from SDK v10.0 has vs. SDK v9.x.
Regards, Andreas
Andreas,
I updated to Version 10 of the SDK to try the u-boot tool that modifies and displays memory. With the configuration changes you mentioned above, I'm still only able to access 0x80000000 - 0x100000000,
Here's the log:
U-Boot SPL 2024.04-dirty (Oct 25 2024 - 14:14:30 -0400) SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)') SPL initial stack usage: 13392 bytes Trying to boot from MMC2 Authentication passed Authentication passed Authentication passed Authentication passed Authentication passed Starting ATF on ARM64 core... NOTICE: BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty NOTICE: BL31: Built : 16:09:05, Feb 9 2024 U-Boot SPL 2024.04-dirty (Oct 25 2024 - 14:14:47 -0400) SYSFW ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)') SPL initial stack usage: 1856 bytes Trying to boot from MMC2 Authentication passed Authentication passed U-Boot 2024.04-dirty (Oct 25 2024 - 14:14:47 -0400) SoC: AM62X SR1.0 HS-FS Model: Texas Instruments AM625 SK EEPROM not available at 0x50, trying to read at 0x51 Reading on-board EEPROM at 0x51 failed -19 DRAM: 2 GiB (effective 4 GiB) Core: 75 devices, 28 uclasses, devicetree: separate MMC: mmc@fa10000: 0, mmc@fa00000: 1 Loading Environment from nowhere... OK In: serial Out: serial Err: serial EEPROM not available at 0x50, trying to read at 0x51 Reading on-board EEPROM at 0x51 failed -121 Net: eth0: ethernet@8000000port@1 Hit any key to stop autoboot: 0 switch to partitions #0, OK mmc1 is current device SD/MMC found on device 1 574 bytes read in 20 ms (27.3 KiB/s) Loaded env from uEnv.txt Importing environment from mmc1 ... 20285952 bytes read in 871 ms (22.2 MiB/s) 58259 bytes read in 25 ms (2.2 MiB/s) Working FDT set to 88000000 ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Working FDT set to 88000000 Loading Device Tree to 000000008feee000, end 000000008fffffff ... OK Working FDT set to 8feee000 Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.6.32-ti-g6de6e418c80e-dirty (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240716) #1 SMP PREEMPT Fri Jul 26 14:32:20 UTC 2024 [ 0.000000] KASLR disabled due to lack of seed [ 0.000000] Machine model: Texas Instruments AM625 SK [ 0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '') [ 0.000000] printk: bootconsole [ns16550a0] enabled [ 0.000000] efi: UEFI not found. [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000f8000000, size 128 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000f8000000..0x00000000ffffffff (131072 KiB) map reusable linux,cma [ 0.000000] OF: reserved mem: 0x0000000080000000..0x000000008007ffff (512 KiB) nomap non-reusable tfa@80000000 [ 0.000000] OF: reserved mem: 0x000000009c700000..0x000000009c7fffff (1024 KiB) map non-reusable ramoops@9c700000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB [ 0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009c800000..0x000000009cafffff (3072 KiB) nomap non-reusable ipc-memories@9c800000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009cb00000..0x000000009cbfffff (1024 KiB) nomap non-reusable m4f-dma-memory@9cb00000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB [ 0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009cc00000..0x000000009d9fffff (14336 KiB) nomap non-reusable m4f-memory@9cc00000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009da00000..0x000000009dafffff (1024 KiB) nomap non-reusable r5f-dma-memory@9da00000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB [ 0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009db00000..0x000000009e6fffff (12288 KiB) nomap non-reusable r5f-memory@9db00000 [ 0.000000] OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee@9e800000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000080000000-0x000000008007ffff] [ 0.000000] node 0: [mem 0x0000000080080000-0x000000009c7fffff] [ 0.000000] node 0: [mem 0x000000009c800000-0x000000009e6fffff] [ 0.000000] node 0: [mem 0x000000009e700000-0x000000009e7fffff] [ 0.000000] node 0: [mem 0x000000009e800000-0x000000009fffffff] [ 0.000000] node 0: [mem 0x00000000a0000000-0x00000000ffffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff] [ 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.4 [ 0.000000] percpu: Embedded 20 pages/cpu s42920 r8192 d30808 u81920 [ 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=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi_nand.tiboot3),2m(ospi_nand.tispl),4m(ospi_nand.u-boot),256k(ospi_nand.env),256k(ospi_nand.env.backup),98048k@32m(ospi_nand.rootfs),256k@130816k(ospi_nand.phypattern) root=PARTUUID=425b0f9d-02 rw rootfstype=ext4 rootwait [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 516096 [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.000000] software IO TLB: area num 4. [ 0.000000] software IO TLB: mapped [mem 0x00000000f1800000-0x00000000f5800000] (64MB) [ 0.000000] Memory: 1781088K/2097152K available (11968K kernel code, 1250K rwdata, 4036K rodata, 2432K init, 502K bss, 184992K reserved, 131072K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Preemptible hierarchical RCU implementation. [ 0.000000] rcu: RCU event tracing is enabled. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=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: 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@0x0000000001820000: Devices Table too large, reduce ids 20->19 [ 0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80c00000 (flat, esz 8, psz 64K, shr 0) [ 0.000000] ITS: using cache flushing for cmd queue [ 0.000000] GICv3: using LPI property table @0x0000000080440000 [ 0.000000] GIC: using cache flushing for LPI property table [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080450000 [ 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.000001] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns [ 0.008707] Console: colour dummy device 80x25 [ 0.013338] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000) [ 0.024029] pid_max: default: 32768 minimum: 301 [ 0.028871] LSM: initializing lsm=capability,integrity [ 0.034296] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.041898] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.052613] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.059998] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.068011] rcu: Hierarchical SRCU implementation. [ 0.072921] rcu: Max phase no-delay instances is 1000. [ 0.078645] Platform MSI: msi-controller@1820000 domain created [ 0.085069] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created [ 0.094526] EFI services will not be available. [ 0.099573] smp: Bringing up secondary CPUs ... [ 0.105099] Detected VIPT I-cache on CPU1 [ 0.105233] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000 [ 0.105258] GICv3: CPU1: using allocated LPI pending table @0x0000000080460000 [ 0.105338] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.106357] Detected VIPT I-cache on CPU2 [ 0.106438] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000 [ 0.106456] GICv3: CPU2: using allocated LPI pending table @0x0000000080470000 [ 0.106505] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.107320] Detected VIPT I-cache on CPU3 [ 0.107386] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000 [ 0.107403] GICv3: CPU3: using allocated LPI pending table @0x0000000080480000 [ 0.107441] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.107541] smp: Brought up 1 node, 4 CPUs [ 0.187310] SMP: Total of 4 processors activated. [ 0.192126] CPU features: detected: 32-bit EL0 Support [ 0.197408] CPU features: detected: CRC32 instructions [ 0.202753] CPU: All CPU(s) started at EL2 [ 0.206956] alternatives: applying system-wide alternatives [ 0.215544] devtmpfs: initialized [ 0.228292] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.238336] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.253071] pinctrl core: initialized pinctrl subsystem [ 0.259333] DMI not present or invalid. [ 0.264220] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.271536] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.278902] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.286940] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.295178] audit: initializing netlink subsys (disabled) [ 0.301042] audit: type=2000 audit(0.184:1): state=initialized audit_enabled=0 res=1 [ 0.301710] thermal_sys: Registered thermal governor 'step_wise' [ 0.308989] thermal_sys: Registered thermal governor 'power_allocator' [ 0.315209] cpuidle: using governor menu [ 0.326134] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.333187] ASID allocator initialised with 65536 entries [ 0.352394] Modules: 27680 pages in range for non-PLT usage [ 0.352425] Modules: 519200 pages in range for PLT usage [ 0.359344] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.371781] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page [ 0.378192] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages [ 0.385132] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page [ 0.391540] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.398480] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page [ 0.404888] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages [ 0.411828] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page [ 0.420259] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected [ 0.429807] iommu: Default domain type: Translated [ 0.434763] iommu: DMA domain TLB invalidation policy: strict mode [ 0.441491] SCSI subsystem initialized [ 0.445813] usbcore: registered new interface driver usbfs [ 0.451465] usbcore: registered new interface driver hub [ 0.456932] usbcore: registered new device driver usb [ 0.462660] pps_core: LinuxPPS API ver. 1 registered [ 0.467740] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.477095] PTP clock support registered [ 0.481282] EDAC MC: Ver: 3.0.0 [ 0.485188] scmi_core: SCMI protocol bus registered [ 0.490595] FPGA manager framework [ 0.494226] Advanced Linux Sound Architecture Driver Initialized. [ 0.501730] vgaarb: loaded [ 0.505115] clocksource: Switched to clocksource arch_sys_counter [ 0.511742] VFS: Disk quotas dquot_6.6.0 [ 0.515802] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.530180] NET: Registered PF_INET protocol family [ 0.535653] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.545002] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.553857] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.561797] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.570036] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 0.578427] TCP: Hash tables configured (established 16384 bind 16384) [ 0.585512] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.592464] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.600096] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.606675] RPC: Registered named UNIX socket transport module. [ 0.612778] RPC: Registered udp transport module. [ 0.617589] RPC: Registered tcp transport module. [ 0.622399] RPC: Registered tcp-with-tls transport module. [ 0.628008] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.634604] NET: Registered PF_XDP protocol family [ 0.639537] PCI: CLS 0 bytes, default 64 [ 0.645667] Initialise system trusted keyrings [ 0.650605] workingset: timestamp_bits=46 max_order=19 bucket_order=0 [ 0.657645] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.664033] NFS: Registering the id_resolver key type [ 0.669253] Key type id_resolver registered [ 0.673533] Key type id_legacy registered [ 0.677657] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.684514] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 0.726033] Key type asymmetric registered [ 0.730233] Asymmetric key parser 'x509' registered [ 0.735313] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) [ 0.742883] io scheduler mq-deadline registered [ 0.747518] io scheduler kyber registered [ 0.751684] io scheduler bfq registered [ 0.759252] pinctrl-single 4084000.pinctrl: 34 pins, size 136 [ 0.766036] pinctrl-single f4000.pinctrl: 171 pins, size 684 [ 0.779411] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled [ 0.799420] loop: module loaded [ 0.804101] megasas: 07.725.01.00-rc1 [ 0.812087] tun: Universal TUN/TAP device driver, 1.6 [ 0.818751] VFIO - User Level meta-driver version: 0.3 [ 0.825272] usbcore: registered new interface driver usb-storage [ 0.832111] i2c_dev: i2c /dev entries driver [ 0.838418] sdhci: Secure Digital Host Controller Interface driver [ 0.844793] sdhci: Copyright(c) Pierre Ossman [ 0.849491] sdhci-pltfm: SDHCI platform and OF driver helper [ 0.855948] ledtrig-cpu: registered to indicate activity on CPUs [ 0.862428] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping .... [ 0.869798] usbcore: registered new interface driver usbhid [ 0.875508] usbhid: USB HID core driver [ 0.879906] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100 [ 0.888359] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 0.897417] optee: probing for conduit method. [ 0.902014] optee: revision 4.2 (12d7c4ee) [ 0.902460] optee: dynamic shared memory is enabled [ 0.912697] random: crng init done [ 0.916325] optee: initialized driver [ 0.922565] NET: Registered PF_PACKET protocol family [ 0.927931] Key type dns_resolver registered [ 0.941297] registered taskstats version 1 [ 0.946119] Loading compiled-in X.509 certificates [ 0.968220] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)') [ 1.038296] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz [ 1.044820] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created [ 1.054143] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created [ 1.064873] ti-udma 485c0100.dma-controller: Number of rings: 82 [ 1.074206] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18) [ 1.086009] ti-udma 485c0000.dma-controller: Number of rings: 150 [ 1.097974] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15) [ 1.109191] printk: console [ttyS2] disabled [ 1.114081] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 237, base_baud = 3000000) is a 8250 [ 1.123015] printk: console [ttyS2] enabled [ 1.123015] printk: console [ttyS2] enabled [ 1.131634] printk: bootconsole [ns16550a0] disabled [ 1.131634] printk: bootconsole [ns16550a0] disabled [ 1.147106] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode [ 1.193116] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000 [ 1.203414] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown [ 1.211282] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver unknown [ 1.219185] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006 [ 1.232241] am65-cpsw-nuss 8000000.ethernet: Use random MAC address [ 1.238523] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5 [ 1.245650] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512 [ 1.252381] pps pps0: new PPS source ptp0 [ 1.256803] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1 [ 1.272621] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19 [ 1.285610] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 1.291169] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 1.299051] xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports [ 1.305055] xhci-hcd xhci-hcd.0.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008000000010 [ 1.314518] xhci-hcd xhci-hcd.0.auto: irq 248, io mem 0x31000000 [ 1.321818] hub 1-0:1.0: USB hub found [ 1.325708] hub 1-0:1.0: 1 port detected [ 1.332082] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 1200000 KHz, changing to: 1000000 KHz [ 1.345545] mmc0: CQHCI version 5.10 [ 1.356187] mmc1: CQHCI version 5.10 [ 1.385688] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit [ 1.399749] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit [ 1.412148] debugfs: Directory 'pd:186' with parent 'pm_genpd' already present! [ 1.420908] clk: Disabling unused clocks [ 1.432721] ALSA device list: [ 1.435819] No soundcards found. [ 1.439840] Waiting for root device PARTUUID=425b0f9d-02... [ 1.445653] mmc0: Command Queue Engine enabled [ 1.450135] mmc0: new HS200 MMC card at address 0001 [ 1.451083] mmc1: new high speed SDHC card at address 0001 [ 1.456375] mmcblk0: mmc0:0001 IS032G 29.1 GiB [ 1.462038] mmcblk1: mmc1:0001 SD32G 28.9 GiB [ 1.468243] mmcblk0boot0: mmc0:0001 IS032G 4.00 MiB [ 1.472604] mmcblk1: p1 p2 [ 1.476223] mmcblk0boot1: mmc0:0001 IS032G 4.00 MiB [ 1.483743] mmcblk0rpmb: mmc0:0001 IS032G 4.00 MiB, chardev (239:0) [ 1.589217] usb 1-1: new high-speed USB device number 2 using xhci-hcd [ 1.757997] usb-storage 1-1:1.0: USB Mass Storage device detected [ 1.764922] scsi host0: usb-storage 1-1:1.0 [ 1.997299] EXT4-fs (mmcblk1p2): recovery complete [ 2.005616] EXT4-fs (mmcblk1p2): mounted filesystem bd84fa9c-e2d8-4d58-8986-0de46d5abc66 r/w with ordered data mode. Quota mode: none. [ 2.017876] VFS: Mounted root (ext4 filesystem) on device 179:34. [ 2.031915] devtmpfs: mounted [ 2.037820] Freeing unused kernel memory: 2432K [ 2.042499] Run /sbin/init as init process [ 2.624524] systemd[1]: System time before build time, advancing clock. [ 2.719780] NET: Registered PF_INET6 protocol family [ 2.726733] Segment Routing with IPv6 [ 2.730501] In-situ OAM (IOAM) with IPv6 [ 2.776386] scsi 0:0:0:0: Direct-Access Kingston DataTraveler 2.0 PMAP PQ: 0 ANSI: 6 [ 2.808571] systemd[1]: systemd 255.4^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 2.840556] systemd[1]: Detected architecture arm64. Welcome to Arago 2023.10! [ 2.863540] systemd[1]: Hostname set to <am62xx-evm>. [ 2.869170] sd 0:0:0:0: [sda] 30240768 512-byte logical blocks: (15.5 GB/14.4 GiB) [ 2.877425] sd 0:0:0:0: [sda] Write Protect is off [ 2.882790] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [ 2.898248] sda: sda1 [ 2.901243] sd 0:0:0:0: [sda] Attached SCSI removable disk [ 3.450736] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consider removing the setting altogether. [ 3.570333] systemd[1]: Queued start job for default target Multi-User System. [ 3.622067] systemd[1]: Created slice Slice /system/getty. [ OK ] Created slice Slice /system/getty. [ 3.648948] systemd[1]: Created slice Slice /system/modprobe. [ OK ] Created slice Slice /system/modprobe. [ 3.672953] systemd[1]: Created slice Slice /system/serial-getty. [ OK ] Created slice Slice /system/serial-getty. [ 3.700022] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 3.721961] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password Requests to Console Directory Watch. [ 3.745700] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password Requests to Wall Directory Watch. [ 3.769407] systemd[1]: Expecting device /dev/ttyS2... Expecting device /dev/ttyS2... [ 3.789496] systemd[1]: Reached target Path Units. [ OK ] Reached target Path Units. [ 3.805340] systemd[1]: Reached target Remote File Systems. [ OK ] Reached target Remote File Systems. [ 3.825287] systemd[1]: Reached target Slice Units. [ OK ] Reached target Slice Units. [ 3.841315] systemd[1]: Reached target Swaps. [ OK ] Reached target Swaps. [ 3.902979] systemd[1]: Listening on RPCbind Server Activation Socket. [ OK ] Listening on RPCbind Server Activation Socket. [ 3.925670] systemd[1]: Reached target RPC Port Mapper. [ OK ] Reached target RPC Port Mapper. [ 3.956108] systemd[1]: Listening on Process Core Dump Socket. [ OK ] Listening on Process Core Dump Socket. [ 3.978601] systemd[1]: Listening on initctl Compatibility Named Pipe. [ OK ] Listening on initctl Compatibility Named Pipe. [ 4.012360] systemd[1]: Listening on Journal Audit Socket. [ OK ] Listening on Journal Audit Socket. [ 4.035159] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 4.059195] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 4.075473] systemd[1]: Listening on Network Service Netlink Socket. [ OK ] Listening on Network Service Netlink Socket. [ 4.100552] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 4.122450] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 4.146410] systemd[1]: Listening on User Database Manager Socket. [ OK ] Listening on User Database Manager Socket. [ 4.194159] systemd[1]: Mounting Huge Pages File System... Mounting Huge Pages File System... [ 4.217538] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 4.249711] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System... [ 4.266543] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing). [ 4.310967] systemd[1]: Mounting Temporary Directory /tmp... Mounting Temporary Directory /tmp... [ 4.339915] systemd[1]: Starting Create List of Static Device Nodes... Starting Create List of Static Device Nodes... [ 4.374274] systemd[1]: Starting Load Kernel Module configfs... Starting Load Kernel Module configfs... [ 4.399120] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm... [ 4.415416] systemd[1]: Starting Load Kernel Module fuse... Starting Load Kernel Module fuse... [ 4.446131] systemd[1]: Starting Start psplash boot splash screen... Starting Start psplash boot splash screen... [ 4.465030] systemd[1]: Starting RPC Bind... Starting RPC Bind... [ 4.486355] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/). [ 4.515724] systemd[1]: Starting Journal Service... Starting Journal Service... [ 4.555754] fuse: init (API version 7.39) [ 4.606699] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules... [ 4.641312] systemd[1]: Starting Generate network units from Kernel command line... Starting Generate network units from Kernel command line... [ 4.670299] cryptodev: loading out-of-tree module taints kernel. [ 4.679395] cryptodev: driver 1.13 loaded. [ 4.715289] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems... [ 4.739680] systemd-journald[121]: Collecting audit messages is enabled. [ 4.751075] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices... [ 4.795725] systemd[1]: Started RPC Bind. [ OK ] Started RPC Bind. [ 4.807831] EXT4-fs (mmcblk1p2): re-mounted bd84fa9c-e2d8-4d58-8986-0de46d5abc66 r/w. Quota mode: none. [ 4.823031] systemd[1]: Mounted Huge Pages File System. [ OK ] Mounted Huge Pages File System. [ 4.850931] systemd[1]: Started Journal Service. [ OK ] Started Journal Service. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Kernel Debug File System. [ OK ] Mounted Temporary Directory /tmp. [ OK ] Finished Create List of Static Device Nodes. [ OK ] Finished Load Kernel Module configfs. [ OK ] Finished Load Kernel Module drm. [ OK ] Finished Load Kernel Module fuse. [FAILED] Failed to start Start psplash boot splash screen. See 'systemctl status psplash-start.service' for details. [DEPEND] Dependency failed for Start psplas…temd progress communication helper. [ OK ] Finished Load Kernel Modules. [ OK ] Finished Generate network units from Kernel command line. [ OK ] Finished Remount Root and Kernel File Systems. Mounting FUSE Control File System... Mounting Kernel Configuration File System... Starting Flush Journal to Persistent Storage... Starting Apply Kernel Variables... Starting Create Static Device Nodes in /dev gracefully... [ 5.370821] systemd-journald[121]: Received client request to flush runtime journal. [ OK ] Mounted FUSE Control File System. [ OK ] Mounted Kernel Configuration File System. [ OK ] Finished Flush Journal to Persistent Storage. [ OK ] Finished Apply Kernel Variables. [ OK ] Finished Create Static Device Nodes in /dev gracefully. Starting Create Static Device Nodes in /dev... [ OK ] Finished Create Static Device Nodes in /dev. [ OK ] Reached target Preparation for Local File Systems. Mounting /var/volatile... [ 5.740091] audit: type=1334 audit(1709054767.112:2): prog-id=6 op=LOAD [ 5.748728] audit: type=1334 audit(1709054767.112:3): prog-id=7 op=LOAD Starting Rule-based Manager for Device Events and Files... [ OK ] Finished Coldplug All udev Devices. [ OK ] Mounted /var/volatile. Starting Load/Save OS Random Seed... [ OK ] Reached target Local File Systems. Starting Create Volatile Files and Directories... [ OK ] Finished Load/Save OS Random Seed. [ OK ] Finished Create Volatile Files and Directories. [ 6.104610] audit: type=1334 audit(1709054767.476:4): prog-id=8 op=LOAD Starting Network Name Resolution... [ 6.161338] audit: type=1334 audit(1709054767.532:5): prog-id=9 op=LOAD Starting Network Time Synchronization... Starting Record System Boot/Shutdown in UTMP... [ OK ] Started Rule-based Manager for Device Events and Files. [ 6.237350] audit: type=1334 audit(1709054767.608:6): prog-id=10 op=LOAD [ 6.245338] audit: type=1334 audit(1709054767.608:7): prog-id=11 op=LOAD [ 6.253053] audit: type=1334 audit(1709054767.608:8): prog-id=12 op=LOAD Starting User Database Manager... [ OK ] Finished Record System Boot/Shutdown in UTMP. [ OK ] Started User Database Manager. [ OK ] Found device /dev/ttyS2. [ OK ] Started Network Time Synchronization. [ OK ] Reached target System Time Set. [ OK ] Started Network Name Resolution. [ OK ] Reached target Host and Network Name Lookups. [ OK ] Reached target System Initialization. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target Timer Units. [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket. [ OK ] Listening on D-Bus System Message Bus Socket. Starting Docker Socket for the API... [ OK ] Listening on dropbear.socket. [ 7.798075] audit: type=1334 audit(1709067110.876:9): prog-id=13 op=LOAD Starting D-Bus System Message Bus... [ OK ] Listening on Docker Socket for the API. [ OK ] Reached target Socket Units. [ OK ] Started D-Bus System Message Bus. [ OK ] Reached target Basic System. [ 8.136818] dbus-broker-lau[354]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set Starting Avahi mDNS/DNS-SD Stack... Starting Print notice about GPLv3 packages... Starting IPv6 Packet Filtering Framework... Starting IPv4 Packet Filtering Framework... Starting Expand the rootfs partiti…to full size of the boot device.... [ 8.297303] audit: type=1334 audit(1709067111.372:10): prog-id=14 op=LOAD [ 8.333323] audit: type=1334 audit(1709067111.408:11): prog-id=15 op=LOAD Starting User Login Management... Starting Telnet Server... [ OK ] Finished IPv6 Packet Filtering Framework. [ OK ] Finished IPv4 Packet Filtering Framework. [ OK ] Started Avahi mDNS/DNS-SD Stack. [ OK ] Finished Telnet Server. [ OK ] Reached target Preparation for Network. Starting Network Configuration... [ 8.884325] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000 [ 8.894929] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode [ 8.903225] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device [ 8.927505] remoteproc remoteproc0: 5000000.m4fss is available [ 8.950155] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2 [ 8.960093] remoteproc remoteproc0: powering up 5000000.m4fss [ 8.966656] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2 [ 8.976243] remoteproc remoteproc0: request_firmware failed: -2 [ OK ] Finished Expand the rootfs partition to full size of the boot device.. [ OK ] Started User Login Management. [ 9.174712] rtc-ti-k3 2b1f0000.rtc: registered as rtc0 [ 9.184595] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:01 UTC (1) [ 9.198933] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1) [ 9.226171] platform 78000000.r5f: configured R5F for IPC-only mode [ 9.233769] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000 [ 9.246984] remoteproc remoteproc1: 78000000.r5f is available [ 9.253469] remoteproc remoteproc1: attaching to 78000000.r5f [ 9.276252] platform 78000000.r5f: R5F core initialized in IPC-only mode [ 9.286407] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node r5f-dma-memory@9da00000 [ 9.305568] virtio_rpmsg_bus virtio0: rpmsg host is online [ 9.311479] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd [ 9.319748] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe [ 9.328072] rproc-virtio rproc-virtio.2.auto: registered virtio0 (type 7) [ 9.343683] remoteproc remoteproc1: remote processor 78000000.r5f is now attached [ 9.408474] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 9.450763] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 9.458153] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' [ 9.467355] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2 [ 9.481983] cfg80211: failed to load regulatory.db Starting Virtual Console Setup... [ OK ] Started Network Configuration. [ 9.791218] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL) [ 9.801273] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode [ OK ] Reached target Network. [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ 9.840330] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [Generic PHY] (irq=POLL) [ 9.851890] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode [ OK ] Started Netperf Benchmark Server. Starting Permit User Sessions... [ OK ] Finished Permit User Sessions. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyS2. [ OK ] Reached target Login Prompts. Starting Synchronize System and HW clocks... [ OK ] Created slice Slice /system/systemd-fsck. Expecting device /dev/sda1... [ OK ] Found device DataTraveler_2.0 1. Starting File System Check on /dev/sda1... Expecting device /dev/mmcblk1p1... [ OK ] Finished Virtual Console Setup. [ OK ] Found device /dev/mmcblk1p1. Starting File System Check on /dev/mmcblk1p1... [FAILED] Failed to start Synchronize System and HW clocks. See 'systemctl status sync-clocks.service' for details. [ OK ] Finished File System Check on /dev/mmcblk1p1. Mounting /run/media/boot-mmcblk1p1... [ OK ] Mounted /run/media/boot-mmcblk1p1. [ OK ] Finished File System Check on /dev/sda1. Mounting /run/media/sda1... [ OK ] Mounted /run/media/sda1. [ 13.945910] am65-cpsw-nuss 8000000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx [ OK ] Started containerd container runtime. *************************************************************** *************************************************************** NOTICE: This file system contains the following GPL-3.0 packages: bash cifs-utils dosfstools grub-common grub-editenv grub-efi kbd-keymaps-pine less libdw1 libelf1 libgcc1 libreadline8 libstdc++6 parted If you do not wish to distribute GPL-3.0 components please remove the above packages prior to distribution. This can be done using the opkg remove command. i.e.: opkg remove <package> Where <package> is the name printed in the list above NOTE: If the package is a dependency of another package you will be notified of the dependent packages. You should use the --force-removal-of-dependent-packages option to also remove the dependent packages as well *************************************************************** *************************************************************** [ OK ] Finished Print notice about GPLv3 packages. [ OK ] Reached target Multi-User System. Starting Record Runlevel Change in UTMP... [ OK ] Finished Record Runlevel Change in UTMP. _____ _____ _ _ | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_ | | _| .'| . | . | | __| _| . | | | -_| _| _| |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_| |___| |___| Arago Project am62xx-evm ttyS2 Arago 2023.10 am62xx-evm ttyS2
I'm not completely finished configuring V10 (the ethernet is not working). ...But most everything else appears to be working.
I updated to Version 10 of the SDK to try the u-boot tool that modifies and displays memory. With the configuration changes you mentioned above, I'm still only able to access 0x80000000 - 0x100000000,
Thanks for trying this. I'm checking with the team what could be going wrong here. AFAIK the >2GG support should work with SDK v10.x+.
Regards, Andreas
Hi Jim,
A colleague just mentioned to me you were also discussing this on a separate thread (https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1430847/am620-q1-4gb-ddr---unable-to-access-upper-2gb) and that it is resolved.
Looks like the solution was to use the very DTS configuration I pointed out in this thread here earlier. Not sure what the confusion/disconnect was that this wasn't tried in the context of SDK v10, but I'm glad it's confirmed working now.
Regards, Andreas