2 * Buffalo WHR-G300N 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 WHR_G300N_GPIO_LED_DIAG 7
23 #define WHR_G300N_GPIO_LED_ROUTER 9
24 #define WHR_G300N_GPIO_LED_SECURITY 14
26 #define WHR_G300N_GPIO_BUTTON_AOSS 0 /* active low */
27 #define WHR_G300N_GPIO_BUTTON_RESET 10 /* active low */
28 #define WHR_G300N_GPIO_BUTTON_ROUTER_ON 8 /* active low */
29 #define WHR_G300N_GPIO_BUTTON_ROUTER_OFF 11 /* active low */
31 #define WHR_G300N_KEYS_POLL_INTERVAL 20
32 #define WHR_G300N_KEYS_DEBOUNCE_INTERVAL (3 * WHR_G300N_KEYS_POLL_INTERVAL)
34 static struct gpio_led whr_g300n_leds_gpio
[] __initdata
= {
36 .name
= "whr-g300n:red:diag",
37 .gpio
= WHR_G300N_GPIO_LED_DIAG
,
40 .name
= "whr-g300n:green:router",
41 .gpio
= WHR_G300N_GPIO_LED_ROUTER
,
44 .name
= "whr-g300n:amber:security",
45 .gpio
= WHR_G300N_GPIO_LED_SECURITY
,
50 static struct gpio_keys_button whr_g300n_gpio_buttons
[] __initdata
= {
55 .debounce_interval
= WHR_G300N_KEYS_DEBOUNCE_INTERVAL
,
56 .gpio
= WHR_G300N_GPIO_BUTTON_RESET
,
61 .code
= KEY_WPS_BUTTON
,
62 .debounce_interval
= WHR_G300N_KEYS_DEBOUNCE_INTERVAL
,
63 .gpio
= WHR_G300N_GPIO_BUTTON_AOSS
,
69 .debounce_interval
= WHR_G300N_KEYS_DEBOUNCE_INTERVAL
,
70 .gpio
= WHR_G300N_GPIO_BUTTON_ROUTER_OFF
,
76 .debounce_interval
= WHR_G300N_KEYS_DEBOUNCE_INTERVAL
,
77 .gpio
= WHR_G300N_GPIO_BUTTON_ROUTER_ON
,
82 static void __init
whr_g300n_init(void)
84 rt305x_gpio_init(RT305X_GPIO_MODE_GPIO
<< RT305X_GPIO_MODE_UART0_SHIFT
);
86 rt305x_register_flash(0);
88 rt305x_esw_data
.vlan_config
= RT305X_ESW_VLAN_CONFIG_LLLLW
;
89 rt305x_register_ethernet();
90 ramips_register_gpio_leds(-1, ARRAY_SIZE(whr_g300n_leds_gpio
),
92 ramips_register_gpio_buttons(-1, WHR_G300N_KEYS_POLL_INTERVAL
,
93 ARRAY_SIZE(whr_g300n_gpio_buttons
),
94 whr_g300n_gpio_buttons
);
95 rt305x_register_wifi();
96 rt305x_register_wdt();
99 MIPS_MACHINE(RAMIPS_MACH_WHR_G300N
, "WHR-G300N", "Buffalo WHR-G300N",