[openwrt/openwrt] ath79: add support for Senao Engenius ENS202EXT v1

LEDE Commits lede-commits at lists.infradead.org
Mon Aug 31 11:41:40 EDT 2020


adrian pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/6decbf3186af8f89c2e9054c225dd86c2179d484

commit 6decbf3186af8f89c2e9054c225dd86c2179d484
Author: Michael Pratt <mpratt51 at gmail.com>
AuthorDate: Mon May 11 16:58:02 2020 -0400

    ath79: add support for Senao Engenius ENS202EXT v1
    
    Engenius ENS202EXT v1 is an outdoor wireless access point with 2 10/100 ports,
    with built-in ethernet switch, detachable antennas and proprietery PoE.
    
    FCC ID: A8J-ENS202
    
    Specification:
    
      - Qualcomm/Atheros AR9341 v1
      - 535/400/200/40 MHz          (CPU/DDR/AHB/REF)
      - 64 MB of RAM
      - 16 MB of FLASH              MX25L12835F(MI-10G)
      - UART (J1) header on PCB     (unpopulated)
      - 2x 10/100 Mbps Ethernet     (built-in switch Atheros AR8229)
      - 2.4 GHz, up to 27dBm        (Atheros AR9340)
      - 2x external, detachable antennas
      - 7x LED (5 programmable in ath79), 1x GPIO button (Reset)
    
    Known Issues:
    
      - Sysupgrade from ar71xx no longer possible
      - Ethernet LEDs stay on solid when connected, not programmable
    
    MAC addresses:
    
      eth0/eth1  *:7b   art 0x0/0x6
      wlan       *:7a   art 0x1002
    
      The device label lists both addresses, WLAN MAC and ETH MAC,
      in that order.
    
      Since 0x0 and 0x6 have the same content, it cannot be
      determined which is eth0 and eth1, so we chose 0x0 for both.
    
    Installation:
    
      2 ways to flash factory.bin from OEM:
    
      - Connect ethernet directly to board (the non POE port)
          this is LAN for all images
      - if you get Failsafe Mode from failed flash:
          only use it to flash Original firmware from Engenius
          or risk kernel loop which requires serial cable
    
      Method 1: Firmware upgrade page:
    
        OEM webpage at 192.168.1.1
        username and password "admin"
        In upper right select Reset
        "Restore to factory default settings"
        Wait for reboot and login again
        Navigate to "Firmware Upgrade" page from left pane
        Click Browse and select the factory.bin image
        Upload and verify checksum
        Click Continue to confirm and wait 3 minutes
    
      Method 2: Serial to load Failsafe webpage:
    
        After connecting to serial console and rebooting...
        Interrupt boot with any key pressed rapidly
        execute `run failsafe_boot` OR `bootm 0x9fdf0000`
        wait a minute
        connect to ethernet and navigate to
        "192.168.1.1/index.htm"
        Select the factory.bin image and upload
        wait about 3 minutes
    
      *If you are unable to get network/LuCI after flashing*
      You must perform another factory reset:
    
        After waiting 3 minutes or when Power LED stop blinking:
    
        Hold Reset button for 15 seconds while powered on
        or until Power LED blinks very fast
    
        release and wait 2 minutes
    
    Return to OEM:
    
      If you have a serial cable, see Serial Failsafe instructions
    
      *DISCLAIMER*
      The Failsafe image is unique to this model.
      The following directions are unique to this model.
      DO NOT downgrade to ar71xx this way, can cause kernel loop
    
      The easiest way to return to the OEM software is the Failsafe image
      If you dont have a serial cable, you can ssh into openwrt and run
    
      `mtd -r erase fakeroot`
    
      Wait 3 minutes
      connect to ethernet and navigate to 192.168.1.1/index.htm
      select OEM firmware image from Engenius and click upgrade
    
    TFTP Recovery:
    
      For some reason, TFTP is not reliable on this board.
      Takes many attempts, many timeouts before it fully transfers.
    
      Starting with an initramfs.bin:
    
      Connect to ethernet
      set IP address and TFTP server to 192.168.1.101
      set up infinite ping to 192.168.1.1
      rename the initramfs.bin to "vmlinux-art-ramdisk" and host on TFTP server
      disconnect power to the board
      hold reset button while powering on board for 8 seconds
    
      Wait a minute, power LED should blink eventually if successful
      and a minute after that the pings should get replies
      You have now loaded a temporary Openwrt with default settings temporarily.
      You can use that image to sysupgrade another image to overwrite flash.
    
    Format of OEM firmware image:
    
      The OEM software of ENS202EXT is a heavily modified version
      of Openwrt Kamikaze bleeding-edge. One of the many modifications
      is to the sysupgrade program. Image verification is performed
      simply by the successful ungzip and untar of the supplied file
      and name check and header verification of the resulting contents.
      To form a factory.bin that is accepted by OEM Openwrt build,
      the kernel and rootfs must have specific names...
    
        openwrt-senao-ens202ext-uImage-lzma.bin
        openwrt-senao-ens202ext-root.squashfs
    
      and begin with the respective headers (uImage, squashfs).
      Then the files must be tarballed and gzipped.
      The resulting binary is actually a tar.gz file in disguise.
      This can be verified by using binwalk on the OEM firmware images,
      ungzipping then untaring, and by swapping headers to see
      what the OEM upgrade utility accepts and rejects.
    
    Note on the factory.bin:
    
      The newest kernel is too large to be in the kernel partition
    
      the new ath79 kernel is beyond   1592k
      Even ath79-tiny is               1580k
    
      Checksum fails at boot because the bootloader (modified uboot)
      expects kernel to be 1536k. If the kernel is larger, it gets
      overwritten when rootfs is flashed, causing a broken image.
      The mtdparts variable is part of the build and saving a new
      uboot environment will not persist after flashing.
      OEM version might interact with uboot or with the custom
      OEM partition at 0x9f050000.
    
      Failed checksums at boot cause failsafe image to launch,
      allowing any image to be flashed again.
    
      HOWEVER: one should not install older Openwrt from failsafe
      because it can cause rootfs to be unmountable,
      causing kernel loop after successful checksum.
      The only way to rescue after that is with a serial cable.
    
      For these reasons, a fake kernel (OKLI kernel loader)
      and fake squashfs rootfs is implemented to take care of
      the OEM firmware image verification and checksums at boot.
      The OEM only verifies the checksum of the first image
      of each partition respectively, which is the loader
      and the fake squashfs. This completely frees
      the "firmware" partition from all checks.
    
      virtual_flash is implemented to make use of the wasted space.
      this leaves only 2 erase blocks actually wasted.
    
      The loader and fakeroot partitions must remain intact, otherwise
      the next boot will fail, redirecting to the Failsafe image.
    
      Because the partition table required is so different
      than the OEM partition table and ar71xx partition table,
      sysupgrades are not possible until one switches to ath79 kernel.
    
    Note on sysupgrade.tgz:
    
      To make things even more complicated, another change is needed to
      fix an issue where network does not work after flashing from either
      OEM software or Failsafe image, which implants the OEM (Openwrt Kamikaze)
      configuration into the jffs2 /overlay when writing rootfs from factory.bin.
    
      The upgrade script has this:
    
        mtd -j "/tmp/_sys/sysupgrade.tgz" write "${rootfs}" "rootfs"
    
      However, it also accepts scripts before and after:
    
        before_local="/etc/before-upgradelocal.sh"
        after_local="/etc/after-upgradelocal.sh"
        before="before-upgrade.sh"
        after="after-upgrade.sh"
    
      Thus, we can solve the issue by making the .tgz an empty file
      by making a before-upgrade.sh in the factory.bin
    
    Note on built-in switch:
    
      There is two ports on the board, POE through the power supply brick,
      the other is on the board. For whatever reason, in the ar71xx target,
      both ports were on the built-in switch on eth1. In order to make use
      of a port for WAN or a different LAN, one has to set up VLANs.
    
      In ath79, eth0 and eth1 is defined in the DTS so that the
      built-in switch is seen as eth0, but only for 1 port
      the other port is on eth1 without a built-in switch.
    
      eth0: switch0
        CPU is port 0
        board port is port 1
    
      eth1: POE port on the power brick
    
      Since there is two physical ports,
      it can be configured as a full router,
      with LAN for both wired and wireless.
    
      According to the Datasheet, the port that is not on the switch
      is connected to gmac0. It is preferred that gmac0 is chosen as WAN
      over a port on an internal switch, so that link status can pass
      to the kernel immediately which is more important for WAN connections.
    
    Signed-off-by: Michael Pratt <mpratt51 at gmail.com>
    [apply sorting in 01_leds, make factory recipe more generic, create common
    device node, move label-mac to 02_network, add MAC addresses to commit
    message, remove kmod-leds-gpio, use gzip directly]
    Signed-off-by: Adrian Schmutzler <freifunk at adrianschmutzler.de>
