ar71xx: add support for MikroTik RouterBOARD 921GS-5HPacD r2 (mANTBox 15s)
This patch adds support for the MikroTik RouterBOARD 921GS-5HPacD r2 (mANTBox 15s), an outdoor sector antenna with a built-in 802.11ac wireless router. Additionally, it adds a new profile for devices with >= 128 MB NAND flash and 802.11ac to the ar71xx/mikrotik subtarget. See https://mikrotik.com/product/RB921GS-5HPacD-15S for more info. Specifications: - SoC: Qualcomm Atheros QCA9558 (720 MHz) - RAM: 128 MB - Storage: 128 MB NAND - Wireless: external QCA9822 802.11a/ac 2x2:2 - Ethernet: 1x 1000/100/10 Mbps, integrated, via AR8031 PHY, passive PoE in - SFP: 1x host Working: - Board/system detection - NAND storage detection - Wireless - Ethernet - 1x user LED - Reset button - Sysupgrade Untested: - SFP cage (probably not working) Installation: - Boot initramfs image via TFTP and then flash sysupgrade image Signed-off-by: Roger Pueyo Centelles <roger.pueyo@guifi.net>
This commit is contained in:
parent
9604f7d337
commit
82626cc145
6 changed files with 26 additions and 3 deletions
|
@ -97,6 +97,7 @@ ar71xx_setup_interfaces()
|
||||||
rb-911g-5hpnd|\
|
rb-911g-5hpnd|\
|
||||||
rb-912uag-2hpnd|\
|
rb-912uag-2hpnd|\
|
||||||
rb-912uag-5hpnd|\
|
rb-912uag-5hpnd|\
|
||||||
|
rb-921gs-5hpacd-r2|\
|
||||||
rb-lhg-5nd|\
|
rb-lhg-5nd|\
|
||||||
rb-mapl-2nd|\
|
rb-mapl-2nd|\
|
||||||
rb-sxt2n|\
|
rb-sxt2n|\
|
||||||
|
|
|
@ -132,6 +132,7 @@ case "$FIRMWARE" in
|
||||||
ath10kcal_patch_mac $(macaddr_add $(cat /sys/class/net/eth0/address) +16)
|
ath10kcal_patch_mac $(macaddr_add $(cat /sys/class/net/eth0/address) +16)
|
||||||
;;
|
;;
|
||||||
rb-911g-5hpacd|\
|
rb-911g-5hpacd|\
|
||||||
|
rb-921gs-5hpacd-r2|\
|
||||||
rb-962uigs-5hact2hnt)
|
rb-962uigs-5hact2hnt)
|
||||||
ath10kcal_from_file "/sys/firmware/routerboot/ext_wlan_data" 20480 2116
|
ath10kcal_from_file "/sys/firmware/routerboot/ext_wlan_data" 20480 2116
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -944,6 +944,9 @@ ar71xx_board_detect() {
|
||||||
*"RouterBOARD 912UAG-5HPnD")
|
*"RouterBOARD 912UAG-5HPnD")
|
||||||
name="rb-912uag-5hpnd"
|
name="rb-912uag-5hpnd"
|
||||||
;;
|
;;
|
||||||
|
*"RouterBOARD 921GS-5HPacD r2")
|
||||||
|
name="rb-921gs-5hpacd-r2"
|
||||||
|
;;
|
||||||
*"RouterBOARD 941-2nD")
|
*"RouterBOARD 941-2nD")
|
||||||
name="rb-941-2nd"
|
name="rb-941-2nd"
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -512,6 +512,7 @@ platform_check_image() {
|
||||||
rb-911g-5hpacd|\
|
rb-911g-5hpacd|\
|
||||||
rb-912uag-2hpnd|\
|
rb-912uag-2hpnd|\
|
||||||
rb-912uag-5hpnd|\
|
rb-912uag-5hpnd|\
|
||||||
|
rb-921gs-5hpacd-r2|\
|
||||||
rb-951g-2hnd|\
|
rb-951g-2hnd|\
|
||||||
rb-951ui-2hnd|\
|
rb-951ui-2hnd|\
|
||||||
rb-2011l|\
|
rb-2011l|\
|
||||||
|
@ -697,6 +698,7 @@ platform_pre_upgrade() {
|
||||||
rb-911g-5hpnd|\
|
rb-911g-5hpnd|\
|
||||||
rb-912uag-2hpnd|\
|
rb-912uag-2hpnd|\
|
||||||
rb-912uag-5hpnd|\
|
rb-912uag-5hpnd|\
|
||||||
|
rb-921gs-5hpacd-r2|\
|
||||||
rb-951g-2hnd|\
|
rb-951g-2hnd|\
|
||||||
rb-951ui-2hnd|\
|
rb-951ui-2hnd|\
|
||||||
rb-2011il|\
|
rb-2011il|\
|
||||||
|
|
|
@ -276,9 +276,16 @@ static void __init rb922gs_setup(void)
|
||||||
ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
|
ath79_eth0_data.mii_bus_dev = &ath79_mdio0_device.dev;
|
||||||
ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
|
ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
|
||||||
ath79_eth0_data.phy_mask = BIT(RB922_PHY_ADDR);
|
ath79_eth0_data.phy_mask = BIT(RB922_PHY_ADDR);
|
||||||
ath79_eth0_pll_data.pll_10 = 0x81001313;
|
if (strcmp(info->board_name, "921GS-5HPacD r2") == 0) {
|
||||||
ath79_eth0_pll_data.pll_100 = 0x81000101;
|
ath79_eth0_pll_data.pll_10 = 0xa0001313;
|
||||||
ath79_eth0_pll_data.pll_1000 = 0x8f000000;
|
ath79_eth0_pll_data.pll_100 = 0xa0000101;
|
||||||
|
ath79_eth0_pll_data.pll_1000 = 0x8f000000;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
ath79_eth0_pll_data.pll_10 = 0x81001313;
|
||||||
|
ath79_eth0_pll_data.pll_100 = 0x81000101;
|
||||||
|
ath79_eth0_pll_data.pll_1000 = 0x8f000000;
|
||||||
|
}
|
||||||
|
|
||||||
ath79_register_eth(0);
|
ath79_register_eth(0);
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,15 @@ define Device/nand-large
|
||||||
endef
|
endef
|
||||||
TARGET_DEVICES += nand-large
|
TARGET_DEVICES += nand-large
|
||||||
|
|
||||||
|
define Device/nand-large-ac
|
||||||
|
$(Device/mikrotik)
|
||||||
|
DEVICE_TITLE := MikroTik RouterBoard (>= 128 MB NAND, 802.11ac)
|
||||||
|
DEVICE_PACKAGES += kmod-ath10k ath10k-firmware-qca988x
|
||||||
|
KERNEL := kernel-bin | kernel2minor -s 2048 -e -c
|
||||||
|
SUPPORTED_DEVICES := rb-921gs-5hpacd-r2
|
||||||
|
endef
|
||||||
|
TARGET_DEVICES += nand-large-ac
|
||||||
|
|
||||||
define Device/rb-nor-flash-16M
|
define Device/rb-nor-flash-16M
|
||||||
DEVICE_TITLE := MikroTik RouterBoard (16 MB SPI NOR)
|
DEVICE_TITLE := MikroTik RouterBoard (16 MB SPI NOR)
|
||||||
DEVICE_PACKAGES := rbcfg rssileds -nand-utils kmod-ledtrig-gpio
|
DEVICE_PACKAGES := rbcfg rssileds -nand-utils kmod-ledtrig-gpio
|
||||||
|
|
Loading…
Reference in a new issue