1 --- a/arch/mips/bcm63xx/boards/board_bcm963xx.c
2 +++ b/arch/mips/bcm63xx/boards/board_bcm963xx.c
4 #include <linux/mtd/partitions.h>
5 #include <linux/mtd/physmap.h>
6 #include <linux/ssb/ssb.h>
7 +#include <linux/gpio_buttons.h>
8 +#include <linux/input.h>
9 #include <asm/addrspace.h>
10 #include <bcm63xx_board.h>
11 #include <bcm63xx_cpu.h>
12 @@ -288,6 +290,16 @@ static struct board_info __initdata boar
28 static struct board_info __initdata board_96348gw = {
29 @@ -345,6 +357,16 @@ static struct board_info __initdata boar
45 static struct board_info __initdata board_FAST2404 = {
46 @@ -771,6 +793,16 @@ static struct platform_device bcm63xx_gp
47 .dev.platform_data = &bcm63xx_led_data,
50 +static struct gpio_buttons_platform_data bcm63xx_gpio_buttons_data = {
51 + .poll_interval = 20,
54 +static struct platform_device bcm63xx_gpio_buttons_device = {
55 + .name = "gpio-buttons",
57 + .dev.platform_data = &bcm63xx_gpio_buttons_data,
61 * third stage init callback, register all board devices.
63 @@ -826,6 +858,13 @@ int __init board_register_devices(void)
65 platform_device_register(&bcm63xx_gpio_leds);
67 + if (board.reset_buttons) {
68 + bcm63xx_gpio_buttons_data.nbuttons = ARRAY_SIZE(board.reset_buttons);
69 + bcm63xx_gpio_buttons_data.buttons = board.reset_buttons;
71 + platform_device_register(&bcm63xx_gpio_buttons_device);
77 --- a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
78 +++ b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h
79 @@ -55,6 +55,9 @@ struct board_info {
82 struct gpio_led leds[5];
85 + struct gpio_button reset_buttons[1];
88 #endif /* ! BOARD_BCM963XX_H_ */