Globalscale MOCHAbin
Supported Versions
Hardware Highlights
Installation
OEM installation using the TFTP method
- Copy dtb from build_dir to bin/ and run tftpserver there:
$ cp ./build_dir/target-aarch64_cortex-a72_musl/linux-mvebu_cortexa72/image-armada-7040-mochabin.dtb bin/targets/mvebu/cortexa72/ $ in.tftpd -L -s bin/targets/mvebu/cortexa72/
- Connect to the device UART via microUSB port and power on the device.
- Power on the device and hit any key to stop the autoboot.
- Set serverip (host IP) and ipaddr (any free IP address on the same subnet), e.g:
- Host:
$ setenv serverip 192.168.1.10
- Device:
$ setenv ipaddr 192.168.1.15
- Set the ethernet device (Example for the 1G WAN):
$ setenv ethact mvpp2-2
- Ping server to confirm network is working:
$ ping $serverip Using mvpp2-2 device host 192.168.1.15 is alive
- Tftpboot the firmware:
$ tftpboot $kernel_addr_r openwrt-mvebu-cortexa72-globalscale_mochabin-initramfs-kernel.bin $ tftpboot $fdt_addr_r image-armada-7040-mochabin.dtb
- Boot the image:
$ booti $kernel_addr_r - $fdt_addr_r
- Once the initramfs is booted, transfer openwrt-mvebu-cortexa72-globalscale_mochabin-squashfs-sdcard.img.gz to /tmp dir on the device.
- Gunzip and dd the image:
$ gunzip /tmp/openwrt-mvebu-cortexa72-globalscale_mochabin-squashfs-sdcard.img.gz $ dd if=/tmp/openwrt-mvebu-cortexa72-globalscale_mochabin-squashfs-sdcard.img of=/dev/mmcblk0 && sync
- Reboot the device.
- Hit any key to stop the autoboot.
- Reset U-boot env and set the bootcmd:
$ env default -a $ setenv bootcmd 'load mmc 0 ${loadaddr} boot.scr && source ${loadaddr}' - Optionally I would advise to edit the console env variable to remove earlycon as that causes the kernel to never use the driver for the serial console. Earlycon should be used only for debugging before the kernel can configure the console and will otherwise cause various issues with the console.
$ setenv console 'console=ttyS0,115200'
- Save and reset
$ saveenv $ reset
- OpenWrt should boot from eMMC now.
Upgrading OpenWrt
These are generic instructions. Update with your router's specifics.
LuCI Web Upgrade Process
- Browse to
http://192.168.1.1/cgi-bin/luci/mini/system/upgrade/LuCI Upgrade URL - Upload image file for sysupgrade to LuCI
- Wait for reboot
Terminal Upgrade Process
If you don't have a GUI (LuCI) available, you can alternatively upgrade via the command line. There are two command line methods for upgrading:
sysupgrademtd
Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.
sysupgrade
- Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc sysupgrade /tmp/xxx.abc
mtd
If sysupgrade does not support this router, use mtd.
- Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc mtd write /tmp/xxx.abc linux && reboot
Using the internal Wifi6
The Qualcomm (QCA6391) is not yet supported (v22.03.04). To enable Wifi6, if the Qualcomm adapter is built in, the latest snapshot have to be used (https://downloads.openwrt.org/snapshots/targets/mvebu/cortexa72/openwrt-mvebu-cortexa72-globalscale_mochabin-squashfs-sdcard.img.gz, 06/11/23 when writing).
After booting the device, the following commands via SSH need to be executed:
opkg update opkg install kmod-ath11k kmod-ath11k-pci ath11k-firmware-qca6390
Expanding the eMMC partition
Check your partitions, especially for partition /dev/loop0 having filesystem type f2fs:
root@OpenWrt:~# df -Th Filesystem Type Size Used Available Use% Mounted on /dev/root squashfs 3.5M 3.5M 0 100% /rom tmpfs tmpfs 3.9G 1.1M 3.9G 0% /tmp /dev/loop0 f2fs 98.8M 61.5M 37.3M 62% /overlay overlayfs:/overlay overlay 98.8M 61.5M 37.3M 62% / tmpfs tmpfs 512.0K 0 512.0K 0% /dev
Install the following packages:
opkg update opkg install losetup e2fsprogs resize2fs block-mount kmod-fs-f2fs f2fs-tools cfdisk kmod-fs-ext4 parted rsync
Confirm, that the device /dev/loop0 is located on the 2nd partition of mmcblk0 by checking the back file column:
root@OpenWrt:~# losetup NAME SIZELIMIT OFFSET AUTOCLEAR RO BACK-FILE DIO LOG-SEC /dev/loop0 0 3604480 1 0 /mmcblk0p2 0 512
Resize the partition mmcblk0p2 by using cfdsik:
root@OpenWrt:~# cfdisk /dev/mmcblk0
Steps for resizing:
- Chose the 2nd partition,
- Move the cursor to resize,
- Enter the final size you want, default is 14.7GB.
- Confirm the change by the menu entry “Write”.
Set variables, that are used later:
LOOP="$(losetup -n -O NAME | sort | sed -n -e "1p")"
ROOT="$(losetup -n -O BACK-FILE ${LOOP} | sed -e "s|^|/dev|")"
OFFS="$(losetup -n -O OFFSET ${LOOP})"
Check the variables withe echo command:
root@OpenWrt:~# echo ${OFFS} ${LOOP} ${ROOT}
3604480 /dev/loop0 /dev/mmcblk0p2
The loop device setup:
LOOP="$(losetup -f)"
losetup -o ${OFFS} ${LOOP} ${ROOT}
Finalize the partition resize:
fsck.f2fs -f ${LOOP} #and go for default options if given any
mount ${LOOP} /mnt
umount ${LOOP}
resize.f2fs ${LOOP}
reboot
After reboot, you can confirm the full partition size on SSH and LuCi:
root@OpenWrt:~# df -Th Filesystem Type Size Used Available Use% Mounted on /dev/root squashfs 3.5M 3.5M 0 100% /rom tmpfs tmpfs 3.9G 240.0K 3.9G 0% /tmp /dev/loop0 f2fs 14.7G 609.8M 14.1G 4% /overlay overlayfs:/overlay overlay 14.7G 609.8M 14.1G 4% / tmpfs tmpfs 512.0K 0 512.0K 0% /dev
Debricking
Failsafe mode
Basic configuration
→ Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.
Specific Configuration
Please fill in real values for this device, then remove the EXAMPLEs
Network interfaces
The default network configuration is:
| Interface Name | Description | Default configuration |
|---|---|---|
| br-lan | EXAMPLE LAN & WiFi | EXAMPLE 192.168.1.1/24 |
| vlan0 (eth0.0) | EXAMPLE LAN ports (1 to 4) | EXAMPLE None |
| vlan1 (eth0.1) | EXAMPLE WAN port | EXAMPLE DHCP |
| wl0 | EXAMPLE WiFi | EXAMPLE Disabled |
Switch Ports (for VLANs)
Please fill in real values for this device, then remove the EXAMPLEs
Numbers 0-3 are Ports 1-4 as labeled on the unit, number 4 is the Internet (WAN) on the unit, 5 is the internal connection to the router itself. Don't be fooled: Port 1 on the unit is number 3 when configuring VLANs. vlan0 = eth0.0, vlan1 = eth0.1 and so on.
| Port | Switch port |
|---|---|
| Internet (WAN) | EXAMPLE 4 |
| LAN 1 | EXAMPLE 3 |
| LAN 2 | EXAMPLE 2 |
| LAN 3 | EXAMPLE 1 |
| LAN 4 | EXAMPLE 0 |
Buttons
→ hardware.button on howto use and configure the hardware button(s). Here, we merely name the buttons, so we can use them in the above Howto.
Please fill in real values for this device, then remove the EXAMPLEs
The Globalscale MOCHAbin has the following buttons:
| BUTTON | Event |
|---|---|
| EXAMPLE Reset | reset |
| EXAMPLE Secure Easy Setup | ses |
| EXAMPLE No buttons at all. | - |
Hardware
Info
- This table is automatically generated, once the correct filters for Brand and Model are set.
- If you see “Nothing.” instead of a table, please edit this section and adjust the filters with the proper Brand and Model. Just try, it's easy.
- If you still don't see a table here, or a table filled with '¿': Is there already a Techdata page available for Globalscale MOCHAbin ? If not: Create one.
- If you see a table with the desired device data, everything is OK and you can delete this text and the
<WRAP>that encloses it. - If it still doesn't work: Don't panic, calm down, take a deep breath and contact a wiki admin (tmomas) for help.
Photos
Opening the case
Serial
→ port.serial general information about the serial port, serial port cable, etc.
How to connect to the Serial Port of this specific device:
- Connect the micro USB port to the computer. (The UART adapter is integrated on the board)
| Serial connection parameters for Globalscale MOCHAbin | 115200, 8N1 |
|---|
JTAG
→ port.jtag general information about the JTAG port, JTAG cable, etc.
Bootloader mods
Hardware mods
None so far.
Bootlogs
OEM bootlog
BootROM - 2.03 Starting CP-0 IOROM 1.07 Booting from SPI NOR flash 1 (0x32) Found valid image at boot postion 0x000 lmv_ddr: mv_ddr-devel-18.12.0-g41927ee (Sep 05 2022 - 14:40:38) mv_ddr: completed successfully llBL2: Initiating SCP_BL2 transfer to SCP ll
U-Boot 2018.03-devel-18.12.3-gb794de0054 (Sep 05 2022 - 14:38:22 +0800)
Model: Marvell Armada 7040 Mochabin development board SoC: Armada7040-B0; AP806-B0; CP115-A0 Clock: CPU 1400 [MHz]
DDR 800 [MHz]
FABRIC 800 [MHz]
MSS 200 [MHz]
LLC Enabled (Exclusive Mode) DRAM: 8 GiB Bus spi@700680 CS0 configured for direct access 00000000f9000000:0x1000000 SF: Detected w25q32bv with page size 256 Bytes, erase size 4 KiB, total 4 MiB Comphy chip #0: Comphy-0: SGMII1 3.125 Gbps Comphy-1: USB3_HOST0 Comphy-2: SATA0 Comphy-3: SATA1 Comphy-4: SFI0 10.3125 Gbps Comphy-5: PEX2 UTMI PHY 0 initialized to USB Host0 UTMI PHY 1 initialized to USB Host1 SATA link 0 timeout. Target spinup took 0 ms. AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl SATA mode flags: 64bit ncq led only pmp fbss pio slum part sxs PCIE-0: Link down MMC: sdhci@6e0000: 0 Loading Environment from SPI Flash... OK Model: Marvell Armada 7040 Mochabin development board Net: eth0: mvpp2-0 [PRIME], eth1: mvpp2-1, eth2: mvpp2-2 Hit any key to stop autoboot: 0
OpenWrt bootlog
BootROM - 2.03 Starting CP-0 IOROM 1.07 Booting from SPI NOR flash 1 (0x32) Found valid image at boot postion 0x000 lmv_ddr: mv_ddr-devel-18.12.0-g41927ee (Sep 05 2022 - 14:39:46) mv_ddr: completed successfully BL2: Initiating SCP_BL2 transfer to SCP U-Boot 2018.03-devel-18.12.3-gb794de0054 (Sep 05 2022 - 14:38:22 +0800) Model: Marvell Armada 7040 Mochabin development board SoC: Armada7040-B0; AP806-B0; CP115-A0 Clock: CPU 1400 [MHz] DDR 800 [MHz] FABRIC 800 [MHz] MSS 200 [MHz] LLC Enabled (Exclusive Mode) DRAM: 4 GiB Bus spi@700680 CS0 configured for direct access 00000000f9000000:0x1000000 SF: Detected w25q32bv with page size 256 Bytes, erase size 4 KiB, total 4 MiB Comphy chip #0: Comphy-0: SGMII1 3.125 Gbps Comphy-1: USB3_HOST0 Comphy-2: SATA0 Comphy-3: SATA1 Comphy-4: SFI0 10.3125 Gbps Comphy-5: PEX2 UTMI PHY 0 initialized to USB Host0 UTMI PHY 1 initialized to USB Host1 SATA link 0 timeout. SATA link 1 timeout. AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl SATA mode flags: 64bit ncq led only pmp fbss pio slum part sxs PCIE-0: Link up (Gen2-x1, Bus0) MMC: sdhci@6e0000: 0 Loading Environment from SPI Flash... OK Model: Marvell Armada 7040 Mochabin development board Net: eth0: mvpp2-0 [PRIME], eth1: mvpp2-1, eth2: mvpp2-2 Hit any key to stop autoboot: 0 576 bytes read in 9 ms (62.5 KiB/s) ## Executing script at 06000000 switch to partitions #0, OK mmc0(part 0) is current device 25059 bytes read in 12 ms (2 MiB/s) 12697608 bytes read in 932 ms (13 MiB/s) ## Flattened Device Tree blob at 06f00000 Booting using the fdt blob at 0x6f00000 Using Device Tree in place at 0000000006f00000, end 0000000006f091e2 Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd081] [ 0.000000] Linux version 6.6.119 (builder@buildhost) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 13.3.0 r29087-d9c5716d1d) 13.3.0, GNU ld (GNU Binutils) 2.42) #0 SMP Wed Dec 17 21:08:22 2025 [ 0.000000] Machine model: Globalscale MOCHAbin [ 0.000000] OF: reserved mem: 0x0000000004000000..0x00000000041fffff (2048 KiB) nomap non-reusable psci-area@4000000 [ 0.000000] OF: reserved mem: 0x0000000004400000..0x00000000053fffff (16384 KiB) nomap non-reusable tee@4400000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000000000000-0x00000000ffffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal [mem 0x0000000100000000-0x000000013fffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000003ffffff] [ 0.000000] node 0: [mem 0x0000000004000000-0x00000000041fffff] [ 0.000000] node 0: [mem 0x0000000004200000-0x00000000043fffff] [ 0.000000] node 0: [mem 0x0000000004400000-0x00000000053fffff] [ 0.000000] node 0: [mem 0x0000000005400000-0x00000000bfffffff] [ 0.000000] node 0: [mem 0x0000000100000000-0x000000013fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000013fffffff] [ 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: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.1 [ 0.000000] percpu: Embedded 17 pages/cpu s31208 r8192 d30232 u69632 [ 0.000000] Detected PIPT I-cache on CPU0 [ 0.000000] CPU features: detected: Spectre-v2 [ 0.000000] CPU features: detected: Spectre-BHB [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: root=PARTUUID=90e2863c-02 rw rootwait console=ttyS0,115200 [ 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] Built 1 zonelists, mobility grouping on. Total pages: 1032192 [ 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 0x00000000bc000000-0x00000000c0000000] (64MB) [ 0.000000] Memory: 4024660K/4194304K available (9280K kernel code, 944K rwdata, 1616K rodata, 448K init, 300K bss, 169644K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GIC: Adjusting CPU interface base to 0x00000000f022f000 [ 0.000000] Root IRQ handler: 0xffffffc080010000 [ 0.000000] GIC: Using split EOI/Deactivate mode [ 0.000000] GICv2m: DT overriding V2M MSI_TYPER (base:160, num:32) [ 0.000000] GICv2m: range[mem 0xf0280000-0xf0280fff], SPI[160:191] [ 0.000000] GICv2m: DT overriding V2M MSI_TYPER (base:192, num:32) [ 0.000000] GICv2m: range[mem 0xf0290000-0xf0290fff], SPI[192:223] [ 0.000000] GICv2m: DT overriding V2M MSI_TYPER (base:224, num:32) [ 0.000000] GICv2m: range[mem 0xf02a0000-0xf02a0fff], SPI[224:255] [ 0.000000] GICv2m: DT overriding V2M MSI_TYPER (base:256, num:32) [ 0.000000] GICv2m: range[mem 0xf02b0000-0xf02b0fff], SPI[256:287] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] arch_timer: cp15 timer(s) running at 25.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x5c40939b5, max_idle_ns: 440795202646 ns [ 0.000000] sched_clock: 56 bits at 25MHz, resolution 40ns, wraps every 4398046511100ns [ 0.000094] Calibrating delay loop (skipped), value calculated using timer frequency.. 50.00 BogoMIPS (lpj=250000) [ 0.000101] pid_max: default: 32768 minimum: 301 [ 0.002309] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.002330] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.004330] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4. [ 0.004441] rcu: Hierarchical SRCU implementation. [ 0.004443] rcu: Max phase no-delay instances is 1000. [ 0.004747] smp: Bringing up secondary CPUs ... [ 0.005137] Detected PIPT I-cache on CPU1 [ 0.005194] CPU1: Booted secondary processor 0x0000000001 [0x410fd081] [ 0.005609] Detected PIPT I-cache on CPU2 [ 0.005659] CPU2: Booted secondary processor 0x0000000100 [0x410fd081] [ 0.006072] Detected PIPT I-cache on CPU3 [ 0.006108] CPU3: Booted secondary processor 0x0000000101 [0x410fd081] [ 0.006154] smp: Brought up 1 node, 4 CPUs [ 0.006160] SMP: Total of 4 processors activated. [ 0.006163] CPU features: detected: 32-bit EL0 Support [ 0.006166] CPU features: detected: CRC32 instructions [ 0.006207] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.006211] CPU: All CPU(s) started at EL2 [ 0.006213] alternatives: applying system-wide alternatives [ 0.009927] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.009937] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.010822] pinctrl core: initialized pinctrl subsystem [ 0.011718] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.012049] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations [ 0.012157] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.012264] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.012449] thermal_sys: Registered thermal governor 'step_wise' [ 0.012482] cpuidle: using governor ladder [ 0.012528] ASID allocator initialised with 65536 entries [ 0.013612] /ap806: Fixed dependency cycle(s) with /ap806/config-space@f0000000/interrupt-controller@210000 [ 0.013624] /ap806/config-space@f0000000/interrupt-controller@210000: Fixed dependency cycle(s) with /ap806/config-space@f0000000/interrupt-controller@210000 [ 0.013716] /ap806/config-space@f0000000/interrupt-controller@210000: Fixed dependency cycle(s) with /ap806/config-space@f0000000/interrupt-controller@210000 [ 0.016194] /cp0: Fixed dependency cycle(s) with /cp0/config-space@f2000000/interrupt-controller@1e0000/interrupt-controller@10 [ 0.018856] Modules: 29584 pages in range for non-PLT usage [ 0.018860] Modules: 521104 pages in range for PLT usage [ 0.019503] cryptd: max_cpu_qlen set to 1000 [ 0.020460] SCSI subsystem initialized [ 0.020641] usbcore: registered new interface driver usbfs [ 0.020658] usbcore: registered new interface driver hub [ 0.020680] usbcore: registered new device driver usb [ 0.021323] clocksource: Switched to clocksource arch_sys_counter [ 0.023125] NET: Registered PF_INET protocol family [ 0.023300] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.025887] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) [ 0.025913] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.025921] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.026075] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear) [ 0.026685] TCP: Hash tables configured (established 32768 bind 32768) [ 0.027014] MPTCP token hash table entries: 4096 (order: 5, 98304 bytes, linear) [ 0.027125] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.027184] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.027415] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.027438] PCI: CLS 0 bytes, default 64 [ 0.028801] workingset: timestamp_bits=46 max_order=20 bucket_order=0 [ 0.032815] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.032818] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.035707] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250) [ 0.036815] /cp0: Fixed dependency cycle(s) with /cp0/config-space@f2000000/interrupt-controller@1e0000/interrupt-controller@10 [ 0.039216] armada-ap806-pinctrl f06f4000.system-controller:pinctrl: registered pinctrl driver [ 0.039711] armada-cp110-pinctrl f2440000.system-controller:pinctrl: registered pinctrl driver [ 0.040287] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.040604] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.040853] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 0.042662] mv_xor_v2 f0400000.xor: Marvell Version 2 XOR driver [ 0.043039] mv_xor_v2 f0420000.xor: Marvell Version 2 XOR driver [ 0.043417] mv_xor_v2 f0440000.xor: Marvell Version 2 XOR driver [ 0.043792] mv_xor_v2 f0460000.xor: Marvell Version 2 XOR driver [ 0.044239] mv_xor_v2 f26a0000.xor: Marvell Version 2 XOR driver [ 0.044628] mv_xor_v2 f26c0000.xor: Marvell Version 2 XOR driver [ 0.044831] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled [ 0.046515] printk: console [ttyS0] disabled [ 0.066766] f0512000.serial: ttyS0 at MMIO 0xf0512000 (irq = 30, base_baud = 12500000) is a 16550A [ 0.066791] printk: console [ttyS0] enabled [ 0.951254] f2702000.serial: ttyS1 at MMIO 0xf2702000 (irq = 31, base_baud = 15625000) is a 16550A [ 0.960930] omap_rng f2760000.trng: Random Number Generator ver. 203b34c [ 0.961057] random: crng init done [ 0.973016] loop: module loaded [ 0.977140] ahci f2540000.sata: supply ahci not found, using dummy regulator [ 0.984324] ahci f2540000.sata: supply phy not found, using dummy regulator [ 0.991504] platform f2540000.sata:sata-port@0: supply target not found, using dummy regulator [ 1.001998] spi-nor spi2.0: w25q32 (4096 Kbytes) [ 1.006795] 3 fixed-partitions partitions found on MTD device spi2.0 [ 1.013217] Creating 3 MTD partitions on "spi2.0": [ 1.018031] 0x000000000000-0x0000003e0000 : "u-boot" [ 1.023350] 0x0000003e0000-0x0000003f0000 : "hw-info" [ 1.028685] 0x0000003f0000-0x000000400000 : "u-boot-env" [ 1.037623] orion-mdio f212a200.mdio: Cannot register MDIO bus (-517) [ 1.105673] mvpp2 f2000000.ethernet: using 8 per-cpu buffers [ 1.120464] xhci-hcd f2510000.usb: xHCI Host Controller [ 1.125745] xhci-hcd f2510000.usb: new USB bus registered, assigned bus number 1 [ 1.133277] xhci-hcd f2510000.usb: hcc params 0x0a000990 hci version 0x100 quirks 0x0000000000000010 [ 1.142493] xhci-hcd f2510000.usb: irq 34, io mem 0xf2510000 [ 1.148265] xhci-hcd f2510000.usb: xHCI Host Controller [ 1.153547] xhci-hcd f2510000.usb: new USB bus registered, assigned bus number 2 [ 1.160977] xhci-hcd f2510000.usb: Host supports USB 3.0 SuperSpeed [ 1.167571] hub 1-0:1.0: USB hub found [ 1.171417] hub 1-0:1.0: 1 port detected [ 1.175573] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 1.183935] hub 2-0:1.0: USB hub found [ 1.187748] hub 2-0:1.0: 1 port detected [ 1.191973] usbcore: registered new interface driver usb-storage [ 1.198268] armada38x-rtc f2284000.rtc: registered as rtc0 [ 1.203805] armada38x-rtc f2284000.rtc: setting system clock to 2026-03-02T19:48:27 UTC (1772480907) [ 1.213093] i2c_dev: i2c /dev entries driver [ 1.232030] sbsa-gwdt f0610000.watchdog: Initialized with 10s timeout @ 25000000 Hz, action=0. [ 1.241468] sdhci: Secure Digital Host Controller Interface driver [ 1.247689] sdhci: Copyright(c) Pierre Ossman [ 1.252177] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.258623] NET: Registered PF_INET6 protocol family [ 1.264831] Segment Routing with IPv6 [ 1.268526] In-situ OAM (IOAM) with IPv6 [ 1.272514] NET: Registered PF_PACKET protocol family [ 1.277604] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 1.288974] mmc0: SDHCI controller on f06e0000.mmc [f06e0000.mmc] using ADMA 64-bit [ 1.290826] 8021q: 802.1Q VLAN Support v1.8 [ 1.312468] gpio gpiochip0: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 1.321712] gpio gpiochip1: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 1.330958] gpio gpiochip2: Static allocation of GPIO base is deprecated, use dynamic allocation. [ 1.340374] armada8k-pcie f2640000.pcie: host bridge /cp0/pcie@f2640000 ranges: [ 1.347769] armada8k-pcie f2640000.pcie: MEM 0x00c0000000..0x00c7ffffff -> 0x00c0000000 [ 1.356309] armada8k-pcie f2640000.pcie: iATU: unroll F, 8 ob, 8 ib, align 64K, limit 4G [ 1.364491] armada8k-pcie f2640000.pcie: PCIe Gen.1 x1 link up [ 1.370565] armada8k-pcie f2640000.pcie: PCI host bridge to bus 0000:00 [ 1.371385] mmc0: new high speed MMC card at address 0001 [ 1.377215] pci_bus 0000:00: root bus resource [bus 00-ff] [ 1.383073] mmcblk0: mmc0:0001 DF4016 14.7 GiB [ 1.388138] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xc7ffffff] [ 1.393773] mmcblk0: p1 p2 [ 1.399526] pci 0000:00:00.0: [11ab:0110] type 01 class 0x060400 [ 1.402651] mmcblk0boot0: mmc0:0001 DF4016 4.00 MiB [ 1.408351] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x000fffff] [ 1.413880] mmcblk0boot1: mmc0:0001 DF4016 4.00 MiB [ 1.419597] pci 0000:00:00.0: supports D1 D2 [ 1.424626] mmcblk0rpmb: mmc0:0001 DF4016 4.00 MiB, chardev (247:0) [ 1.428734] pci 0000:00:00.0: PME# supported from D0 D1 D3hot [ 1.441809] pci 0000:01:00.0: [1b4b:2b43] type 00 class 0x020000 [ 1.448008] pci 0000:01:00.0: reg 0x10: [mem 0xf8000000-0xf80fffff 64bit pref] [ 1.455373] pci 0000:01:00.0: reg 0x18: [mem 0xf8100000-0xf811ffff 64bit pref] [ 1.462735] pci 0000:01:00.0: reg 0x20: [mem 0xf8120000-0xf8123fff 64bit pref] [ 1.470600] pci 0000:01:00.0: supports D1 [ 1.474630] pci 0000:01:00.0: PME# supported from D0 D1 D3hot D3cold [ 1.481301] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link) [ 1.481363] usb 1-1: new full-speed USB device number 2 using xhci-hcd [ 1.496795] pci 0000:01:00.1: [1b4b:2b44] type 00 class 0x020000 [ 1.509013] pci 0000:01:00.1: reg 0x10: [mem 0xf8200000-0xf82fffff 64bit pref] [ 1.516376] pci 0000:01:00.1: reg 0x18: [mem 0xf8300000-0xf831ffff 64bit] [ 1.523303] pci 0000:01:00.1: reg 0x20: [mem 0xf8320000-0xf8323fff 64bit pref] [ 1.531100] pci 0000:01:00.1: supports D1 [ 1.535139] pci 0000:01:00.1: PME# supported from D0 D1 D3hot D3cold [ 1.542084] pci 0000:00:00.0: BAR 0: assigned [mem 0xc0000000-0xc00fffff] [ 1.548905] pci 0000:00:00.0: BAR 8: assigned [mem 0xc0100000-0xc01fffff] [ 1.555730] pci 0000:00:00.0: BAR 9: assigned [mem 0xc0200000-0xc04fffff pref] [ 1.562991] pci 0000:01:00.0: BAR 0: assigned [mem 0xc0200000-0xc02fffff 64bit pref] [ 1.570835] pci 0000:01:00.1: BAR 0: assigned [mem 0xc0300000-0xc03fffff 64bit pref] [ 1.578683] pci 0000:01:00.0: BAR 2: assigned [mem 0xc0400000-0xc041ffff 64bit pref] [ 1.586532] pci 0000:01:00.1: BAR 2: assigned [mem 0xc0100000-0xc011ffff 64bit] [ 1.593944] pci 0000:01:00.0: BAR 4: assigned [mem 0xc0420000-0xc0423fff 64bit pref] [ 1.601792] pci 0000:01:00.1: BAR 4: assigned [mem 0xc0424000-0xc0427fff 64bit pref] [ 1.609636] pci 0000:00:00.0: PCI bridge to [bus 01-ff] [ 1.614891] pci 0000:00:00.0: bridge window [mem 0xc0100000-0xc01fffff] [ 1.621714] pci 0000:00:00.0: bridge window [mem 0xc0200000-0xc04fffff pref] [ 1.629387] pcieport 0000:00:00.0: AER: enabled with IRQ 40 [ 1.635424] ahci f2540000.sata: supply ahci not found, using dummy regulator [ 1.642601] ahci f2540000.sata: supply phy not found, using dummy regulator [ 1.649657] platform f2540000.sata:sata-port@0: supply target not found, using dummy regulator [ 1.658606] platform f2540000.sata:sata-port@1: supply target not found, using dummy regulator [ 1.669542] ahci f2540000.sata: masking port_map 0x3 -> 0x3 [ 1.675201] ahci f2540000.sata: AHCI 0001.0000 32 slots 2 ports 6 Gbps 0x3 impl platform mode [ 1.683776] ahci f2540000.sata: flags: 64bit ncq sntf led only pmp fbs pio slum part sxs [ 1.692990] scsi host0: ahci [ 1.696484] scsi host1: ahci [ 1.699543] ata1: SATA max UDMA/133 mmio [mem 0xf2540000-0xf256ffff] port 0x100 irq 41 [ 1.707531] ata2: SATA max UDMA/133 mmio [mem 0xf2540000-0xf256ffff] port 0x180 irq 41 [ 1.717003] hwmon hwmon0: temp1_input not attached to any thermal zone [ 1.741444] mv88e6085 f212a200.mdio-mii:03: switch 0x3400 detected: Marvell 88E6141, revision 0 [ 1.862554] mvpp2 f2000000.ethernet: using 8 per-cpu buffers [ 1.892230] mvpp2 f2000000.ethernet eth0: Using firmware node mac address f0:ad:4e:28:a0:03 [ 1.903773] mvpp2 f2000000.ethernet eth1: Using firmware node mac address f0:ad:4e:28:a0:04 [ 1.914062] mvpp2 f2000000.ethernet eth2: Using firmware node mac address f0:ad:4e:28:a0:05 [ 2.029467] xhci-hcd f2500000.usb: xHCI Host Controller [ 2.034753] xhci-hcd f2500000.usb: new USB bus registered, assigned bus number 3 [ 2.042266] xhci-hcd f2500000.usb: hcc params 0x0a000990 hci version 0x100 quirks 0x0000000000000010 [ 2.042799] ata2: SATA link down (SStatus 0 SControl 300) [ 2.051500] xhci-hcd f2500000.usb: irq 33, io mem 0xf2500000 [ 2.056912] ata1: SATA link down (SStatus 0 SControl 300) [ 2.062707] xhci-hcd f2500000.usb: xHCI Host Controller [ 2.073281] xhci-hcd f2500000.usb: new USB bus registered, assigned bus number 4 [ 2.080722] xhci-hcd f2500000.usb: Host supports USB 3.0 SuperSpeed [ 2.087433] hub 3-0:1.0: USB hub found [ 2.091252] hub 3-0:1.0: 1 port detected [ 2.095404] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 2.103758] hub 4-0:1.0: USB hub found [ 2.107538] hub 4-0:1.0: 1 port detected [ 2.111826] pca953x 0-0039: supply vcc not found, using dummy regulator [ 2.118529] pca953x 0-0039: using no AI [ 2.131676] sfp sfp-eth0: Host maximum power 1.0W [ 2.139497] sfp sfp-eth2: Host maximum power 1.0W [ 2.161460] mv88e6085 f212a200.mdio-mii:03: switch 0x3400 detected: Marvell 88E6141, revision 0 [ 2.218127] hwmon hwmon1: temp1_input not attached to any thermal zone [ 2.230764] hwmon hwmon2: temp1_input not attached to any thermal zone [ 2.242947] hwmon hwmon3: temp1_input not attached to any thermal zone [ 2.254850] hwmon hwmon4: temp1_input not attached to any thermal zone [ 2.401358] usb 3-1: new high-speed USB device number 2 using xhci-hcd [ 2.519885] mv88e6085 f212a200.mdio-mii:03: configuring for inband/2500base-x link mode [ 2.602931] hub 3-1:1.0: USB hub found [ 2.606895] hub 3-1:1.0: 4 ports detected [ 2.622442] mv88e6085 f212a200.mdio-mii:03 lan0 (uninitialized): PHY [!cp0!config-space@f2000000!mdio@12a200!switch@3!mdio:11] driver [Marvell 88E6341 Family] (irq=76) [ 2.638461] mvpp2 f2000000.ethernet: all ports have a low MTU, switching to per-cpu buffers [ 2.751420] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd [ 2.752752] mvpp2 f2000000.ethernet: using 8 per-cpu buffers [ 2.782665] hub 4-1:1.0: USB hub found [ 2.786622] hub 4-1:1.0: 4 ports detected [ 2.862439] mv88e6085 f212a200.mdio-mii:03 lan1 (uninitialized): PHY [!cp0!config-space@f2000000!mdio@12a200!switch@3!mdio:12] driver [Marvell 88E6341 Family] (irq=77) [ 2.962470] mv88e6085 f212a200.mdio-mii:03 lan2 (uninitialized): PHY [!cp0!config-space@f2000000!mdio@12a200!switch@3!mdio:13] driver [Marvell 88E6341 Family] (irq=78) [ 3.062437] mv88e6085 f212a200.mdio-mii:03 lan3 (uninitialized): PHY [!cp0!config-space@f2000000!mdio@12a200!switch@3!mdio:14] driver [Marvell 88E6341 Family] (irq=79) [ 3.079803] DSA: tree 0 setup [ 3.083372] clk: Disabling unused clocks [ 3.095899] VFS: Mounted root (squashfs filesystem) readonly on device 179:2. [ 3.103313] Freeing unused kernel memory: 448K [ 3.107907] Run /sbin/init as init process [ 3.277351] init: Console is alive [ 3.280856] init: - watchdog - [ 3.394375] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 3.419051] gpio_button_hotplug: loading out-of-tree module taints kernel. [ 3.426930] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 3.435394] init: - preinit - [ 3.761379] usb 4-1.1: new SuperSpeed USB device number 3 using xhci-hcd [ 3.880877] usb-storage 4-1.1:1.0: USB Mass Storage device detected [ 3.907088] scsi host2: usb-storage 4-1.1:1.0 Cannot parse config file '/etc/fw_env.config': No such file or directory Failed to find NVMEM device [ 4.182932] mvpp2 f2000000.ethernet eth1: configuring for fixed/2500base-x link mode [ 4.191538] mv88e6085 f212a200.mdio-mii:03 lan0: configuring for phy/gmii link mode [ 4.200699] mvpp2 f2000000.ethernet eth1: Link is Up - 2.5Gbps/Full - flow control off Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 4.441937] mv88e6085 f212a200.mdio-mii:03: Link is Up - 2.5Gbps/Full - flow control off [ 6.939542] scsi 2:0:0:0: Direct-Access PNY USB 3.1 FD PMAP PQ: 0 ANSI: 6 [ 6.950118] sd 2:0:0:0: [sda] 60628992 512-byte logical blocks: (31.0 GB/28.9 GiB) [ 6.958154] sd 2:0:0:0: [sda] Write Protect is off [ 6.963188] sd 2:0:0:0: [sda] No Caching mode page found [ 6.968542] sd 2:0:0:0: [sda] Assuming drive cache: write through [ 6.977703] sda: sda1 [ 6.980224] sd 2:0:0:0: [sda] Attached SCSI removable disk [ 8.333199] loop0: detected capacity change from 0 to 30740480 [ 8.421391] loop0: detected capacity change from 30740480 to 30733440 [ 8.436824] F2FS-fs (loop0): invalid crc_offset: 0 [ 8.491969] F2FS-fs (loop0): Found nat_bits in checkpoint [ 8.625456] F2FS-fs (loop0): Mounted with checkpoint version = 10a5e74a [ 8.634834] mount_root: loading kmods from internal overlay [ 8.648460] kmodloader: loading kernel modules from /tmp/overlay/upper/etc/modules-boot.d/* [ 8.663361] kmodloader: done loading kernel modules from /tmp/overlay/upper/etc/modules-boot.d/* [ 10.248683] block: attempting to load /tmp/overlay/upper/etc/config/fstab [ 10.260962] block: extroot: not configured [ 10.265504] block: attempting to load /etc/config/fstab [ 10.270890] block: unable to load configuration (fstab: Entry not found) [ 10.277716] block: no usable configuration [ 10.283296] mount_root: switching to f2fs overlay [ 10.293348] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 10.437812] EXT4-fs (mmcblk0p1): mounted filesystem 84173db5-fa99-e35a-95c6-28613cc79ea9 r/w without journal. Quota mode: disabled. [ 10.454996] EXT4-fs (mmcblk0p1): unmounting filesystem 84173db5-fa99-e35a-95c6-28613cc79ea9. [ 10.466083] urandom-seed: Seeding with /etc/urandom.seed [ 10.504365] procd: - early - [ 10.507384] procd: - watchdog - [ 11.049907] procd: - watchdog - [ 11.054274] procd: - ubus - [ 11.212161] procd: - init - Please press Enter to activate this console. [ 11.461588] kmodloader: loading kernel modules from /etc/modules.d/* [ 11.522401] PPP generic driver version 2.4.2 [ 11.527564] NET: Registered PF_PPPOX protocol family [ 11.534879] kmodloader: done loading kernel modules from /etc/modules.d/* [ 11.629197] urngd: v1.0.2 started. [ 17.212460] mvpp2 f2000000.ethernet eth1: Link is Down [ 17.233052] mvpp2 f2000000.ethernet eth1: configuring for fixed/2500base-x link mode [ 17.237960] mv88e6085 f212a200.mdio-mii:03: Link is Down [ 17.241590] mvpp2 f2000000.ethernet eth1: Link is Up - 2.5Gbps/Full - flow control off [ 17.449915] mv88e6085 f212a200.mdio-mii:03 lan0: configuring for phy/gmii link mode [ 17.459242] br-lan: port 1(lan0) entered blocking state [ 17.464508] br-lan: port 1(lan0) entered disabled state [ 17.469775] mv88e6085 f212a200.mdio-mii:03 lan0: entered allmulticast mode [ 17.476692] mvpp2 f2000000.ethernet eth1: entered allmulticast mode [ 17.489317] mv88e6085 f212a200.mdio-mii:03: Link is Up - 2.5Gbps/Full - flow control off [ 17.527607] mv88e6085 f212a200.mdio-mii:03 lan0: entered promiscuous mode [ 17.534554] mvpp2 f2000000.ethernet eth1: entered promiscuous mode [ 17.729044] mv88e6085 f212a200.mdio-mii:03 lan1: configuring for phy/gmii link mode [ 17.820183] br-lan: port 2(lan1) entered blocking state [ 17.825462] br-lan: port 2(lan1) entered disabled state [ 17.830738] mv88e6085 f212a200.mdio-mii:03 lan1: entered allmulticast mode [ 17.851794] mv88e6085 f212a200.mdio-mii:03 lan1: entered promiscuous mode [ 18.039450] mv88e6085 f212a200.mdio-mii:03 lan2: configuring for phy/gmii link mode [ 18.129907] br-lan: port 3(lan2) entered blocking state [ 18.135238] br-lan: port 3(lan2) entered disabled state [ 18.140544] mv88e6085 f212a200.mdio-mii:03 lan2: entered allmulticast mode [ 18.162333] mv88e6085 f212a200.mdio-mii:03 lan2: entered promiscuous mode [ 18.358972] mv88e6085 f212a200.mdio-mii:03 lan3: configuring for phy/gmii link mode [ 18.459462] br-lan: port 4(lan3) entered blocking state [ 18.464727] br-lan: port 4(lan3) entered disabled state [ 18.469997] mv88e6085 f212a200.mdio-mii:03 lan3: entered allmulticast mode [ 18.491576] mv88e6085 f212a200.mdio-mii:03 lan3: entered promiscuous mode [ 18.524440] mvpp2 f2000000.ethernet eth0: configuring for inband/10gbase-r link mode [ 18.533874] br-wan: port 1(eth0) entered blocking state [ 18.539138] br-wan: port 1(eth0) entered disabled state [ 18.544446] mvpp2 f2000000.ethernet eth0: entered allmulticast mode [ 18.551685] mvpp2 f2000000.ethernet eth0: entered promiscuous mode [ 18.811539] mvpp2 f2000000.ethernet eth2: PHY [f212a200.mdio-mii:01] driver [Marvell 88E1510] (irq=POLL) [ 18.821177] mvpp2 f2000000.ethernet eth2: configuring for phy/rgmii-id link mode [ 18.993332] br-wan: port 2(eth2) entered blocking state [ 18.998621] br-wan: port 2(eth2) entered disabled state [ 19.003968] mvpp2 f2000000.ethernet eth2: entered allmulticast mode [ 19.011967] mvpp2 f2000000.ethernet eth2: entered promiscuous mode [ 23.195501] mvpp2 f2000000.ethernet eth2: Link is Up - 1Gbps/Full - flow control rx/tx [ 23.201352] br-wan: port 2(eth2) entered blocking state [ 23.208714] br-wan: port 2(eth2) entered forwarding state BusyBox v1.36.1 (2025-12-17 21:08:22 UTC) built-in shell (ash) _______ ________ __ | |.-----.-----.-----.| | | |.----.| |_ | - || _ | -__| || | | || _|| _| |_______|| __|_____|__|__||________||__| |____| |__| W I R E L E S S F R E E D O M ----------------------------------------------------- OpenWrt 24.10.5, r29087-d9c5716d1d ----------------------------------------------------- === WARNING! ===================================== There is no root password defined on this device! Use the "passwd" command to set up a new password in order to prevent unauthorized SSH logins. -------------------------------------------------- root@OpenWrt:~#
Notes
Space for additional notes, links to forum threads or other resources.
- ...


