ramips: add support for STORYLiNK SAP-G3200U3

STORYLiNK SAP-G3200U3 is an AC1200 router based on MT7621AT+MT7602EN+MT7612EN.
It has 128MB DDR3, 8MB NOR FLASH, 5-port Gbps switch and 1x USB 3.0.

The following patch adds support for this device.

Tested and working:
* ethernet
* both WiFi radios
* USB 3.0
* buttons
* ethernet switch and USB diag LEDs
* UART
* GPIOs

Tested and not working:
* LEDs for WiFi radios (connected with WiFi chips, not supported in mt76?)
* failsafe mode (known problem, needs workaround like other MTK based devices)

More information in Wiki: http://wiki.openwrt.org/toh/storylink/sap-g3200u3

Signed-off-by: Piotr Dymacz <pepe2k@gmail.com>

SVN-Revision: 46454
This commit is contained in:
John Crispin
2015-07-24 09:09:22 +00:00
parent 9c0ed4ce5c
commit dcae3723fd
8 changed files with 156 additions and 1 deletions

View File

@@ -184,6 +184,9 @@ case $board in
ucidef_set_led_default "power" "power" "pbr-m1:green:power" "1"
ucidef_set_led_default "sys" "sys" "pbr-m1:green:sys" "1"
;;
sap-g3200u3)
set_usb_led "storylink:green:usb"
;;
sl-r7205)
set_wifi_led "rt2800pci-phy0::radio"
;;

View File

@@ -140,6 +140,7 @@ ramips_setup_interfaces()
whr-300hp2 | \
whr-600d | \
oy-0001 | \
sap-g3200u3 | \
wsr-600 | \
wsr-1166 | \
wt1520 | \

View File

@@ -150,6 +150,9 @@ get_status_led() {
rut5xx)
status_led="rut5xx:green:status"
;;
sap-g3200u3)
status_led="storylink:green:usb"
;;
sl-r7205)
status_led="sl-r7205:green:status"
;;

View File

@@ -307,6 +307,9 @@ ramips_board_detect() {
*"Sparklan WCR-150GN")
name="wcr-150gn"
;;
*"STORYLiNK SAP-G3200U3")
name="sap-g3200u3"
;;
*"V22RW-2X2")
name="v22rw-2x2"
;;

View File

@@ -90,6 +90,7 @@ platform_check_image() {
rt-n15 | \
rt-n56u | \
rut5xx | \
sap-g3200u3 | \
sl-r7205 | \
tew-691gr | \
tew-692gr | \