---
 package/boot/uboot-envtools/files/ath79            |   1 +
 .../ath79/dts/ar9341_engenius_ens202ext-v1.dts     | 181 +++++++++++++++++++++
 .../ath79/generic/base-files/etc/board.d/01_leds   |   6 +
 .../generic/base-files/etc/board.d/02_network      |   8 +-
 target/linux/ath79/image/generic.mk                |  45 ++++-
 5 files changed, 239 insertions(+), 2 deletions(-)

diff --git a/package/boot/uboot-envtools/files/ath79 b/package/boot/uboot-envtools/files/ath79
index c0873c6e0d..11fdb07272 100644
--- a/package/boot/uboot-envtools/files/ath79
+++ b/package/boot/uboot-envtools/files/ath79
@@ -19,6 +19,7 @@ arduino,yun|\
 buffalo,bhr-4grv2|\
 devolo,magic-2-wifi|\
 engenius,ecb1750|\
+engenius,ens202ext-v1|\
 etactica,eg200|\
 glinet,gl-ar750s-nor|\
 glinet,gl-ar750s-nor-nand|\
diff --git a/target/linux/ath79/dts/ar9341_engenius_ens202ext-v1.dts b/target/linux/ath79/dts/ar9341_engenius_ens202ext-v1.dts
new file mode 100644
index 0000000000..a58d45a840
--- /dev/null
+++ b/target/linux/ath79/dts/ar9341_engenius_ens202ext-v1.dts
@@ -0,0 +1,181 @@
+// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
+/dts-v1/;
+
+#include <dt-bindings/gpio/gpio.h>
+#include <dt-bindings/input/input.h>
+
+#include "ar9341.dtsi"
+
+/ {
+	model = "Engenius ENS202EXT v1";
+	compatible = "engenius,ens202ext-v1", "qca,ar9341";
+
+	aliases {
+		serial0 = &uart;
+		led-boot = &led_power;
+		led-failsafe = &led_power;
+		led-running = &led_power;
+		led-upgrade = &led_power;
+	};
+
+	keys {
+		compatible = "gpio-keys";
+
+		reset {
+			label = "Reset";
+			linux,code = <KEY_RESTART>;
+			gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
+			debounce-interval = <60>;
+		};
+	};
+
+	leds {
+		compatible = "gpio-leds";
+
+		led_power: power {
+			label = "ens202ext-v1:amber:power";
+			gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
+			default-state = "on";
+		};
+
+		wlan {
+			label = "ens202ext-v1:amber:wlan";
+			gpios = <&gpio 18 GPIO_ACTIVE_LOW>;
+			linux,default-trigger = "phy0tpt";
+		};
+
+		rssilow {
+			label = "ens202ext-v1:red:rssilow";
+			gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
+		};
+
+		rssimedium {
+			label = "ens202ext-v1:amber:rssimedium";
+			gpios = <&gpio 17 GPIO_ACTIVE_LOW>;
+		};
+
+		rssihigh {
+			label = "ens202ext-v1:green:rssihigh";
+			gpios = <&gpio 0 GPIO_ACTIVE_LOW>;
+		};
+	};
+
+	virtual_flash {
+		compatible = "mtd-concat";
+
+		devices = <&firmware1 &firmware2>;
+
+		partitions {
+			compatible = "fixed-partitions";
+			#address-cells = <1>;
+			#size-cells = <1>;
+
+			partition at 0 {
+				compatible = "openwrt,okli";
+				label = "firmware";
+				reg = <0x0 0x0>;
+			};
+		};
+	};
+};
+
+&ref {
+	clock-frequency = <40000000>;
+};
+
+&uart {
+	status = "okay";
+};
+
+&spi {
+	status = "okay";
+
+	num-cs = <1>;
+
+	flash at 0 {
+		compatible = "jedec,spi-nor";
+		reg = <0>;
+		spi-max-frequency = <40000000>;
+
+		partitions {
+			compatible = "fixed-partitions";
+			#address-cells = <1>;
+			#size-cells = <1>;
+
+			partition at 0 {
+				label = "u-boot";
+				reg = <0x000000 0x040000>;
+				read-only;
+			};
+
+			partition at 40000 {
+				label = "u-boot-env";
+				reg = <0x040000 0x010000>;
+			};
+
+			partition at 50000 {
+				label = "custom";
+				reg = <0x050000 0x050000>;
+				read-only;
+			};
+
+			partition at a0000 {
+				label = "loader";
+				reg = <0x0a0000 0x010000>;
+				read-only;
+			};
+
+			firmware2: partition at b0000 {
+				label = "firmware2";
+				reg = <0x0b0000 0x170000>;
+			};
+
+			partition at 220000 {
+				label = "fakeroot";
+				reg = <0x220000 0x010000>;
+			};
+
+			firmware1: partition at 230000 {
+				label = "firmware1";
+				reg = <0x230000 0xbc0000>;
+			};
+
+			partition at df0000 {
+				label = "failsafe";
+				reg = <0xdf0000 0x200000>;
+				read-only;
+			};
+
+			art: partition at ff0000 {
+				label = "art";
+				reg = <0xff0000 0x010000>;
+				read-only;
+			};
+		};
+	};
+};
+
+&eth0 {
+	status = "okay";
+
+	phy-handle = <&swphy0>;
+
+	mtd-mac-address = <&art 0x0>;
+};
+
+&eth1 {
+	status = "okay";
+
+	mtd-mac-address = <&art 0x0>;
+
+	gmac-config {
+		device = <&gmac>;
+		switch-phy-swap = <1>;
+	};
+};
+
+&wmac {
+	status = "okay";
+
+	mtd-cal-data = <&art 0x1000>;
+};
diff --git a/target/linux/ath79/generic/base-files/etc/board.d/01_leds b/target/linux/ath79/generic/base-files/etc/board.d/01_leds
index 97edb2ecda..23d38aca22 100755
--- a/target/linux/ath79/generic/base-files/etc/board.d/01_leds
+++ b/target/linux/ath79/generic/base-files/etc/board.d/01_leds
@@ -144,6 +144,12 @@ dlink,dap-1365-a1)
 dlink,dir-859-a1)
 	ucidef_set_led_switch "internet" "WAN" "$boardname:green:internet" "switch0" "0x20"
 	;;
