Skip to content

Commit

Permalink
[ramips] D-Link DAP-1350 initial support
Browse files Browse the repository at this point in the history
The initial support for the D-Link DAP-1350.
USB related functionality is not tested.

Signed-off-by: Yoichi Shinoda <shinoda@jaist.ac.jp>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32821 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
blogic committed Jul 24, 2012
1 parent a1375cf commit 1866d62
Show file tree
Hide file tree
Showing 11 changed files with 136 additions and 0 deletions.
3 changes: 3 additions & 0 deletions target/linux/ramips/base-files/etc/diag.sh
Expand Up @@ -39,6 +39,9 @@ get_status_led() {
dir-300-b1 | dir-600-b1 | dir-600-b2)
status_led="d-link:green:status"
;;
dap-1350)
status_led="d-link:blue:power"
;;
esr-9753)
status_led="esr-9753:orange:power"
;;
Expand Down
Expand Up @@ -38,6 +38,10 @@ case "$FIRMWARE" in
rt2x00_eeprom_extract "devdata" 16384 272
;;

dap-1350)
rt2x00_eeprom_extract "devdata" 0 272
;;

rt-n10-plus | \
rt-g32-b1)
rt2x00_eeprom_extract "devconf" 0 272
Expand Down
4 changes: 4 additions & 0 deletions target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
Expand Up @@ -29,6 +29,10 @@ preinit_set_mac_address() {
mac=$(ramips_get_mac_binary devdata 16388)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
dap-1350)
mac=$(ramips_get_mac_binary devdata 46)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
all0256n |\
all5002 | \
fonera20n |\
Expand Down
3 changes: 3 additions & 0 deletions target/linux/ramips/base-files/lib/ramips.sh
Expand Up @@ -80,6 +80,9 @@ ramips_board_name() {
*"DIR-600 B2")
name="dir-600-b2"
;;
*"DAP-1350")
name="dap-1350"
;;
*"ESR-9753")
name="esr-9753"
;;
Expand Down
1 change: 1 addition & 0 deletions target/linux/ramips/base-files/lib/upgrade/platform.sh
Expand Up @@ -21,6 +21,7 @@ platform_check_image() {
dir-300-b1 | \
dir-600-b1 | \
dir-600-b2 | \
dap-1350 | \
esr-9753 | \
fonera20n | \
freestation5 | \
Expand Down
Expand Up @@ -36,6 +36,7 @@ enum ramips_mach_type {
/* RT3052 based machines */
RAMIPS_MACH_ARGUS_ATP52B, /* Argus ATP-52B */
RAMIPS_MACH_BC2, /* NexAira BC2 */
RAMIPS_MACH_DAP_1350, /* D-Link DAP-1350 */
RAMIPS_MACH_ESR_9753, /* Senao / EnGenius ESR-9753*/
RAMIPS_MACH_F5D8235_V2, /* Belkin F5D8235 v2 */
RAMIPS_MACH_FONERA20N, /* La Fonera 2.0N */
Expand Down
5 changes: 5 additions & 0 deletions target/linux/ramips/files/arch/mips/ralink/rt305x/Kconfig
Expand Up @@ -71,6 +71,11 @@ config RT305X_MACH_DIR_300_REVB
select RALINK_DEV_GPIO_BUTTONS
select RALINK_DEV_GPIO_LEDS

config RT305X_MACH_DAP_1350
bool "D-Link DAP-1350 board support"
select RALINK_DEV_GPIO_BUTTONS
select RALINK_DEV_GPIO_LEDS

config RT305X_MACH_ESR_9753
bool "EnGenius ESR-9753 support"
select RALINK_DEV_GPIO_BUTTONS
Expand Down
1 change: 1 addition & 0 deletions target/linux/ramips/files/arch/mips/ralink/rt305x/Makefile
Expand Up @@ -17,6 +17,7 @@ obj-$(CONFIG_RT305X_MACH_BC2) += mach-bc2.o
obj-$(CONFIG_RT305X_MACH_ALL0256N) += mach-all0256n.o
obj-$(CONFIG_RT305X_MACH_ALL5002) += mach-all5002.o
obj-$(CONFIG_RT305X_MACH_DIR_300_REVB) += mach-dir-300-revb.o
obj-$(CONFIG_RT305X_MACH_DAP_1350) += mach-dap-1350.o
obj-$(CONFIG_RT305X_MACH_ESR_9753) += mach-esr-9753.o
obj-$(CONFIG_RT305X_MACH_F5D8235_V2) += mach-f5d8235-v2.o
obj-$(CONFIG_RT305X_MACH_FONERA20N) += mach-fonera20n.o
Expand Down
94 changes: 94 additions & 0 deletions target/linux/ramips/files/arch/mips/ralink/rt305x/mach-dap-1350.c
@@ -0,0 +1,94 @@
/*
* D-Link DAP-1350 board support
*/

#include <linux/init.h>
#include <linux/platform_device.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 DAP_1350_GPIO_LED_POWER_BLUE 8
#define DAP_1350_GPIO_LED_POWER_RED 9
#define DAP_1350_GPIO_LED_WPS 14

#define DAP_1350_GPIO_BUTTON_WPS 0 /* active low */
#define DAP_1350_GPIO_BUTTON_RESET 10 /* active low */
#define DAP_1350_GPIO_SWITCH_MODE_AP 7 /* active low */
#define DAP_1350_GPIO_SWITCH_MODE_RT 11 /* active low */

#define DAP_1350_KEYS_POLL_INTERVAL 20
#define DAP_1350_KEYS_DEBOUNCE_INTERVAL (3 * DAP_1350_KEYS_POLL_INTERVAL)

static struct gpio_led dap_1350_leds_gpio[] __initdata = {
{
.name = "d-link:blue:power",
.gpio = DAP_1350_GPIO_LED_POWER_BLUE,
.active_low = 1,
}, {
.name = "d-link:red:power",
.gpio = DAP_1350_GPIO_LED_POWER_RED,
.active_low = 1,
}, {
.name = "d-link:blue:wps",
.gpio = DAP_1350_GPIO_LED_WPS,
.active_low = 1,
}
};

static struct gpio_keys_button dap_1350_gpio_buttons[] __initdata = {
{
.desc = "reset",
.type = EV_KEY,
.code = KEY_RESTART,
.debounce_interval = DAP_1350_KEYS_DEBOUNCE_INTERVAL,
.gpio = DAP_1350_GPIO_BUTTON_RESET,
.active_low = 1,
}, {
.desc = "wps",
.type = EV_KEY,
.code = KEY_WPS_BUTTON,
.debounce_interval = DAP_1350_KEYS_DEBOUNCE_INTERVAL,
.gpio = DAP_1350_GPIO_BUTTON_WPS,
.active_low = 1,
}, {
.desc = "rt",
.type = EV_KEY,
.code = BTN_0,
.debounce_interval = DAP_1350_KEYS_DEBOUNCE_INTERVAL,
.gpio = DAP_1350_GPIO_SWITCH_MODE_RT,
.active_low = 1,
}, {
.desc = "ap",
.type = EV_KEY,
.code = BTN_1,
.debounce_interval = DAP_1350_KEYS_DEBOUNCE_INTERVAL,
.gpio = DAP_1350_GPIO_SWITCH_MODE_AP,
.active_low = 1,
}
};

static void __init dap_1350_init(void)
{
rt305x_gpio_init(RT305X_GPIO_MODE_GPIO << RT305X_GPIO_MODE_UART0_SHIFT);

rt305x_register_flash(0);

rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_WLLLL;
rt305x_register_ethernet();
ramips_register_gpio_leds(-1, ARRAY_SIZE(dap_1350_leds_gpio),
dap_1350_leds_gpio);
ramips_register_gpio_buttons(-1, DAP_1350_KEYS_POLL_INTERVAL,
ARRAY_SIZE(dap_1350_gpio_buttons),
dap_1350_gpio_buttons);
rt305x_register_wifi();
rt305x_register_wdt();
}

MIPS_MACHINE(RAMIPS_MACH_DAP_1350, "DAP-1350", "D-Link DAP-1350",
dap_1350_init);
19 changes: 19 additions & 0 deletions target/linux/ramips/image/Makefile
Expand Up @@ -182,6 +182,20 @@ define BuildFirmware/DIR300B1/initramfs
$(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),ttyS1,57600) $(call mkmtd/phys,$(mtdlayout_dir300b1)),$(mtd_dir300b1_kernel_part_size),$(mtd_dir300b1_rootfs_part_size))
endef

