Tool/software:
I have a custom board design based on the AM6254. It has 2 2GB SDRAM (MT40A2G8SA-062E IT:F) memories. I can read/write both from u-boot. I have added this to the device-tree:
memory@80000000 {
device_type = "memory";
/* 4G RAM */
reg = <0x00000000 0x80000000 0x00000000 0x80000000>,
<0x00000008 0x80000000 0x00000000 0x80000000>;
};
But there was a kernel panic. I also added this to the device-tree and now it boots but it only shows 2GB available:
upper_2gb: upper-2gb@880000000 {
reg = <0x00000008 0x80000000 0x00000000 0x80000000>;
alignment = <0x1000>;
no-map;
};
# cat /proc/meminfo
MemTotal: 1900324 kB
MemFree: 1813876 kB
MemAvailable: 1762648 kB
It looks like the other 2GB is reserved. How do I fix this? Here's the full dmesg:
Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.1.0-v0.07 (robotics@robotics-VirtualBox) (aarch64-buildroot-linux-gnu-gcc.br_real (Buildroot -gd87a181-dirty) 11.3.0, GNU ld (GNU Binutils) 2.38) #2 SMP PREEMPT Thu Dec 19 05:21:27 EST 2024 [ 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 DMA memory pool at 0x000000009db00000, size 12 MiB [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@9db00000, compatible id shared-dma-pool [ 0.000000] NUMA: No NUMA configuration found [ 0.000000] NUMA: Faking a node at [mem 0x0000000080000000-0x00000008ffffffff] [ 0.000000] NUMA: NODE_DATA [mem 0xffbe0e00-0xffbe2fff] [ 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-0x000000009dafffff] [ 0.000000] node 0: [mem 0x000000009db00000-0x000000009e6fffff] [ 0.000000] node 0: [mem 0x000000009e700000-0x000000009e77ffff] [ 0.000000] node 0: [mem 0x000000009e780000-0x000000009fffffff] [ 0.000000] node 0: [mem 0x00000000a0000000-0x00000000ffffffff] [ 0.000000] node 0: [mem 0x0000000880000000-0x00000008ffffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffffff] [ 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 s43240 r8192 d30488 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] Fallback order for Node 0: 0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 1032192 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=5f1a3f63-02 rw rootfstype=ext4 rootwait [ 0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: area num 4. [ 0.000000] software IO TLB: mapped [mem 0x00000000f7400000-0x00000000fb400000] (64MB) [ 0.000000] Memory: 1898404K/4194304K available (10880K kernel code, 1008K rwdata, 3252K rodata, 1920K init, 517K bss, 2295900K reserved, 0K 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 @80800000 (flat, esz 8, psz 64K, shr 0) [ 0.000000] ITS: using cache flushing for cmd queue [ 0.000000] GICv3: using LPI property table @0x0000000080040000 [ 0.000000] GIC: using cache flushing for LPI property table [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080050000 [ 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.008501] Console: colour dummy device 80x25 [ 0.013136] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000) [ 0.023820] pid_max: default: 32768 minimum: 301 [ 0.028602] LSM: Security Framework initializing [ 0.033451] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.041053] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.050906] cblist_init_generic: Setting adjustable number of callback queues. [ 0.058370] cblist_init_generic: Setting shift to 2 and lim to 1. [ 0.064671] cblist_init_generic: Setting shift to 2 and lim to 1. [ 0.071102] rcu: Hierarchical SRCU implementation. [ 0.076010] rcu: Max phase no-delay instances is 1000. [ 0.081586] Platform MSI: msi-controller@1820000 domain created [ 0.087795] EFI services will not be available. [ 0.092692] 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.106022] Detected VIPT I-cache on CPU1 [ 0.106135] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000 [ 0.106153] GICv3: CPU1: using allocated LPI pending table @0x0000000080060000 [ 0.106211] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.114962] Detected VIPT I-cache on CPU2 [ 0.115045] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000 [ 0.115059] GICv3: CPU2: using allocated LPI pending table @0x0000000080070000 [ 0.115098] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.123765] Detected VIPT I-cache on CPU3 [ 0.123852] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000 [ 0.123867] GICv3: CPU3: using allocated LPI pending table @0x0000000080080000 [ 0.123903] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.123973] smp: Brought up 1 node, 4 CPUs [ 0.203686] SMP: Total of 4 processors activated. [ 0.208501] CPU features: detected: 32-bit EL0 Support [ 0.213765] CPU features: detected: 32-bit EL1 Support [ 0.219022] CPU features: detected: CRC32 instructions [ 0.224352] CPU: All CPU(s) started at EL2 [ 0.228564] alternatives: applying system-wide alternatives [ 0.236422] devtmpfs: initialized [ 0.246259] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.256278] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.263461] pinctrl core: initialized pinctrl subsystem [ 0.269380] DMI not present or invalid. [ 0.273932] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.280485] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.287754] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.295715] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.303876] audit: initializing netlink subsys (disabled) [ 0.309595] audit: type=2000 audit(0.204:1): state=initialized audit_enabled=0 res=1 [ 0.309916] thermal_sys: Registered thermal governor 'step_wise' [ 0.317528] thermal_sys: Registered thermal governor 'power_allocator' [ 0.323848] cpuidle: using governor menu [ 0.334666] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.341686] ASID allocator initialised with 65536 entries [ 0.355956] platform panel: Fixing up cyclic dependency with 30200000.dss [ 0.363847] KASLR disabled due to lack of seed [ 0.374323] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.381293] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.388070] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages [ 0.395011] HugeTLB: 508 KiB vmemmap can be freed for a 32.0 MiB page [ 0.401598] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.408537] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.415033] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages [ 0.421973] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page [ 0.429637] ACPI: Interpreter disabled. [ 0.433922] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected [ 0.443730] iommu: Default domain type: Translated [ 0.448739] iommu: DMA domain TLB invalidation policy: strict mode [ 0.455427] SCSI subsystem initialized [ 0.459442] usbcore: registered new interface driver usbfs [ 0.465087] usbcore: registered new interface driver hub [ 0.470547] usbcore: registered new device driver usb [ 0.476172] pps_core: LinuxPPS API ver. 1 registered [ 0.481250] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.490605] PTP clock support registered [ 0.494643] EDAC MC: Ver: 3.0.0 [ 0.499511] clocksource: Switched to clocksource arch_sys_counter [ 0.506008] VFS: Disk quotas dquot_6.6.0 [ 0.510064] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.517289] pnp: PnP ACPI: disabled [ 0.526777] NET: Registered PF_INET protocol family [ 0.532217] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.542726] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) [ 0.551595] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.559542] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.567856] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 0.576590] TCP: Hash tables configured (established 32768 bind 32768) [ 0.583588] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.590545] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.598127] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.604463] RPC: Registered named UNIX socket transport module. [ 0.610550] RPC: Registered udp transport module. [ 0.615361] RPC: Registered tcp transport module. [ 0.620169] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.627633] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 0.636574] kvm [1]: IPA Size Limit: 40 bits [ 0.641638] kvm [1]: vgic-v2@100010000 [ 0.645496] kvm [1]: GIC system register CPU interface enabled [ 0.651576] kvm [1]: vgic interrupt IRQ9 [ 0.655672] kvm [1]: Hyp mode initialized successfully [ 0.662576] workingset: timestamp_bits=42 max_order=19 bucket_order=0 [ 0.675111] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.681840] NFS: Registering the id_resolver key type [ 0.687079] Key type id_resolver registered [ 0.691370] Key type id_legacy registered [ 0.695549] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.737257] io scheduler mq-deadline registered [ 0.741897] io scheduler kyber registered [ 0.747975] pinctrl-single 4084000.pinctrl: 34 pins, size 136 [ 0.754320] pinctrl-single f4000.pinctrl: 171 pins, size 684 [ 0.760569] EINJ: ACPI disabled. [ 0.767669] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.776957] panel-simple panel: supply power not found, using dummy regulator [ 0.790745] loop: module loaded [ 0.795299] CAN device driver interface [ 0.801143] usbcore: registered new interface driver cdc_acm [ 0.806955] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters [ 0.815438] usbcore: registered new interface driver uas [ 0.820927] usbcore: registered new interface driver usb-storage [ 0.827333] usbcore: registered new device driver onboard-usb-hub [ 0.834297] UDC core: g_acm_ms: couldn't find an available UDC [ 0.840361] i2c_dev: i2c /dev entries driver [ 0.844885] Driver for 1-wire Dallas network protocol. [ 0.850927] sdhci: Secure Digital Host Controller Interface driver [ 0.857258] sdhci: Copyright(c) Pierre Ossman [ 0.861860] sdhci-pltfm: SDHCI platform and OF driver helper [ 0.868598] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping .... [ 0.876119] 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 [ 0.880714] optee: revision 4.2 [ 0.897277] optee: dynamic shared memory is enabled [ 0.905891] optee: initialized driver [ 0.910102] NET: Registered PF_PACKET protocol family [ 0.915326] can: controller area network core [ 0.919844] NET: Registered PF_CAN protocol family [ 0.924745] can: raw protocol [ 0.927780] can: broadcast manager protocol [ 0.932103] 8021q: 802.1Q VLAN Support v1.8 [ 0.936443] Key type dns_resolver registered [ 0.941222] registered taskstats version 1 [ 0.952568] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.2.7--v09.02.07 (Kool Koala)') [ 0.968615] ti-sci-clk 44043000.system-controller:clock-controller: recalc-rate failed for dev=13, clk=7, ret=-19 [ 0.988168] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz [ 0.995422] omap_i2c 20020000.i2c: bus 1 rev0.12 at 400 kHz [ 1.002577] at24 2-0057: supply vcc not found, using dummy regulator [ 1.031670] at24 2-0057: 256 byte 24c02 EEPROM, writable, 1 bytes/write [ 1.038657] omap_i2c 20030000.i2c: bus 2 rev0.12 at 400 kHz [ 1.044701] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created [ 1.053961] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created [ 1.063578] ti-bcdma 485c0100.dma-controller: Number of rings: 82 [ 1.071847] ti-bcdma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18) [ 1.082978] ti-pktdma 485c0000.dma-controller: Number of rings: 150 [ 1.093264] ti-pktdma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15) [ 1.103604] printk: console [ttyS2] disabled [ 1.108052] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 229, base_baud = 3000000) is a 8250 [ 1.116955] printk: console [ttyS2] enabled [ 1.116955] printk: console [ttyS2] enabled [ 1.125417] printk: bootconsole [ns16550a0] disabled [ 1.125417] printk: bootconsole [ns16550a0] disabled [ 1.136482] 2850000.serial: ttyS1 at MMIO 0x2850000 (irq = 230, base_baud = 3000000) is a 8250 [ 1.147281] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0 [ 1.175644] Console: switching to colour frame buffer device 100x30 [ 1.196550] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device [ 1.206146] m_can_platform 20701000.can: m_can device registered (irq=232, version=32) [ 1.215298] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode [ 1.259535] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000 [ 1.268419] hwmon hwmon0: temp1_input not attached to any thermal zone [ 1.275289] mdio_bus 8000f00.mdio: MDIO device at address 1 is missing. [ 1.281917] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver Marvell 88E1510 [ 1.290477] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000000 [ 1.303763] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19 [ 1.310676] am65-cpsw-nuss 8000000.ethernet: Use random MAC address [ 1.316957] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5 [ 1.324095] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512 [ 1.330822] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 [ 1.342589] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 1.348159] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 1.355971] xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports [ 1.361988] xhci-hcd xhci-hcd.0.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010 [ 1.371442] xhci-hcd xhci-hcd.0.auto: irq 235, io mem 0x31000000 [ 1.377726] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01 [ 1.386004] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.393253] usb usb1: Product: xHCI Host Controller [ 1.398128] usb usb1: Manufacturer: Linux 6.1.0-v0.07 xhci-hcd [ 1.403955] usb usb1: SerialNumber: xhci-hcd.0.auto [ 1.409364] hub 1-0:1.0: USB hub found [ 1.413141] hub 1-0:1.0: 1 port detected [ 1.418960] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 1.424514] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 1.432304] xhci-hcd xhci-hcd.1.auto: USB3 root hub has no ports [ 1.438313] xhci-hcd xhci-hcd.1.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010 [ 1.447769] xhci-hcd xhci-hcd.1.auto: irq 236, io mem 0x31100000 [ 1.454037] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01 [ 1.462297] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.469521] usb usb2: Product: xHCI Host Controller [ 1.474398] usb usb2: Manufacturer: Linux 6.1.0-v0.07 xhci-hcd [ 1.480223] usb usb2: SerialNumber: xhci-hcd.1.auto [ 1.485598] hub 2-0:1.0: USB hub found [ 1.489372] hub 2-0:1.0: 1 port detected [ 1.495233] mmc0: CQHCI version 5.10 [ 1.495688] mmc1: CQHCI version 5.10 [ 1.500417] st_lsm6dsx_i2c 2-006b: supply vdd not found, using dummy regulator [ 1.509774] st_lsm6dsx_i2c 2-006b: supply vddio not found, using dummy regulator [ 1.540469] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit [ 1.540502] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit [ 1.666614] mmc1: new high speed SD card at address 0001 [ 1.672745] mmcblk1: mmc1:0001 AGNB0 473 MiB [ 1.679553] mmcblk1: p1 p2 [ 1.700380] mmc0: Command Queue Engine enabled [ 1.704857] mmc0: new HS200 MMC card at address 0001 [ 1.710531] mmcblk0: mmc0:0001 00010G 9.60 GiB [ 1.716743] mmcblk0: p1 p2 [ 1.720245] mmcblk0boot0: mmc0:0001 00010G 31.5 MiB [ 1.726393] mmcblk0boot1: mmc0:0001 00010G 31.5 MiB [ 1.732587] mmcblk0rpmb: mmc0:0001 00010G 4.00 MiB, chardev (244:0) [ 2.045527] st_lsm6dsx_i2c 2-006b: mounting matrix not found: using identity... [ 2.055937] debugfs: Directory 'pd:186' with parent 'pm_genpd' already present! [ 2.065451] ti-sci-clk 44043000.system-controller:clock-controller: is_prepared failed for dev=13, clk=7, ret=-19 [ 2.086903] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none. [ 2.095551] VFS: Mounted root (ext4 filesystem) on device 179:2. [ 2.102206] devtmpfs: mounted [ 2.106483] Freeing unused kernel memory: 1920K [ 2.111143] Run /sbin/init as init process [ 2.252108] EXT4-fs (mmcblk1p2): re-mounted. Quota mode: none. Starting syslogd: OK Starting klogd: OK Running sysctl: OK [ 2.385946] rtc-pcf85063 2-0051: registered as rtc0 [ 2.391176] rtc-pcf85063 2-0051: setting system clock to 2000-11-19T23:00:00 UTC (974674800) [ 3.547514] random: crng init done Saving 256 bits of creditable seed for next boot Starting network: [ 5.556567] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Marvell 88E1510] (irq=POLL) [ 5.566355] am65-cpsw-nuss 8000000.ethernet: Adding vlan 100 to vlan filter [ 5.574280] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode [ 5.585651] 8021q: adding VLAN 0 to HW filter on device eth0 [ 5.644889] br0: port 1(eth0) entered blocking state [ 5.649901] br0: port 1(eth0) entered disabled state [ 5.656578] device eth0 entered promiscuous mode [ 5.661290] am65-cpsw-nuss 8000000.ethernet: Adding vlan 1 to vlan filter RTNETLINK answers: No such device [ 5.721311] br0: port 1(eth0) entered blocking state [ 5.726359] br0: port 1(eth0) entered forwarding state FAIL ssh-keygen: generating new host keys: RSA [ 6.395640] br0: port 1(eth0) entered disabled state ECDSA ED25519 Starting sshd: OK