+engenius,ens202ext-v1)
+	ucidef_set_rssimon "wlan0" "200000" "1"
+	ucidef_set_led_rssi "rssilow" "RSSILOW" "$boardname:red:rssilow" "wlan0" "1"  "100"
+	ucidef_set_led_rssi "rssimedium" "RSSIMEDIUM" "$boardname:amber:rssimedium" "wlan0" "33" "100"
+	ucidef_set_led_rssi "rssihigh" "RSSIHIGH" "$boardname:green:rssihigh" "wlan0" "67" "100"
+	;;
 engenius,ews511ap)
 	ucidef_set_led_netdev "lan1" "LAN1" "$boardname:blue:lan1" "eth1"
 	ucidef_set_led_netdev "lan2" "LAN2" "$boardname:blue:lan2" "eth0"
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 02eef4955e..601e66e886 100755
--- a/target/linux/ath79/generic/base-files/etc/board.d/02_network
+++ b/target/linux/ath79/generic/base-files/etc/board.d/02_network
@@ -187,6 +187,11 @@ ath79_setup_interfaces()
 		ucidef_add_switch "switch0" \
 			"0 at eth0" "1:wan" "2:lan:3" "3:lan:2"
 		;;
+	engenius,ens202ext-v1)
+		ucidef_set_interface_wan "eth1"
+		ucidef_add_switch "switch0" \
+			"0 at eth0" "1:lan"
+		;;
 	engenius,ews511ap)
 		ucidef_set_interface_lan "eth0 eth1" "dhcp"
 		;;
