2 * D-Link DIR-300 rev B board support
4 * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
11 #include <linux/init.h>
12 #include <linux/platform_device.h>
14 #include <asm/mach-ralink/machine.h>
15 #include <asm/mach-ralink/dev-gpio-buttons.h>
16 #include <asm/mach-ralink/dev-gpio-leds.h>
17 #include <asm/mach-ralink/rt305x.h>
18 #include <asm/mach-ralink/rt305x_regs.h>
22 #define DIR_300B_GPIO_LED_STATUS_AMBER 8
23 #define DIR_300B_GPIO_LED_STATUS_GREEN 9
24 #define DIR_300B_GPIO_LED_WPS 13
26 #define DIR_300B_GPIO_BUTTON_WPS 0 /* active low */
27 #define DIR_300B_GPIO_BUTTON_RESET 10 /* active low */
29 #define DIR_300B_KEYS_POLL_INTERVAL 20
30 #define DIR_300B_KEYS_DEBOUNCE_INTERVAL (3 * DIR_300B_KEYS_POLL_INTERVAL)
32 static struct gpio_led dir_300b_leds_gpio
[] __initdata
= {
34 .name
= "d-link:amber:status",
35 .gpio
= DIR_300B_GPIO_LED_STATUS_AMBER
,
38 .name
= "d-link:green:status",
39 .gpio
= DIR_300B_GPIO_LED_STATUS_GREEN
,
42 .name
= "d-link:blue:wps",
43 .gpio
= DIR_300B_GPIO_LED_WPS
,
48 static struct gpio_keys_button dir_300b_gpio_buttons
[] __initdata
= {
53 .debounce_interval
= DIR_300B_KEYS_DEBOUNCE_INTERVAL
,
54 .gpio
= DIR_300B_GPIO_BUTTON_RESET
,
59 .code
= KEY_WPS_BUTTON
,
60 .debounce_interval
= DIR_300B_KEYS_DEBOUNCE_INTERVAL
,
61 .gpio
= DIR_300B_GPIO_BUTTON_WPS
,
66 static void __init
dir_300b_init(void)
68 rt305x_gpio_init(RT305X_GPIO_MODE_GPIO
<< RT305X_GPIO_MODE_UART0_SHIFT
);
70 rt305x_register_flash(0);
72 rt305x_esw_data
.vlan_config
= RT305X_ESW_VLAN_CONFIG_LLLLW
;
73 rt305x_register_ethernet();
74 ramips_register_gpio_leds(-1, ARRAY_SIZE(dir_300b_leds_gpio
),
76 ramips_register_gpio_buttons(-1, DIR_300B_KEYS_POLL_INTERVAL
,
77 ARRAY_SIZE(dir_300b_gpio_buttons
),
78 dir_300b_gpio_buttons
);
79 rt305x_register_wifi();
80 rt305x_register_wdt();
83 MIPS_MACHINE(RAMIPS_MACH_DIR_300_B1
, "DIR-300-B1", "D-Link DIR-300 B1",
86 MIPS_MACHINE(RAMIPS_MACH_DIR_600_B1
, "DIR-600-B1", "D-Link DIR-600 B1",
89 MIPS_MACHINE(RAMIPS_MACH_DIR_600_B2
, "DIR-600-B2", "D-Link DIR-600 B2",