mtdlayout_dap1350=192k(u-boot)ro,64k(devdata)ro,192k(devconf)ro,256k(devlang)ro,1088k(kernel),6400k(rootfs),7488k@0xb0000(firmware)
mtd_dap1350_kernel_part_size=1114112
mtd_dap1350_rootfs_part_size=6553600
define BuildFirmware/DAP1350
$(call BuildFirmware/Generic,$(1),$(2),$(call mkcmdline,$(3),ttyS1,115200) $(call mkmtd/phys,$(mtdlayout_dap1350)),$(mtd_dap1350_kernel_part_size),$(mtd_dap1350_rootfs_part_size))
mkdapimg -s $(4) \
-i $(call sysupname,$(1),$(2)) \
-o $(call imgname,$(1),$(2))-factory.bin
endef

define BuildFirmware/DAP1350/initramfs
$(call BuildFirmware/Generic/initramfs,$(1),$(2),$(call mkcmdline,$(3),ttyS1,115200) $(call mkmtd/phys,$(mtdlayout_dap1350)),$(mtd_dap1350_kernel_part_size),$(mtd_dap1350_rootfs_part_size))
endef

define BuildFirmware/Edimax
if [ -e "$(call sysupname,$(1),$(2))" ]; then \
mkedimaximg -i $(call sysupname,$(1),$(2)) \
Expand Down Expand Up @@ -353,6 +367,10 @@ define Image/Build/Profile/DIR300B1
$(call Image/Build/Template/$(fs_squash)/$(1),DIR300B1,dir-615-d,DIR-615-D,wrgn23_dlwbr_dir615d)
endef

