This patchset adds support for the MEN NM50 WLAN Access Point to mpc85xx. The NM50 is an industrial stand-alone device, specifically designed for use in railway cars and automotive applications operating in rugged environmental conditions.
NM50 features: - NXP PowerPC QorIQ P1013, 800 MHz - 1 GB DDR3 SDRAM - 32 MB NOR Flash - 2 Gigabit Ethernet ports - 1 USB 2.0 A port, 1 USB 2.0 B port - Up to 6 antennas - Wireless LAN according to IEEE802.11b/g/n - Dual RF, simultaneous 2.4 GHz and 5 GHz band support Dieter Pfeuffer (8): [PATCH 1/8] mpc85xx: add NM50 support to mpc85xx platform [PATCH 2/8] mpc85xx: add target NM50 to kernel config [PATCH 3/8] mpc85xx: add device tree for NM50 [PATCH 4/8] mpc85xx: add firmware upgrade support for NM50 [PATCH 5/8] mpc85xx: add 32Mppc flash layout in mktplinkfw for NM50 [PATCH 6/8] mpc85xx: increase timeout for NM50 fw-upgrade via luci [PATCH 7/8] mpc85xx: support NM50 in mpc85xx_board_detect [PATCH 8/8] mpc85xx: add NM50 config for fw_(printenv/setenv) scripts/men-mkfwupgrade.sh | 69 +++ target/linux/mpc85xx/Makefile | 2 +- target/linux/mpc85xx/base-files/etc/fw_env.config | 22 + .../base-files/etc/uci-defaults/men_nm50_uhttpd | 22 + target/linux/mpc85xx/base-files/lib/mpc85xx.sh | 3 + target/linux/mpc85xx/base-files/lib/upgrade/men.sh | 188 +++++++ .../mpc85xx/base-files/lib/upgrade/platform.sh | 10 +- .../files/arch/powerpc/boot/dts/men_nm50.dts | 25 + .../files/arch/powerpc/boot/dts/men_nm50.dtsi | 625 +++++++++++++++++++++ .../arch/powerpc/boot/dts/men_nm50_ubootrw.dts | 13 + .../files/arch/powerpc/platforms/85xx/men_nm50.c | 77 +++ target/linux/mpc85xx/image/Makefile | 21 +- target/linux/mpc85xx/men_nm50/config-default | 37 ++ target/linux/mpc85xx/men_nm50/target.mk | 5 + .../230-powerpc-85xx-men-nm50-support.patch | 22 + target/linux/mpc85xx/profiles/men-nm50.mk | 17 + tools/firmware-utils/src/mktplinkfw.c | 6 + 17 files changed, 1161 insertions(+), 3 deletions(-) create mode 100755 scripts/men-mkfwupgrade.sh create mode 100644 target/linux/mpc85xx/base-files/etc/fw_env.config create mode 100644 target/linux/mpc85xx/base-files/etc/uci-defaults/men_nm50_uhttpd create mode 100755 target/linux/mpc85xx/base-files/lib/upgrade/men.sh create mode 100644 target/linux/mpc85xx/files/arch/powerpc/boot/dts/men_nm50.dts create mode 100644 target/linux/mpc85xx/files/arch/powerpc/boot/dts/men_nm50.dtsi create mode 100644 target/linux/mpc85xx/files/arch/powerpc/boot/dts/men_nm50_ubootrw.dts create mode 100644 target/linux/mpc85xx/files/arch/powerpc/platforms/85xx/men_nm50.c create mode 100644 target/linux/mpc85xx/men_nm50/config-default create mode 100644 target/linux/mpc85xx/men_nm50/target.mk create mode 100644 target/linux/mpc85xx/patches-3.18/230-powerpc-85xx-men-nm50-support.patch create mode 100644 target/linux/mpc85xx/profiles/men-nm50.mk -- 1.9.1 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
