From 7945fd14098c3ff7a58267d91e7e7738caa8de7f Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Wed, 3 Jan 2018 21:36:20 +0100 Subject: [PATCH] Add support for GL.iNet GL-AR750 (QCA9531 based) --- Makefile | 1 + README.md | 2 ++ u-boot/Makefile | 8 ++++++ u-boot/include/configs/ap143.h | 50 ++++++++++++++++++++++++++++++---- 4 files changed, 56 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c56a172..312e89a 100644 --- a/Makefile +++ b/Makefile @@ -271,6 +271,7 @@ dragino_ms14: engenius_ens202ext \ gl-inet_gl-ar300 \ +gl-inet_gl-ar750 \ p2w_cpe505n \ p2w_r602n \ yuncore_ap90q \ diff --git a/README.md b/README.md index 1b5e5b9..c92616a 100644 --- a/README.md +++ b/README.md @@ -108,6 +108,7 @@ Currently supported devices: - Comfast CF-E314N - Comfast CF-E320N v2 - Comfast CF-E520N/CF-E530N + - GL.iNet GL-AR750 - P&W CPE505N - P&W R602N - TP-Link TL-MR22U v1 @@ -146,6 +147,7 @@ More information about supported devices: | [GL.iNet 64xxA](http://wiki.openwrt.org/toh/gl-inet/gl-inet) | AR9331 | 8/16 MiB | 64 MiB DDR1 | 64 KiB | RO | | GL.iNet GL-AR150 | AR9331 | 16 MiB | 64 MiB DDR2 | 256 KiB | R/W | | GL.iNet GL-AR300 | AR9344 | 16 MiB | 128 MiB DDR2 | 256 KiB | R/W | +| GL.iNet GL-AR750 | QCA9531 | 16 MiB | 128 MiB DDR2 | 256 KiB | R/W | | GL.iNet GL-USB150 | AR9331 | 16 MiB | 64 MiB DDR2 | 256 KiB | R/W | | GS-Oolite/Elink EL-M150 module | AR9331 | 4/8/16 MiB | 64 MiB DDR2 | 64 KiB, LZMA | RO | | P&W CPE505N | QCA9531 | 16 MiB | 64 MiB DDR2 | 256 KiB | R/W | diff --git a/u-boot/Makefile b/u-boot/Makefile index 44ac6c8..2e63cc7 100644 --- a/u-boot/Makefile +++ b/u-boot/Makefile @@ -486,6 +486,14 @@ gl-inet_gl-ar300: ar934x_common @$(call define_add,CFG_AG7240_NMACS,2) @$(MKCONFIG) -a db12x mips mips db12x ar7240 ar7240 +gl-inet_gl-ar750: qca953x_common + @$(call config_init,GL.iNet GL-AR750,gl-ar750,16,3,1,QCA_QCA9531_SOC) + @$(call define_add,CONFIG_FOR_GLINET_GL_AR750,1) + @$(call define_add,CFG_ATHRS27_PHY,1) + @$(call define_add,CFG_ATH_GMAC_NMACS,2) + @$(call define_add,CONFIG_PCI,1) + @$(MKCONFIG) -a ap143 mips mips ap143 ar7240 ar7240 + gl-inet_gl-usb150: ar933x_common @$(call config_init,GL.iNet GL-USB150,gl-usb150,16,11,,QCA_AR9331_SOC) @$(call define_add,CONFIG_FOR_GLINET_GL_USB150,1) diff --git a/u-boot/include/configs/ap143.h b/u-boot/include/configs/ap143.h index 318e821..a44a2b9 100644 --- a/u-boot/include/configs/ap143.h +++ b/u-boot/include/configs/ap143.h @@ -38,6 +38,13 @@ #define CONFIG_QCA_GPIO_MASK_LED_ACT_L GPIO11 +#elif defined(CONFIG_FOR_GLINET_GL_AR750) + + #define CONFIG_QCA_GPIO_MASK_LED_ACT_L GPIO13 | GPIO14 + #define CONFIG_QCA_GPIO_MASK_IN GPIO0 | GPIO16 | GPIO17 + #define CONFIG_QCA_GPIO_MASK_OUT_INIT_H GPIO2 + #define CONFIG_QCA_GPIO_MASK_OUT_INIT_L GPIO12 + #elif defined(CONFIG_FOR_P2W_CPE505N) #define CONFIG_QCA_GPIO_MASK_LED_ACT_L GPIO4 | GPIO11 | GPIO12 |\ @@ -163,6 +170,12 @@ "rootfstype=jffs2 init=/sbin/init "\ "mtdparts=ath-nor0:64k(u-boot),64k(art),1536k(uImage),6464k(rootfs),64k(mib0)" +#elif defined(CONFIG_FOR_GLINET_GL_AR750) + + #define CONFIG_BOOTARGS "console=ttyS0,115200 root=31:03 "\ + "rootfstype=squashfs init=/sbin/init "\ + "mtdparts=spi0.0:256k(u-boot)ro,64k(u-boot-env),64k(art)ro,16000k(firmware)" + #elif defined(CONFIG_FOR_P2W_CPE505N) ||\ defined(CONFIG_FOR_P2W_R602N) ||\ defined(CONFIG_FOR_YUNCORE_AP90Q) ||\ @@ -239,6 +252,10 @@ #define CFG_LOAD_ADDR 0x9F020000 +#elif defined(CONFIG_FOR_GLINET_GL_AR750) + + #define CFG_LOAD_ADDR 0x9F060000 + #elif defined(CONFIG_FOR_P2W_CPE505N) ||\ defined(CONFIG_FOR_P2W_R602N) ||\ defined(CONFIG_FOR_WALLYS_DR531) ||\ @@ -278,6 +295,12 @@ #define CFG_ENV_SIZE 0x7C00 #define CFG_ENV_SECT_SIZE 0x10000 +#elif defined(CONFIG_FOR_GLINET_GL_AR750) + + #define CFG_ENV_ADDR 0x9F040000 + #define CFG_ENV_SIZE 0x10000 + #define CFG_ENV_SECT_SIZE 0x10000 + #elif defined(CONFIG_FOR_P2W_CPE505N) ||\ defined(CONFIG_FOR_P2W_R602N) ||\ defined(CONFIG_FOR_YUNCORE_AP90Q) ||\ @@ -337,6 +360,12 @@ #define OFFSET_MAC_DATA_BLOCK_LENGTH 0x10000 #define OFFSET_MAC_ADDRESS 0x00000 +#elif defined(CONFIG_FOR_GLINET_GL_AR750) + + #define OFFSET_MAC_DATA_BLOCK 0x50000 + #define OFFSET_MAC_DATA_BLOCK_LENGTH 0x10000 + #define OFFSET_MAC_ADDRESS 0x00000 + #elif defined(CONFIG_FOR_P2W_CPE505N) ||\ defined(CONFIG_FOR_P2W_R602N) ||\ defined(CONFIG_FOR_YUNCORE_AP90Q) ||\ @@ -421,6 +450,10 @@ #define WEBFAILSAFE_UPLOAD_ART_ADDRESS (CFG_FLASH_BASE + 0x10000) +#elif defined(CONFIG_FOR_GLINET_GL_AR750) + + #define WEBFAILSAFE_UPLOAD_ART_ADDRESS (CFG_FLASH_BASE + 0x50000) + #endif /* Firmware size limit */ @@ -442,11 +475,12 @@ #define WEBFAILSAFE_UPLOAD_LIMITED_AREA_IN_BYTES (192 * 1024) -#elif defined(CONFIG_FOR_P2W_CPE505N) ||\ - defined(CONFIG_FOR_P2W_R602N) ||\ - defined(CONFIG_FOR_WALLYS_DR531) ||\ - defined(CONFIG_FOR_YUNCORE_AP90Q) ||\ - defined(CONFIG_FOR_YUNCORE_CPE830) ||\ +#elif defined(CONFIG_FOR_GLINET_GL_AR750) ||\ + defined(CONFIG_FOR_P2W_CPE505N) ||\ + defined(CONFIG_FOR_P2W_R602N) ||\ + defined(CONFIG_FOR_WALLYS_DR531) ||\ + defined(CONFIG_FOR_YUNCORE_AP90Q) ||\ + defined(CONFIG_FOR_YUNCORE_CPE830) ||\ defined(CONFIG_FOR_ZBTLINK_ZBT_WE1526) #define WEBFAILSAFE_UPLOAD_LIMITED_AREA_IN_BYTES (384 * 1024) @@ -501,6 +535,11 @@ #define CONFIG_QCA_PLL_IN_FLASH_BLOCK_OFFSET 0x10000 #define CONFIG_QCA_PLL_IN_FLASH_BLOCK_SIZE 0x10000 +#elif defined(CONFIG_FOR_GLINET_GL_AR750) + + #define CONFIG_QCA_PLL_IN_FLASH_BLOCK_OFFSET 0x50000 + #define CONFIG_QCA_PLL_IN_FLASH_BLOCK_SIZE 0x10000 + #elif defined(CONFIG_FOR_P2W_CPE505N) ||\ defined(CONFIG_FOR_P2W_R602N) ||\ defined(CONFIG_FOR_YUNCORE_AP90Q) ||\ @@ -526,6 +565,7 @@ !defined(CONFIG_FOR_COMFAST_CF_E320N_V2) &&\ !defined(CONFIG_FOR_COMFAST_CF_E520N) &&\ !defined(CONFIG_FOR_COMFAST_CF_E530N) &&\ + !defined(CONFIG_FOR_GLINET_GL_AR750) &&\ !defined(CONFIG_FOR_P2W_CPE505N) &&\ !defined(CONFIG_FOR_P2W_R602N) &&\ !defined(CONFIG_FOR_WALLYS_DR531) &&\ -- 2.25.1