define Image/Build/Profile/DAP1350
$(call Image/Build/Template/$(fs_squash)/$(1),DAP1350,dap-1350,DAP-1350,RT3052-AP-DAP1350-3)
endef

define Image/Build/Profile/ESR9753
$(call Image/Build/Template/$(fs_squash)/$(1),GENERIC_4M,esr-9753,ESR-9753,ttyS1,57600,phys)
endef
Expand Down Expand Up @@ -472,6 +490,7 @@ 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/DAP1350,$(1))
$(call Image/Build/Profile/ESR9753,$(1))
$(call Image/Build/Profile/F5D8235V2,$(1))
$(call Image/Build/Profile/RTN10PLUS,$(1))
Expand Down
1 change: 1 addition & 0 deletions target/linux/ramips/rt305x/config-3.3
Expand Up @@ -93,6 +93,7 @@ CONFIG_RT305X_MACH_ALL5002=y
CONFIG_RT305X_MACH_ARGUS_ATP52B=y
CONFIG_RT305X_MACH_BC2=y
CONFIG_RT305X_MACH_DIR_300_REVB=y
CONFIG_RT305X_MACH_DAP_1350=y
CONFIG_RT305X_MACH_ESR_9753=y
CONFIG_RT305X_MACH_F5D8235_V2=y
CONFIG_RT305X_MACH_FONERA20N=y
Expand Down

0 comments on commit 1866d62

Please sign in to comment.