ar71xx: add user-space support for the NETGEAR WNDR4300
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 12 Dec 2012 16:49:51 +0000 (16:49 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 12 Dec 2012 16:49:51 +0000 (16:49 +0000)
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34649 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar71xx/base-files/etc/diag.sh
target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom [new file with mode: 0644]
target/linux/ar71xx/base-files/etc/uci-defaults/leds
target/linux/ar71xx/base-files/etc/uci-defaults/network
target/linux/ar71xx/base-files/lib/ar71xx.sh

index 416322d..52ce976 100755 (executable)
@@ -165,6 +165,9 @@ get_status_led() {
        wndr3700)
                status_led="wndr3700:green:power"
                ;;
+       wndr4300)
+               status_led="netgear:green:power"
+               ;;
        wnr2000)
                status_led="wnr2000:green:power"
                ;;
diff --git a/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom b/target/linux/ar71xx/base-files/etc/hotplug.d/firmware/10-ath9k-eeprom
new file mode 100644 (file)
index 0000000..c46d093
--- /dev/null
@@ -0,0 +1,52 @@
+#!/bin/sh
+
+ath9k_eeprom_die() {
+       echo "ath9k eeprom: " "$*"
+       exit 1
+}
+
+ath9k_eeprom_extract() {
+       local part=$1
+       local offset=$2
+       local count=$3
+       local mtd
+
+       . /etc/functions.sh
+
+       mtd=$(find_mtd_chardev $part)
+       [ -n "$mtd" ] || \
+               ath9k_eeprom_die "no mtd device found for partition $part"
+
+       dd if=$mtd of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count 2>/dev/null || \
+               ath9k_eeprom_die "failed to extract from $mtd"
+}
+
+[ -e /lib/firmware/$FIRMWARE ] && exit 0
+
+. /lib/ar71xx.sh
+
+board=$(ar71xx_board_name)
+
+case "$FIRMWARE" in
+"soc_wmac.eeprom")
+       case $board in
+       wndr4300)
+               ath9k_eeprom_extract "caldata" 4096 2048
+               ;;
+       *)
+               ath9k_eeprom_die "board $board is not supported yet"
+               ;;
+       esac
+       ;;
+
+"pci_wmac0.eeprom")
+       case $board in
+       wndr4300)
+               ath9k_eeprom_extract "caldata" 20480 2048
+               ;;
+       *)
+               ath9k_eeprom_die "board $board is not supported yet"
+               ;;
+       esac
+       ;;
+esac
index 7be4ce9..0594398 100755 (executable)
@@ -181,6 +181,11 @@ wndr3700)
        ucidef_set_led_usbdev "usb" "USB" "wndr3700:green:usb" "1-1"
        ;;
 
+wndr4300)
+       ucidef_set_led_netdev "wan" "WAN (green)" "netgear:green:wan" "eth0.2"
+       ucidef_set_led_usbdev "usb" "USB" "netgear:green:usb" "1-1"
+       ;;
+
 whr-g301n |\
 whr-hp-g300n |\
 whr-hp-gn)
index 7fa219d..f474585 100755 (executable)
@@ -146,6 +146,13 @@ wzr-hp-g300nh)
        ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
        ;;
 
+wndr4300)
+       ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
+       ucidef_add_switch "switch0" "1" "1"
+       ucidef_add_switch_vlan "switch0" "1" "0t 1 2 3 4"
+       ucidef_add_switch_vlan "switch0" "2" "0t 5"
+       ;;
+
 all0305 |\
 aw-nr580 |\
 bullet-m |\
index fe7c910..6ff6db9 100755 (executable)
@@ -408,6 +408,9 @@ ar71xx_board_detect() {
        *"WNDR3700/WNDR3800/WNDRMAC")
                wndr3700_board_detect "$machine"
                ;;
+       *"WNDR4300")
+               name="wndr4300"
+               ;;
        *WNR2000)
                name="wnr2000"
                ;;