diff options
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/ath79/dts/ar9342_ruckus_zf7321.dts | 54 | ||||
-rw-r--r-- | target/linux/ath79/generic/base-files/etc/board.d/02_network | 2 | ||||
-rw-r--r-- | target/linux/ath79/image/generic.mk | 7 |
3 files changed, 63 insertions, 0 deletions
diff --git a/target/linux/ath79/dts/ar9342_ruckus_zf7321.dts b/target/linux/ath79/dts/ar9342_ruckus_zf7321.dts new file mode 100644 index 0000000000..7bfc85d086 --- /dev/null +++ b/target/linux/ath79/dts/ar9342_ruckus_zf7321.dts @@ -0,0 +1,54 @@ +// SPDX-License-Identifier: GPL-2.0-or-later OR MIT + +#include "ar934x_ruckus_zf73xx.dtsi" + +/ { + model = "Ruckus ZoneFlex 7321[-U]"; + compatible = "ruckus,zf7321", "qca,ar9342"; + + leds { + air-green { + label = "green:air"; + gpios = <&gpio 13 GPIO_ACTIVE_LOW>; + }; + + dir-green { + label = "green:dir"; + gpios = <&gpio 12 GPIO_ACTIVE_LOW>; + }; + + power_red: power-red { + label = "red:power"; + gpios = <&gpio 11 GPIO_ACTIVE_HIGH>; + panic-indicator; + }; + + wlan2g-green { + label = "green:wlan2g"; + gpios = <&gpio 14 GPIO_ACTIVE_LOW>; + linux,default-trigger = "phy0assoc"; + }; + + wlan2g-yellow { + label = "yellow:wlan2g"; + gpios = <&gpio 15 GPIO_ACTIVE_LOW>; + linux,default-trigger = "phy0tpt"; + }; + + wlan5g-green { + label = "green:wlan5g"; + gpios = <&gpio 16 GPIO_ACTIVE_LOW>; + linux,default-trigger = "phy0assoc"; + }; + + wlan5g-yellow { + label = "yellow:wlan5g"; + gpios = <&gpio 17 GPIO_ACTIVE_LOW>; + linux,default-trigger = "phy0tpt"; + }; + }; +}; + +ð0 { + nvmem-cells = <&macaddr_board_data_66>; +}; diff --git a/target/linux/ath79/generic/base-files/etc/board.d/02_network b/target/linux/ath79/generic/base-files/etc/board.d/02_network index 0fe18a8d38..e5a490d51a 100644 --- a/target/linux/ath79/generic/base-files/etc/board.d/02_network +++ b/target/linux/ath79/generic/base-files/etc/board.d/02_network @@ -64,6 +64,7 @@ ath79_setup_interfaces() pisen,ts-d084|\ pisen,wmb001n|\ pisen,wmm003n|\ + ruckus,zf7321|\ siemens,ws-ap3610|\ sophos,ap55|\ sophos,ap55c|\ @@ -685,6 +686,7 @@ ath79_setup_macs() wan_mac=$(mtd_get_mac_binary factory 0x0) lan_mac=$(macaddr_setbit_la "$wan_mac") ;; + ruckus,zf7321|\ ruckus,zf7372) lan_mac=$(mtd_get_mac_binary board-data 0x807E) label_mac=$lan_mac diff --git a/target/linux/ath79/image/generic.mk b/target/linux/ath79/image/generic.mk index 3fc4fd625b..900c9dbf3c 100644 --- a/target/linux/ath79/image/generic.mk +++ b/target/linux/ath79/image/generic.mk @@ -2345,6 +2345,13 @@ define Device/ruckus_zf73xx_common KERNEL_INITRAMFS := kernel-bin | append-dtb | lzma | loader-kernel | uImage none endef +define Device/ruckus_zf7321 + $(Device/ruckus_zf73xx_common) + SOC := ar9342 + DEVICE_MODEL := ZoneFlex 7321[-U] +endef +TARGET_DEVICES += ruckus_zf7321 + define Device/ruckus_zf7372 $(Device/ruckus_zf73xx_common) SOC := ar9344 |