ar71xx: Buffalo WHR-HP-G300N kernel support
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-tl-mr3x20.c
index 7e8ab4c21f011a93f53d067473826cd46a3a7e82..341f22907e9f36cfb80753ac18e9d78446f6db71 100644 (file)
@@ -31,7 +31,8 @@
 
 #define TL_MR3X20_GPIO_USB_POWER       6
 
-#define TL_MR3X20_BUTTONS_POLL_INTERVAL        20
+#define TL_MR3X20_KEYS_POLL_INTERVAL   20      /* msecs */
+#define TL_MR3X20_KEYS_DEBOUNCE_INTERVAL (3 * TL_MR3X20_KEYS_POLL_INTERVAL)
 
 #ifdef CONFIG_MTD_PARTITIONS
 static struct mtd_partition tl_mr3x20_partitions[] = {
@@ -86,19 +87,19 @@ static struct gpio_led tl_mr3x20_leds_gpio[] __initdata = {
        }
 };
 
-static struct gpio_button tl_mr3x20_gpio_buttons[] __initdata = {
+static struct gpio_keys_button tl_mr3x20_gpio_keys[] __initdata = {
        {
                .desc           = "reset",
                .type           = EV_KEY,
                .code           = KEY_RESTART,
-               .threshold      = 3,
+               .debounce_interval = TL_MR3X20_KEYS_DEBOUNCE_INTERVAL,
                .gpio           = TL_MR3X20_GPIO_BTN_RESET,
                .active_low     = 1,
        }, {
                .desc           = "qss",
                .type           = EV_KEY,
                .code           = KEY_WPS_BUTTON,
-               .threshold      = 3,
+               .debounce_interval = TL_MR3X20_KEYS_DEBOUNCE_INTERVAL,
                .gpio           = TL_MR3X20_GPIO_BTN_QSS,
                .active_low     = 1,
        }
@@ -118,9 +119,9 @@ static void __init tl_mr3x20_setup(void)
        ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tl_mr3x20_leds_gpio),
                                        tl_mr3x20_leds_gpio);
 
-       ar71xx_add_device_gpio_buttons(-1, TL_MR3X20_BUTTONS_POLL_INTERVAL,
-                                       ARRAY_SIZE(tl_mr3x20_gpio_buttons),
-                                       tl_mr3x20_gpio_buttons);
+       ar71xx_register_gpio_keys_polled(-1, TL_MR3X20_KEYS_POLL_INTERVAL,
+                                        ARRAY_SIZE(tl_mr3x20_gpio_keys),
+                                        tl_mr3x20_gpio_keys);
 
        ar71xx_eth1_data.has_ar7240_switch = 1;
        ar71xx_init_mac(ar71xx_eth0_data.mac_addr, mac, 0);
@@ -130,6 +131,7 @@ static void __init tl_mr3x20_setup(void)
        ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
        ar71xx_eth0_data.speed = SPEED_100;
        ar71xx_eth0_data.duplex = DUPLEX_FULL;
+       ar71xx_eth0_data.phy_mask = BIT(4);
 
        /* LAN ports */
        ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;