rt2x00_eeprom_extract "factory" 0 272
;;
+ wl341v3)
+ rt2x00_eeprom_extract "board-nvram" 64880 272
+ ;;
+
*)
rt2x00_eeprom_die "board $board is not supported yet"
;;
wan_mac=$(ramips_get_mac_binary factory 40)
;;
+ wl341v3)
+ lan_mac=$(ramips_get_mac_binary board-nvram 65440)
+ wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
+ ;;
+
wli-tx4-ag300n)
lan_mac=$(ramips_get_mac_binary factory 4)
;;
mac=$(ramips_get_mac_binary factory 40)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
+ wl341v3)
+ mac=$(ramips_get_mac_binary board-nvram 65440)
+ ifconfig eth0 hw ether $mac 2>/dev/null
+ ;;
esac
}
*"WHR-G300N")
name="whr-g300n"
;;
+ *"Sitecom WL-341 v3")
+ name="wl341v3"
+ ;;
*"Sitecom WL-351 v1 002")
name="wl-351"
;;
rt-n15 | \
w502u |\
v22rw-2x2 | \
+ wl341v3 | \
wli-tx4-ag300n | \
whr-g300n |\
wr512-3gn)
RAMIPS_MACH_W502U, /* ALFA Networks W502U */
RAMIPS_MACH_WCR150GN, /* Sparklan WCR-150GN */
RAMIPS_MACH_WHR_G300N, /* Buffalo WHR-G300N */
+ RAMIPS_MACH_WL341V3, /* Sitecom WL-341 v3 */
RAMIPS_MACH_WL351, /* Sitecom WL-351 v1 002 */
RAMIPS_MACH_WR512_3GN, /* SH-WR512NU/WS-WR512N1-like 3GN*/
};
select RALINK_DEV_GPIO_BUTTONS
select RALINK_DEV_GPIO_LEDS
+config RT305X_MACH_WL341V3
+ bool "Sitecom WL-341 v3 board support"
+ select RALINK_DEV_GPIO_BUTTONS
+ select RALINK_DEV_GPIO_LEDS
+
config RT305X_MACH_WL351
bool "Sitecom WL-351 support"
select RALINK_DEV_GPIO_BUTTONS
obj-$(CONFIG_RT305X_MACH_WCR150GN) += mach-wcr150gn.o
obj-$(CONFIG_RT305X_MACH_WHR_G300N) += mach-whr-g300n.o
obj-$(CONFIG_RT305X_MACH_WR512_3GN) += mach-wr512-3gn.o
+obj-$(CONFIG_RT305X_MACH_WL341V3) += mach-wl341v3.o
obj-$(CONFIG_RT305X_MACH_WL351) += mach-wl351.o
--- /dev/null
+/*
+ * Sitecom WL341v3 board support
+ *
+ * Copyright (C) 2012 Marco Antonio Mauro <marcus90@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 WL341V3_GPIO_LED_FIRST_AMBER 9
+#define WL341V3_GPIO_LED_FIRST_BLUE 13
+#define WL341V3_GPIO_LED_THIRD_AMBER 11
+#define WL341V3_GPIO_LED_THIRD_BLUE 14
+#define WL341V3_GPIO_LED_FOURTH_BLUE 10
+#define WL341V3_GPIO_LED_FIFTH_AMBER 12
+#define WL341V3_GPIO_LED_FIFTH_BLUE 8
+
+#define WL341V3_GPIO_BUTTON_WPS 5 /* active low */
+#define WL341V3_GPIO_BUTTON_RESET 7 /* active low */
+
+#define WL341V3_BUTTONS_POLL_INTERVAL 20
+
+#ifdef CONFIG_MTD_PARTITIONS
+static struct mtd_partition wl341v3_partitions[] = {
+ {
+ .name = "u-boot",
+ .offset = 0,
+ .size = 0x020000,
+ .mask_flags = MTD_WRITEABLE,
+ }, {
+ .name = "board-nvram",
+ .offset = 0x020000,
+ .size = 0x010000,
+ .mask_flags = MTD_WRITEABLE,
+ }, {
+ .name = "u-boot-env",
+ .offset = 0x030000,
+ .size = 0x010000,
+ .mask_flags = MTD_WRITEABLE,
+ }, {
+ .name = "kernel",
+ .offset = 0x040000,
+ .size = 0x0d0000,
+ }, {
+ .name = "rootfs",
+ .offset = 0x110000,
+ .size = 0x2e0000,
+ }, {
+ .name = "signature-eRcOmM",
+ .offset = 0x3f0000,
+ .size = 0x010000,
+ }, {
+ .name = "firmware",
+ .offset = 0x040000,
+ .size = 0x3b0000,
+ }, {
+ .name = "fullflash",
+ .offset = 0x000000,
+ .size = 0x400000,
+ }
+};
+#endif /* CONFIG_MTD_PARTITIONS */
+
+static struct physmap_flash_data wl341v3_flash_data = {
+#ifdef CONFIG_MTD_PARTITIONS
+ .nr_parts = ARRAY_SIZE(wl341v3_partitions),
+ .parts = wl341v3_partitions,
+#endif
+};
+
+static struct gpio_led wl341v3_leds_gpio[] __initdata = {
+ {
+ .name = "wl341v3:amber:first",
+ .gpio = WL341V3_GPIO_LED_FIRST_AMBER,
+ .active_low = 1,
+ }, {
+ .name = "wl341v3:blue:first",
+ .gpio = WL341V3_GPIO_LED_FIRST_BLUE,
+ .active_low = 1,
+ }, {
+ .name = "wl341v3:amber:third",
+ .gpio = WL341V3_GPIO_LED_THIRD_AMBER,
+ .active_low = 1,
+ }, {
+ .name = "wl341v3:blue:third",
+ .gpio = WL341V3_GPIO_LED_THIRD_BLUE,
+ .active_low = 1,
+ }, {
+ .name = "wl341v3:blue:fourth",
+ .gpio = WL341V3_GPIO_LED_FOURTH_BLUE,
+ .active_low = 1,
+ }, {
+ .name = "wl341v3:amber:fifth",
+ .gpio = WL341V3_GPIO_LED_FIFTH_AMBER,
+ .active_low = 1,
+ }, {
+ .name = "wl341v3:blue:fifth",
+ .gpio = WL341V3_GPIO_LED_FIFTH_BLUE,
+ .active_low = 1,
+ }
+};
+
+static struct gpio_button wl341v3_gpio_buttons[] __initdata = {
+ {
+ .desc = "reset",
+ .type = EV_KEY,
+ .code = KEY_RESTART,
+ .threshold = 3,
+ .gpio = WL341V3_GPIO_BUTTON_RESET,
+ .active_low = 1,
+ }, {
+ .desc = "wps",
+ .type = EV_KEY,
+ .code = KEY_WPS_BUTTON,
+ .threshold = 3,
+ .gpio = WL341V3_GPIO_BUTTON_WPS,
+ .active_low = 1,
+ }
+};
+
+static void __init wl341v3_init(void)
+{
+ rt305x_gpio_init(RT305X_GPIO_MODE_GPIO << RT305X_GPIO_MODE_UART0_SHIFT);
+
+ rt305x_register_flash(0, &wl341v3_flash_data);
+ rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_WLLLL;
+ rt305x_register_ethernet();
+ ramips_register_gpio_leds(-1, ARRAY_SIZE(wl341v3_leds_gpio),
+ wl341v3_leds_gpio);
+ ramips_register_gpio_buttons(-1, WL341V3_BUTTONS_POLL_INTERVAL,
+ ARRAY_SIZE(wl341v3_gpio_buttons),
+ wl341v3_gpio_buttons);
+ rt305x_register_wifi();
+ rt305x_register_wdt();
+ rt305x_register_usb();
+}
+
+MIPS_MACHINE(RAMIPS_MACH_WL341V3, "WL341V3", "Sitecom WL-341 v3",
+ wl341v3_init);
fi; fi
endef
+define BuildFirmware/WL341V3
+ $(call PatchKernelLzma,$(2),$(3) $($(4)))
+ $(call MkImage,lzma,"$(KDIR)/vmlinux-$(2).bin.lzma","$(KDIR)/vmlinux-$(2).uImage")
+ if [ `stat -c%s "$(KDIR)/vmlinux-$(2).uImage"` -gt $(5) ]; then \
+ echo "Warning: $(KDIR)/vmlinux-$(2).uImage is too big"; \
+ else if [ `stat -c%s $(KDIR)/root.$(1)` -gt $(6) ]; then \
+ echo "Warning: $(KDIR)/root.$(1) is too big"; \
+ else \
+ ( \
+ dd if=/dev/zero bs=195936 count=1; \
+ echo "1.01"; \
+ dd if=/dev/zero bs=581 count=1; \
+ echo -n -e "\x73\x45\x72\x43\x6F\x4D\x6D\x00\x01\x00\x00\x59\x4E\x37\x95\x58\x10\x00\x20\x00\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x03\x00\x00\x80\x00\x00\x00\x00\x03\x00\x00\x10\x12\x00\x00\x00\x10\x73\x45\x72\x43\x6F\x4D\x6D"; \
+ dd if=/dev/zero bs=65552 count=1; \
+ dd if=$(KDIR)/vmlinux-$(2).uImage bs=$(5) conv=sync; \
+ dd if=$(KDIR)/root.$(1) bs=64k conv=sync; \
+ dd if=/dev/zero bs=`expr 4194304 - 262144 - 16 - $(5) - \( \( \( \`stat -c%s $(KDIR)/root.$(1)\` / 65536 \) + 1 \) \* 65536 \)` count=1; \
+ echo -n -e "\x11\x03\x80\x00\x10\x12\x90\xF7\x65\x52\x63\x4F\x6D\x4D\x00\x00"; \
+ ) > $(call imgname,$(1),$(2))-factory.bin; \
+ fi; fi
+endef
+
define BuildFirmware/Buffalo
$(call PatchKernelLzma,$(2),board=$(3) $($(4)))
$(call MkImage,lzma,"$(KDIR)/vmlinux-$(2).bin.lzma","$(KDIR)/vmlinux-$(2).uImage")
$(call BuildFirmware/Generic,$(1),$(2),board=$(3) console=$(console_OMNIEMB),mtdlayout_OMNIEMB,1048576,7012352)
endef
+mtdlayout_sercomm_4M=mtdparts=physmap-flash.0:128k(u-boot)ro,64k(board-nvram)ro,64k(u-boot-env)ro,832k(kernel),2944k(rootfs),64k(signature-eRcOmM),3776k@0x40000(firmware),4096k@0x0(fullflash)
+define Image/Build/Template/WL341V3
+ $(call BuildFirmware/Generic,$(1),$(2),board=$(3),mtdlayout_sercomm_4M,851968,3014656)
+ $(call BuildFirmware/WL341V3,$(1),$(2),board=$(3),mtdlayout_sercomm_4M,851968,3014656)
+endef
+
+define Image/Build/Profile/WL341V3
+ $(call Image/Build/Template/WL341V3,$(1),wl341v3,WL341V3)
+endef
+
define Image/Build/Profile/DIR300B1
$(call Image/Build/Template/DIR300B1,$(1),dir-300-b1,DIR-300-B1,wrgn23_dlwbr_dir300b)
$(call Image/Build/Template/DIR300B1,$(1),dir-600-b1,DIR-600-B1,wrgn23_dlwbr_dir600b)
$(call Image/Build/Profile/MOFI35003GN,$(1))
$(call Image/Build/Profile/W502U,$(1))
$(call Image/Build/Profile/WR5123GN,$(1))
+ $(call Image/Build/Profile/WL341V3,$(1))
$(call Image/Build/Profile/WL351,$(1))
endef
endif
CONFIG_RT305X_MACH_W502U=y
CONFIG_RT305X_MACH_WCR150GN=y
CONFIG_RT305X_MACH_WHR_G300N=y
+CONFIG_RT305X_MACH_WL341V3=y
CONFIG_RT305X_MACH_WL351=y
CONFIG_RT305X_MACH_WR512_3GN=y
# CONFIG_SCSI_DMA is not set