Signed-off-by: Adam Porter <porter.adam at gmail.com>

Index: target/linux/ramips/files/arch/mips/ralink/rt305x/Kconfig
===================================================================
--- target/linux/ramips/files/arch/mips/ralink/rt305x/Kconfig   (revision 28313)
+++ target/linux/ramips/files/arch/mips/ralink/rt305x/Kconfig   (working copy)
@@ -51,6 +51,11 @@
        select RALINK_DEV_GPIO_BUTTONS
        select RALINK_DEV_GPIO_LEDS

+config RT305X_MACH_BC2
+       bool "NexAira BC2"
+       select RALINK_DEV_GPIO_BUTTONS
+       select RALINK_DEV_GPIO_LEDS
+
 config RT305X_MACH_PWH2004
        bool "Prolink PWH2004 / Abocom WR5205 support (32M RAM, 8M flash)"
        select RALINK_DEV_GPIO_BUTTONS
Index: target/linux/ramips/files/arch/mips/ralink/rt305x/mach-bc2.c
===================================================================
--- target/linux/ramips/files/arch/mips/ralink/rt305x/mach-bc2.c        
(revision 0)
+++ target/linux/ramips/files/arch/mips/ralink/rt305x/mach-bc2.c        
(revision 0)
@@ -0,0 +1,112 @@
+/*
+ *  NexAira BC2 board support
+ *
+ *  Copyright (C) 2011 Adam J. Porter <porter.a...@gmail.com>
+ *
+ *  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 <linux/init.h>
+#include <linux/platform_device.h>
+#include <linux/mtd/mtd.h>
+#include <linux/mtd/partitions.h>
+#include <linux/mtd/physmap.h>
+
+#include <asm/mach-ralink/machine.h>
+#include <asm/mach-ralink/dev-gpio-buttons.h>
+#include <asm/mach-ralink/dev-gpio-leds.h>
+#include <asm/mach-ralink/rt305x.h>
+#include <asm/mach-ralink/rt305x_regs.h>
+
+#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);
Index: target/linux/ramips/files/arch/mips/ralink/rt305x/Makefile
===================================================================
--- target/linux/ramips/files/arch/mips/ralink/rt305x/Makefile  (revision 28313)
+++ target/linux/ramips/files/arch/mips/ralink/rt305x/Makefile  (working copy)
@@ -12,6 +12,7 @@
 obj-$(CONFIG_EARLY_PRINTK)             += early_printk.o

 obj-$(CONFIG_RT305X_MACH_ARGUS_ATP52B) += mach-argus-atp52b.o
+obj-$(CONFIG_RT305X_MACH_BC2)          += mach-bc2.o
 obj-$(CONFIG_RT305X_MACH_DIR_300_REVB) += mach-dir-300-revb.o
 obj-$(CONFIG_RT305X_MACH_F5D8235_V2)    += mach-f5d8235-v2.o
 obj-$(CONFIG_RT305X_MACH_FONERA20N)    += mach-fonera20n.o
Index: target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h
===================================================================
--- target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h       
(revision
28313)
+++ target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h       
(working
copy)
@@ -26,6 +26,7 @@

        /* RT3052 based machines */
        RAMIPS_MACH_ARGUS_ATP52B,       /* Argus ATP-52B */
+       RAMIPS_MACH_BC2,                /* NexAira BC2 */
        RAMIPS_MACH_F5D8235_V2,         /* Belkin F5D8235 v2 */
        RAMIPS_MACH_FONERA20N,          /* La Fonera 2.0N */
        RAMIPS_MACH_HW550_3G,           /* Aztech HW550-3G */
Index: target/linux/ramips/image/Makefile
===================================================================
--- target/linux/ramips/image/Makefile  (revision 28313)
+++ target/linux/ramips/image/Makefile  (working copy)
@@ -154,6 +154,10 @@
        $(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 @@
 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))
Index: target/linux/ramips/rt305x/config-2.6.39
===================================================================
--- target/linux/ramips/rt305x/config-2.6.39    (revision 28313)
+++ target/linux/ramips/rt305x/config-2.6.39    (working copy)
@@ -92,13 +92,14 @@
 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_NBG_419N=y
 CONFIG_RT305X_MACH_NW718=y
-CONFIG_RT305X_MACH_NBG_419N=y
 CONFIG_RT305X_MACH_PWH2004=y
 CONFIG_RT305X_MACH_RT_G32_REVB=y
 CONFIG_RT305X_MACH_V22RW_2X2=y
Index: target/linux/ramips/base-files/lib/ramips.sh
===================================================================
--- target/linux/ramips/base-files/lib/ramips.sh        (revision 28313)
+++ target/linux/ramips/base-files/lib/ramips.sh        (working copy)
@@ -37,6 +37,9 @@
        *"NBG-419N")
                name="nbg-419n"
                ;;
+       *"NexAira BC2")
+               name="bc2"
+               ;;
        *"NW718")
                name="nw718"
                ;;
Index: target/linux/ramips/base-files/lib/upgrade/platform.sh
===================================================================
--- target/linux/ramips/base-files/lib/upgrade/platform.sh      (revision 28313)
+++ target/linux/ramips/base-files/lib/upgrade/platform.sh      (working copy)
@@ -14,7 +14,7 @@
        [ "$ARGC" -gt 1 ] && return 1

        case "$board" in
-       dir-300-b1 | dir-600-b1 | dir-600-b2 | fonera20n | nbg-419n | nw718
| rt-g32-b1 | v22rw-2x2 | whr-g300n | hw550-3g | mofi3500-3gn)
+       bc2 | dir-300-b1 | dir-600-b1 | dir-600-b2 | fonera20n | nbg-419n |
nw718 | rt-g32-b1 | v22rw-2x2 | whr-g300n | hw550-3g | mofi3500-3gn)
                [ "$magic" != "2705" ] && {
                        echo "Invalid image type."
                        return 1
Index: target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
===================================================================
--- target/linux/ramips/base-files/lib/preinit/06_set_iface_mac (revision 28313)
+++ target/linux/ramips/base-files/lib/preinit/06_set_iface_mac (working copy)
@@ -24,7 +24,7 @@
        . /lib/ramips.sh

        case $(ramips_board_name) in
-       nw718)
+       bc2 | nw718)
                nw718_set_mac
                ;;
        esac
Index: target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
===================================================================
--- target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom      
(revision
28313)
+++ target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom      
(working
copy)
@@ -46,6 +46,7 @@
                ;;

        argus-atp52b | \
+       bc2 | \
        fonera20n | \
        hw550-3g | \
        mofi3500-3gn | \
Index: target/linux/ramips/base-files/etc/uci-defaults/bc2
===================================================================
--- target/linux/ramips/base-files/etc/uci-defaults/bc2 (revision 0)
+++ target/linux/ramips/base-files/etc/uci-defaults/bc2 (revision 0)
@@ -0,0 +1,49 @@
+#!/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 <<EOF
+set network.lan.macaddr='$lan_mac'
+set network.wan.macaddr='$wan_mac'
+commit network
+EOF
+}
+
+bc2_set_leds() {
+       uci batch <<EOF
+set system.usb_led=led
+set system.usb_led.name='USB'
+set system.usb_led.sysfs='bc2:blue:usb'
+set system.usb_led.trigger='usbdev'
+set system.usb_led.dev='1-1'
+set system.usb_led.interval='50'
+commit system
+EOF
+}
+
+. /lib/ramips.sh
+
+board=$(ramips_board_name)
+
+if [ "${board}" == "bc2" ]; then
+       bc2_set_leds
+       bc2_set_macs
+fi
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to