ath79: initial support for Ubiquiti RouterStation and RouterStation Pro
authorMatt Merhar <mattmerhar@protonmail.com>
Mon, 27 Aug 2018 13:59:09 +0000 (09:59 -0400)
committerMathias Kresin <dev@kresin.me>
Mon, 27 Aug 2018 17:31:17 +0000 (19:31 +0200)
commitd03c89838eca297dd6c364d3bccfb6bab440d7fb
tree57bf98e92008c3eb0581aea5723012228675c97e
parente348ccc4e6e9d16d56bec77b69628205d58e6750
ath79: initial support for Ubiquiti RouterStation and RouterStation Pro

This adds a shared ar7161_ubnt_routerstation.dtsi as well as two other
.dts files that utilize it, ar7161_ubnt_routerstation.dts and
ar7161_ubnt_routerstation-pro.dts.

The modifications to generic-ubnt.mk, config-default, and base-files
necessary for image generation, parsing RedBoot FIS partitions, network
configuration, and sysupgrade are also included.

This reintroduces vital bits from platform_do_upgrade_combined() and its
supporting functions to /lib/upgrade/platform.sh, which were previously
removed from ath79 in 3e9d9f62258f80298710441e0db557e59e152dcf "ath79:
sysupgrade: drop unused platform checks". The new function is called
"routerstation_do_upgrade" and will *only* work for the RouterStation
series of boards. It does however retain the ability to downgrade (e.g.
from master -> 17.01.x using sysupgrade -F).

All hardware is functional including the AR8216 switch (for the Pro),
wireless via ath5k/ath9k using the miniPCI slots, flash, USB, button,
and LED.

Switch and LAN/WAN configuration is the same as it is with the
equivalent ar71xx targets. MAC addresses are assigned based upon the
content stored in the RedBoot config partition.

Flashing via both sysupgrade and TFTP has been confirmed to work. Also,
the initramfs images are now raw .bin files instead of being wrapped in
a uImage (as they currently are in ar71xx), which makes them bootable
with RedBoot.

One notable difference to ar71xx is the inclusion of the RedBoot
"fconfig" utility (analogous to U-Boot’s fw_printenv/fw_setenv) in
DEVICE_PACKAGES. The FIS partitions are probed using the RedBoot MTD
parser’s DT binding, whose proper usage is mutually exclusive to
defining a separate fixed-partitions node for "RedBoot config". This
config partition contains the board's base MAC address. The lack of a
hard-coded flash location means that the mtd-mac-address property cannot
be used in the .dts, so instead fconfig is used to read the MAC
addresses from flash in userspace during first boot.

Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
Signed-off-by: Matt Merhar <mattmerhar@protonmail.com>
target/linux/ath79/base-files/etc/board.d/02_network
target/linux/ath79/base-files/lib/upgrade/platform.sh
target/linux/ath79/dts/ar7161_ubnt_routerstation-pro.dts [new file with mode: 0644]
target/linux/ath79/dts/ar7161_ubnt_routerstation.dts [new file with mode: 0644]
target/linux/ath79/dts/ar7161_ubnt_routerstation.dtsi [new file with mode: 0644]
target/linux/ath79/generic/config-default
target/linux/ath79/image/generic-ubnt.mk