ar71xx: move leds-gpio device support into a spearate file
[openwrt.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-tew-632brp.c
1 /*
2  *  TrendNET TEW-632BRP board support
3  *
4  *  Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5  *  Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6  *
7  *  This program is free software; you can redistribute it and/or modify it
8  *  under the terms of the GNU General Public License version 2 as published
9  *  by the Free Software Foundation.
10  */
11
12 #include <linux/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/input.h>
16
17 #include <asm/mips_machine.h>
18 #include <asm/mach-ar71xx/ar71xx.h>
19
20 #include "devices.h"
21 #include "dev-m25p80.h"
22 #include "dev-ar913x-wmac.h"
23 #include "dev-leds-gpio.h"
24
25 #define TEW_632BRP_GPIO_LED_STATUS      1
26 #define TEW_632BRP_GPIO_LED_WPS         3
27 #define TEW_632BRP_GPIO_LED_WLAN        6
28 #define TEW_632BRP_GPIO_BTN_WPS         12
29 #define TEW_632BRP_GPIO_BTN_RESET       21
30
31 #define TEW_632BRP_BUTTONS_POLL_INTERVAL        20
32
33 #ifdef CONFIG_MTD_PARTITIONS
34 static struct mtd_partition tew_632brp_partitions[] = {
35         {
36                 .name           = "u-boot",
37                 .offset         = 0,
38                 .size           = 0x020000,
39                 .mask_flags     = MTD_WRITEABLE,
40         } , {
41                 .name           = "config",
42                 .offset         = 0x020000,
43                 .size           = 0x010000,
44         } , {
45                 .name           = "kernel",
46                 .offset         = 0x030000,
47                 .size           = 0x0d0000,
48         } , {
49                 .name           = "rootfs",
50                 .offset         = 0x100000,
51                 .size           = 0x2f0000,
52         } , {
53                 .name           = "art",
54                 .offset         = 0x3f0000,
55                 .size           = 0x010000,
56                 .mask_flags     = MTD_WRITEABLE,
57         } , {
58                 .name           = "firmware",
59                 .offset         = 0x030000,
60                 .size           = 0x3c0000,
61         }
62 };
63 #endif /* CONFIG_MTD_PARTITIONS */
64
65 static struct flash_platform_data tew_632brp_flash_data = {
66 #ifdef CONFIG_MTD_PARTITIONS
67         .parts          = tew_632brp_partitions,
68         .nr_parts       = ARRAY_SIZE(tew_632brp_partitions),
69 #endif
70 };
71
72 static struct gpio_led tew_632brp_leds_gpio[] __initdata = {
73         {
74                 .name           = "tew-632brp:green:status",
75                 .gpio           = TEW_632BRP_GPIO_LED_STATUS,
76                 .active_low     = 1,
77         }, {
78                 .name           = "tew-632brp:blue:wps",
79                 .gpio           = TEW_632BRP_GPIO_LED_WPS,
80                 .active_low     = 1,
81         }, {
82                 .name           = "tew-632brp:green:wlan",
83                 .gpio           = TEW_632BRP_GPIO_LED_WLAN,
84                 .active_low     = 1,
85         }
86 };
87
88 static struct gpio_button tew_632brp_gpio_buttons[] __initdata = {
89         {
90                 .desc           = "reset",
91                 .type           = EV_KEY,
92                 .code           = BTN_0,
93                 .threshold      = 5,
94                 .gpio           = TEW_632BRP_GPIO_BTN_RESET,
95         }, {
96                 .desc           = "wps",
97                 .type           = EV_KEY,
98                 .code           = BTN_1,
99                 .threshold      = 5,
100                 .gpio           = TEW_632BRP_GPIO_BTN_WPS,
101         }
102 };
103
104 static void __init tew_632brp_setup(void)
105 {
106         ar71xx_add_device_mdio(0x0);
107
108         ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
109         ar71xx_eth0_data.phy_mask = 0xf;
110         ar71xx_eth0_data.speed = SPEED_100;
111         ar71xx_eth0_data.duplex = DUPLEX_FULL;
112
113         ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
114         ar71xx_eth1_data.phy_mask = 0x10;
115
116         ar71xx_add_device_eth(0);
117         ar71xx_add_device_eth(1);
118
119         ar71xx_add_device_m25p80(&tew_632brp_flash_data);
120
121         ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tew_632brp_leds_gpio),
122                                         tew_632brp_leds_gpio);
123
124         ar71xx_add_device_gpio_buttons(-1, TEW_632BRP_BUTTONS_POLL_INTERVAL,
125                                         ARRAY_SIZE(tew_632brp_gpio_buttons),
126                                         tew_632brp_gpio_buttons);
127
128         ar913x_add_device_wmac();
129 }
130
131 MIPS_MACHINE(AR71XX_MACH_TEW_632BRP, "TRENDnet TEW-632BRP", tew_632brp_setup);