@@ -373,7 +378,8 @@ ath79_setup_macs()
 		lan_mac=$(mtd_get_mac_binary "Board data" 2)
 		label_mac=$lan_mac
 		;;
-	alfa-network,ap121f)
+	alfa-network,ap121f|\
+	engenius,ens202ext-v1)
 		label_mac=$(mtd_get_mac_binary art 0x1002)
 		;;
 	arduino,yun)
diff --git a/target/linux/ath79/image/generic.mk b/target/linux/ath79/image/generic.mk
index 909c68befa..e6995fa645 100644
--- a/target/linux/ath79/image/generic.mk
+++ b/target/linux/ath79/image/generic.mk
@@ -6,7 +6,7 @@ include ./common-yuncore.mk
 DEVICE_VARS += ADDPATTERN_ID ADDPATTERN_VERSION
 DEVICE_VARS += SEAMA_SIGNATURE SEAMA_MTDBLOCK
 DEVICE_VARS += KERNEL_INITRAMFS_PREFIX
-DEVICE_VARS += DAP_SIGNATURE
+DEVICE_VARS += DAP_SIGNATURE ENGENIUS_IMGNAME
 
 define Build/add-elecom-factory-initramfs
   $(eval edimax_model=$(word 1,$(1)))
@@ -50,6 +50,23 @@ define Build/cybertan-trx
 	-rm $@-empty.bin
 endef
 
