From ee8077f0feac7de4476b990bd462cc2b13fe63c0 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Mon, 24 Oct 2011 21:49:36 +0000 Subject: ramips: Support for NexAira BC2 The preconfiguration of the USB LED has benn move to the /etc/uci-defaults/leds script. [juhosg] Signed-off-by: Adam Porter SVN-Revision: 28571 --- .../etc/hotplug.d/firmware/10-rt2x00-eeprom | 1 + .../linux/ramips/base-files/etc/uci-defaults/bc2 | 36 +++++++ .../linux/ramips/base-files/etc/uci-defaults/leds | 3 + .../ramips/base-files/lib/preinit/06_set_iface_mac | 2 +- target/linux/ramips/base-files/lib/ramips.sh | 3 + .../ramips/base-files/lib/upgrade/platform.sh | 2 +- .../arch/mips/include/asm/mach-ralink/machine.h | 1 + .../ramips/files/arch/mips/ralink/rt305x/Kconfig | 5 + .../ramips/files/arch/mips/ralink/rt305x/Makefile | 1 + .../files/arch/mips/ralink/rt305x/mach-bc2.c | 112 +++++++++++++++++++++ target/linux/ramips/image/Makefile | 5 + target/linux/ramips/rt305x/config-2.6.39 | 3 +- 12 files changed, 171 insertions(+), 3 deletions(-) create mode 100644 target/linux/ramips/base-files/etc/uci-defaults/bc2 create mode 100644 target/linux/ramips/files/arch/mips/ralink/rt305x/mach-bc2.c (limited to 'target') diff --git a/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom b/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom index 73dc25529b..d8b35ae30e 100644 --- a/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom +++ b/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom @@ -46,6 +46,7 @@ case "$FIRMWARE" in ;; argus-atp52b | \ + bc2 | \ fonera20n | \ hw550-3g | \ mofi3500-3gn | \ diff --git a/target/linux/ramips/base-files/etc/uci-defaults/bc2 b/target/linux/ramips/base-files/etc/uci-defaults/bc2 new file mode 100644 index 0000000000..3a93df2b71 --- /dev/null +++ b/target/linux/ramips/base-files/etc/uci-defaults/bc2 @@ -0,0 +1,36 @@ +#!/bin/sh +# +# Copyright (C) 2011 OpenWrt.org +# + +bc2_set_macs() { + local part + local lan_mac + local wan_mac + + [ -z $(which maccalc) ] && return + + . /etc/functions.sh + + part=$(find_mtd_part "factory") + [ -z $part ] && return + + lan_mac=$(dd bs=1 skip=4 count=6 if=$part 2>/dev/null | maccalc bin2mac) + [ -z $lan_mac ] && return + + wan_mac=$(maccalc add $lan_mac 1) + + uci batch < + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. + */ + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +#include "devices.h" + +#define BC2_GPIO_BUTTON_RESET 17 +#define BC2_GPIO_LED_USB 20 + +#define BC2_BUTTONS_POLL_INTERVAL 20 + +#ifdef CONFIG_MTD_PARTITIONS +static struct mtd_partition bc2_partitions[] = { + { + .name = "u-boot", + .offset = 0, + .size = 0x030000, + .mask_flags = MTD_WRITEABLE, + }, { + .name = "u-boot-env", + .offset = 0x030000, + .size = 0x010000, + .mask_flags = MTD_WRITEABLE, + }, { + .name = "factory", + .offset = 0x040000, + .size = 0x010000, + .mask_flags = MTD_WRITEABLE, + }, { + .name = "kernel", + .offset = 0x050000, + .size = 0x0a0000, + }, { + .name = "rootfs", + .offset = 0x150000, + .size = 0x6b0000, + }, { + .name = "firmware", + .offset = 0x050000, + .size = 0x7b0000, + } +}; +#endif /* CONFIG_MTD_PARTITIONS */ + +static struct physmap_flash_data bc2_flash_data = { +#ifdef CONFIG_MTD_PARTITIONS + .nr_parts = ARRAY_SIZE(bc2_partitions), + .parts = bc2_partitions, +#endif +}; + +static struct gpio_led bc2_leds_gpio[] __initdata = { + { + .name = "bc2:blue:usb", + .gpio = BC2_GPIO_LED_USB, + .active_low = 1, + } +}; + +static struct gpio_button bc2_gpio_buttons[] __initdata = { + { + .desc = "reset", + .type = EV_KEY, + .code = KEY_RESTART, + .threshold = 3, + .gpio = BC2_GPIO_BUTTON_RESET, + .active_low = 1, + } +}; + +static void __init bc2_init(void) +{ + rt305x_gpio_init((RT305X_GPIO_MODE_GPIO << + RT305X_GPIO_MODE_UART0_SHIFT) | + RT305X_GPIO_MODE_JTAG); + + rt305x_register_flash(0, &bc2_flash_data); + + ramips_register_gpio_leds(-1, ARRAY_SIZE(bc2_leds_gpio), + bc2_leds_gpio); + + ramips_register_gpio_buttons(-1, BC2_BUTTONS_POLL_INTERVAL, + ARRAY_SIZE(bc2_gpio_buttons), + bc2_gpio_buttons); + + rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_LLLLW; + rt305x_register_ethernet(); + rt305x_register_wifi(); + rt305x_register_wdt(); + rt305x_register_usb(); +} + +MIPS_MACHINE(RAMIPS_MACH_BC2, "BC2", "NexAira BC2", + bc2_init); diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index 9136f3a5e2..69c84e66c0 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -154,6 +154,10 @@ define Image/Build/Profile/FONERA20N $(call Image/Build/Template/GENERIC_8M,$(1),fonera20n,FONERA20N) endef +define Image/Build/Profile/BC2 + $(call Image/Build/Template/GENERIC_8M,$(1),bc2,BC2) +endef + define Image/Build/Profile/NBG419N $(call Image/Build/Template/GENERIC_4M,$(1),nbg-419n,NBG-419N) endef @@ -237,6 +241,7 @@ endef ifeq ($(CONFIG_RALINK_RT305X),y) define Image/Build/Profile/Default $(call Image/Build/Profile/ARGUS_ATP52B,$(1)) + $(call Image/Build/Profile/BC2,$(1)) $(call Image/Build/Profile/DIR300B1,$(1)) $(call Image/Build/Profile/RTG32B1,$(1)) $(call Image/Build/Profile/FONERA20N,$(1)) diff --git a/target/linux/ramips/rt305x/config-2.6.39 b/target/linux/ramips/rt305x/config-2.6.39 index 643c938422..5d7e4b12fd 100644 --- a/target/linux/ramips/rt305x/config-2.6.39 +++ b/target/linux/ramips/rt305x/config-2.6.39 @@ -92,13 +92,14 @@ CONFIG_RALINK_DEV_GPIO_LEDS=y CONFIG_RALINK_RT305X=y CONFIG_RAMIPS_WDT=y CONFIG_RT305X_MACH_ARGUS_ATP52B=y +CONFIG_RT305X_MACH_BC2=y CONFIG_RT305X_MACH_DIR_300_REVB=y CONFIG_RT305X_MACH_F5D8235_V2=y CONFIG_RT305X_MACH_FONERA20N=y CONFIG_RT305X_MACH_HW550_3G=y CONFIG_RT305X_MACH_MOFI3500_3GN=y -CONFIG_RT305X_MACH_NW718=y CONFIG_RT305X_MACH_NBG_419N=y +CONFIG_RT305X_MACH_NW718=y CONFIG_RT305X_MACH_PWH2004=y CONFIG_RT305X_MACH_RT_G32_REVB=y CONFIG_RT305X_MACH_V22RW_2X2=y -- cgit v1.2.3