Dragino MS14 is a small router/development kit with two Fast Ethernet ports, with single 1x1 2,4GHz Wi-Fi radio and expansion headers. Specifications: CPU: Atheros AR9330 SoC @400MHz, RAM: 64MB DDR, Flash: 16MB SPI-NOR, Ethernet: Two 100Mbps ports, LAN on eth0, WAN on eth1, Wireless: built-in 1x1 802.11 2.4GHz radio, USB: single USB2.0 High speed host port, LEDs: 4 status LEDs for system, LAN, WAN and WLAN. UART: 115200-8-N-1 at the 2x8 header Label MAC: Wi-Fi interface. The board support is ported over from old ar71xx target, and only partially verified using LPS8 board, which will be introduced next. Installation: Log in via SSH to the unit, default username and password are 'root' and 'dragino', respectively. SSH listens on port 2222. Just 'sysupgrade -n' from vendor firmware, dropping old configuration. Update with configuration from ar71xx builds may be possible, but isn't guaranteed, as the builds are many releases apart. Restore vendor firmware: the same as installation, just 'sysupgrade -F -n', dropping configuration. Signed-off-by: Lech Perczak <lech.perczak@gmail.com> Link: https://github.com/openwrt/openwrt/pull/23472 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
43 lines
672 B
Plaintext
43 lines
672 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
|
|
|
|
#include "ar9330_dragino_dragino2.dtsi"
|
|
|
|
/ {
|
|
model = "Dragino MS14";
|
|
compatible = "dragino,ms14", "qca,ar9330";
|
|
};
|
|
|
|
&gpio_leds {
|
|
lan {
|
|
function = LED_FUNCTION_LAN;
|
|
color = <LED_COLOR_ID_RED>;
|
|
gpios = <&gpio 13 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
wan {
|
|
function = LED_FUNCTION_WAN;
|
|
color = <LED_COLOR_ID_RED>;
|
|
gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
|
|
&gpio_keys {
|
|
jumpstart {
|
|
label = "jumpstart";
|
|
linux,code = <BTN_0>;
|
|
gpios = <&gpio 11 GPIO_ACTIVE_LOW>;
|
|
};
|
|
|
|
reset {
|
|
label = "reset";
|
|
linux,code = <KEY_RESTART>;
|
|
gpios = <&gpio 12 GPIO_ACTIVE_LOW>;
|
|
};
|
|
};
|
|
|
|
&wmac {
|
|
led {
|
|
led-sources = <0>;
|
|
};
|
|
};
|