+# This needs to make /tmp/_sys/sysupgrade.tgz an empty file prior to
+# sysupgrade, as otherwise it will implant the old configuration from
+# OEM firmware when writing rootfs from factory.bin
+define Build/engenius-tar-gz
+	-[ -f "$@" ] && \
+	mkdir -p $@.tmp && \
+	echo '#!/bin/sh' > $@.tmp/before-upgrade.sh && \
+	echo ': > /tmp/_sys/sysupgrade.tgz' >> $@.tmp/before-upgrade.sh && \
+	$(CP) $(KDIR)/loader-$(DEVICE_NAME).uImage \
+		$@.tmp/openwrt-$(word 1,$(1))-uImage-lzma.bin && \
+	$(CP) $@ $@.tmp/openwrt-$(word 1,$(1))-root.squashfs && \
+	$(TAR) -cp --numeric-owner --owner=0 --group=0 --mode=a-s --sort=name \
+		$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
+		-C $@.tmp . | gzip -9n > $@ && \
+	rm -rf $@.tmp
+endef
+
 define Build/mkdapimg2
 	$(STAGING_DIR_HOST)/bin/mkdapimg2 \
 		-i $@ -o $@.new \
@@ -805,6 +822,32 @@ define Device/engenius_ecb1750
 endef
 TARGET_DEVICES += engenius_ecb1750
 
+define Device/engenius_loader_okli
+  DEVICE_VENDOR := EnGenius
+  KERNEL := kernel-bin | append-dtb | lzma | uImage lzma -M 0x4f4b4c49
+  LOADER_TYPE := bin
+  COMPILE := loader-$(1).bin loader-$(1).uImage
+  COMPILE/loader-$(1).bin := loader-okli-compile
+  COMPILE/loader-$(1).uImage := append-loader-okli $(1) | pad-to 64k | lzma | \
+	uImage lzma
+  IMAGES += factory.bin
+  IMAGE/factory.bin := append-squashfs-fakeroot-be | pad-to $$$$(BLOCKSIZE) | \
+	append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | \
+	check-size | engenius-tar-gz $$$$(ENGENIUS_IMGNAME)
+endef
+
+define Device/engenius_ens202ext-v1
+  $(Device/engenius_loader_okli)
+  SOC := ar9341
+  DEVICE_MODEL := ENS202EXT
+  DEVICE_VARIANT := v1
+  DEVICE_PACKAGES := rssileds
+  IMAGE_SIZE := 12032k
+  LOADER_FLASH_OFFS := 0x230000
+  ENGENIUS_IMGNAME := senao-ens202ext
+endef
+TARGET_DEVICES += engenius_ens202ext-v1
+
 define Device/engenius_epg5000
   SOC := qca9558
   DEVICE_VENDOR := EnGenius



More information about the lede-commits mailing list