Marvell DB-88F3720-DDR3

From TechInfoDepot
Jump to navigationJump to search
Single Board Computer
3rd Party Firmware
dd-wrt Status Unknown
OpenWrt Supported
Tomato any flavor Incompatible
Gargoyle Status Unknown
Platform
Brand • Model • Rev Marvell DB-88F3720-DDR3
Type single-board computer
CPU1 checkY Marvell 88F3720
CPU1 Type ARMv8 Cortex-A53
CPU1 Speed 1.0 GHz ( 2 cores )
Flash1 Chip Brand? Model?
Flash1 Size 1 GiB 1,024 MiB <br />1,073,741,824 B <br />8,388,608 Kib <br />1,048,576 KiB <br />8,192 Mib <br /> (eMMC NAND)
Flash2 Size 16 MiB16,777,216 B <br />131,072 Kib <br />16,384 KiB <br />128 Mib <br />0.0156 GiB <br /> (SPI NOR)
RAM1 Size 512 MiB 536,870,912 B <br />4,194,304 Kib <br />524,288 KiB <br />4,096 Mib <br />0.5 GiB <br /> (DDR3/3L)
RAM1 Chip Brand? Model?
ETH chip1 Marvell 88F3720
Ethernet Port Count 1-1GbE-LAN
Wired Standard IEEE 802.3i/3u/3ab
Stock bootloader U-Boot
Expansion IF types USB 2.0, USB 3.0
USB ports 2
USB Hub Compatible Untested
Power 12 VDC, ? A
Serial Port (UART) yes, (115200 8N1)
JTAG Port yes
Other
3rd Party Firmware Support OpenWrt • (List | Dev | DLs)

For a list of all currently documented Marvell chipsets with specifications, see Marvell.

For a list of all currently documented Marvell devices with specifications, see Marvell.

Overview

Seems to be some inconsistencies between https://openwrt.org/toh/hwdata/marvell/marvell_db-88f3720-ddr3 and https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=322a02f66607be5fa774f9187003631494bc2809

Flashing

Flashing OpenWrt

Target: mvebu
Subtarget: cortexa53
Package architecture: aarch64_cortex-a53
Supported Since Commit
Support started version: 19.07.0
Current supported version: 24.10.5
WLAN Hardware: none
WLAN Comment: No WLAN
Installation method(s):
SD card, see git-commit
git • >>
mvebu: initial support for Marvell Armada 3720 DB board
Add initial support for Marvell Armada cortex-a53 based
DB-88F3720-DDR3-Modular development board.

Specifications:
- Dual core ARMv8 Cortex-A53 CPU (up to 1.0 GHz)
- 4Gb 16-bit DDR3/3L DRAM memory
- 128Mb SPI NOR flash memory
- 8Gb eMMC NAND flash memory
- 1 x SATA Rev 3.0 port
- 1 x PCI Express (PCIe) Gen 2.0 or 1 x mini PCI Express (PCIe) Gen 2.0
- 1 x 1G Ethernet port via RGMII (RJ45)
- 1 x SD card port
- 1 x USB3 (USB2 backward) host\device port via type C connector
- 1 x USB2 host port via type A connector
- 1 x serial COM port driven by the 88F3720 UART interface and converted to
  USB via FTDI IC (option to connect the UART DB9 adapter)
- I2C Master Interface:
  - 1 x EEPROM @ address 0x57
  - 1 x I/O Expanders @ address 0x22
  - Sample at Reset (SatR) memory device @ address 0x4C
  - RTC clock generator PT7C4337AWE @ address 0x68
  - USB3 switch PI5USB30213XEA @ address 0x0D
  - ID component of PHY module @ address 0x24
- 1 x JTAG interface for CPU emulator
- 1 x SETM and JTAG debug interface
- 1 x power connector for HDD supply
- 1 x 12V DC jack power connector
- Board dimensions: 150 mm x 179 mm
- LED interface for system status

Booting from SD card:
 1. reset U-Boot environment:
      env default -a
      saveenv

 2. prepare U-Boot with boot script:
      setenv bootcmd "load mmc 0:1 0x4d00000 boot.scr; source 0x4d00000"
      saveenv

    or manually:
      setenv fdt_name armada-3720-db.dtb
      setenv image_name Image
      setenv bootcmd 'mmc dev 0; ext4load mmc 0:1 $kernel_addr $image_name;ext4load mmc 0:1 $fdt_addr $fdt_name;setenv bootargs $console root=/dev/mmcblk1p2 rw rootwait; booti $kernel_addr - $fdt_addr'
      saveenv