forked from Ivasoft/openwrt
This adds initial support for micro-DPU (uDPU) board which is based on Armada-3720 SoC. micro-DPU is the single-port FTTdp distribution point unit made by Methode Electronics which offers complete modularity with replaceable SFP modules both for uplink and downlink (G.hn over twisted-pair, G.hn over coax, 1G and 2.5G Ethernet over Cat-5e cable). On-board features: - 512 MiB DDR3 - 2 x 2.5G SFP via HSGMII SERDES interface to the A3720 SoC - USB 2.0 Type-C connector - 4GB eMMC - ETSI TS 101548 reverse powering via twisted pair (RJ45) or coax (F Type) uDPU is intented to run on kernel 4.19 on newer due to the SFP and hardware support. Signed-off-by: Vladimir Vid <vladimir.vid@sartura.hr>
75 lines
1.7 KiB
Bash
Executable File
75 lines
1.7 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2014-2016 OpenWrt.org
|
|
# Copyright (C) 2016 LEDE-Project.org
|
|
#
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
cznic,turris-omnia)
|
|
ucidef_set_interface_lan "lan0 lan1 lan2 lan3 lan4"
|
|
ucidef_set_interface_wan "eth2"
|
|
;;
|
|
globalscale,espressobin|\
|
|
globalscale,espressobin-emmc|\
|
|
globalscale,espressobin-v7|\
|
|
globalscale,espressobin-v7-emmc)
|
|
ucidef_set_interfaces_lan_wan "lan0 lan1" "wan"
|
|
;;
|
|
linksys,caiman|\
|
|
linksys,cobra|\
|
|
linksys,mamba|\
|
|
linksys,rango|\
|
|
linksys,shelby|\
|
|
linksys,venom)
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth1.2"
|
|
ucidef_add_switch "switch0" \
|
|
"0:lan:4" "1:lan:3" "2:lan:2" "3:lan:1" "5@eth0" "4:wan" "6@eth1"
|
|
;;
|
|
marvell,a385-db-ap)
|
|
ucidef_set_interfaces_lan_wan "eth0 eth1" "eth2"
|
|
;;
|
|
marvell,armada8040-mcbin)
|
|
ucidef_set_interfaces_lan_wan "eth0 eth1 eth3" "eth2"
|
|
;;
|
|
marvell,armada8040-db)
|
|
ucidef_set_interfaces_lan_wan "eth0 eth2 eth3" "eth1"
|
|
;;
|
|
marvell,armada7040-db)
|
|
ucidef_set_interfaces_lan_wan "eth0 eth2" "eth1"
|
|
;;
|
|
marvell,armada-3720-db)
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
;;
|
|
marvell,axp-gp)
|
|
ucidef_set_interface_lan "eth0 eth1 eth2 eth3"
|
|
;;
|
|
methode,uDPU)
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
|
;;
|
|
solidrun,clearfog*a1)
|
|
# eth0 is standalone ethernet
|
|
# eth1 is switch (-pro) or standalone ethernet (-base)
|
|
# eth2 is SFP
|
|
ucidef_set_interfaces_lan_wan "eth1" "eth0 eth2"
|
|
|
|
# if switch exists (clearfog-pro)
|
|
# switch port 5 is connected to eth1
|
|
swconfig list 2>&1 | grep -q switch0 && \
|
|
ucidef_add_switch "switch0" \
|
|
"0:lan:5" "1:lan:4" "2:lan:3" "3:lan:2" "4:lan:1" "5u@eth1" "6:lan:6"
|
|
;;
|
|
*)
|
|
ucidef_set_interface_lan "eth0"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|