ar71xx: remove more unnecessary includes
[openwrt.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-wrt160nl.c
1 /*
2  *  Linksys WRT160NL board support
3  *
4  *  Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
5  *
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.
9  */
10
11 #include <linux/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
13
14 #include <asm/mips_machine.h>
15 #include <asm/mach-ar71xx/ar71xx.h>
16
17 #include "devices.h"
18 #include "dev-m25p80.h"
19 #include "dev-ar913x-wmac.h"
20 #include "dev-gpio-buttons.h"
21 #include "dev-leds-gpio.h"
22
23 #define WRT160NL_GPIO_LED_POWER         14
24 #define WRT160NL_GPIO_LED_WPS_AMBER     9
25 #define WRT160NL_GPIO_LED_WPS_BLUE      8
26 #define WRT160NL_GPIO_LED_WLAN          6
27
28 #define WRT160NL_GPIO_BTN_WPS           7
29 #define WRT160NL_GPIO_BTN_RESET         21
30
31 #define WRT160NL_BUTTONS_POLL_INTERVAL  20
32
33 #ifdef CONFIG_MTD_PARTITIONS
34 static struct mtd_partition wrt160nl_partitions[] = {
35         {
36                 .name           = "u-boot",
37                 .offset         = 0,
38                 .size           = 0x040000,
39                 .mask_flags     = MTD_WRITEABLE,
40         } , {
41                 .name           = "kernel",
42                 .offset         = 0x040000,
43                 .size           = 0x0e0000,
44         } , {
45                 .name           = "filesytem",
46                 .offset         = 0x120000,
47                 .size           = 0x6c0000,
48         } , {
49                 .name           = "nvram",
50                 .offset         = 0x7e0000,
51                 .size           = 0x010000,
52                 .mask_flags     = MTD_WRITEABLE,
53         } , {
54                 .name           = "ART",
55                 .offset         = 0x7f0000,
56                 .size           = 0x010000,
57                 .mask_flags     = MTD_WRITEABLE,
58         } , {
59                 .name           = "firmware",
60                 .offset         = 0x040000,
61                 .size           = 0x7a0000,
62         }
63 };
64 #endif /* CONFIG_MTD_PARTITIONS */
65
66 static struct flash_platform_data wrt160nl_flash_data = {
67 #ifdef CONFIG_MTD_PARTITIONS
68         .parts          = wrt160nl_partitions,
69         .nr_parts       = ARRAY_SIZE(wrt160nl_partitions),
70 #endif
71 };
72
73 static struct gpio_led wrt160nl_leds_gpio[] __initdata = {
74         {
75                 .name           = "wrt160nl:blue:power",
76                 .gpio           = WRT160NL_GPIO_LED_POWER,
77                 .active_low     = 1,
78                 .default_trigger = "default-on",
79         }, {
80                 .name           = "wrt160nl:amber:wps",
81                 .gpio           = WRT160NL_GPIO_LED_WPS_AMBER,
82                 .active_low     = 1,
83         }, {
84                 .name           = "wrt160nl:blue:wps",
85                 .gpio           = WRT160NL_GPIO_LED_WPS_BLUE,
86                 .active_low     = 1,
87         }, {
88                 .name           = "wrt160nl:blue:wlan",
89                 .gpio           = WRT160NL_GPIO_LED_WLAN,
90                 .active_low     = 1,
91         }
92 };
93
94 static struct gpio_button wrt160nl_gpio_buttons[] __initdata = {
95         {
96                 .desc           = "reset",
97                 .type           = EV_KEY,
98                 .code           = BTN_0,
99                 .threshold      = 5,
100                 .gpio           = WRT160NL_GPIO_BTN_RESET,
101                 .active_low     = 1,
102         }, {
103                 .desc           = "wps",
104                 .type           = EV_KEY,
105                 .code           = BTN_1,
106                 .threshold      = 5,
107                 .gpio           = WRT160NL_GPIO_BTN_WPS,
108                 .active_low     = 1,
109         }
110 };
111
112 static void __init wrt160nl_setup(void)
113 {
114         ar71xx_add_device_mdio(0x0);
115
116         ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
117         ar71xx_eth0_data.phy_mask = 0x01;
118
119         ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
120         ar71xx_eth1_data.phy_mask = 0x10;
121
122         ar71xx_add_device_eth(0);
123         ar71xx_add_device_eth(1);
124
125         ar71xx_add_device_m25p80(&wrt160nl_flash_data);
126
127         ar71xx_add_device_usb();
128         ar913x_add_device_wmac();
129
130         ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wrt160nl_leds_gpio),
131                                         wrt160nl_leds_gpio);
132
133         ar71xx_add_device_gpio_buttons(-1, WRT160NL_BUTTONS_POLL_INTERVAL,
134                                         ARRAY_SIZE(wrt160nl_gpio_buttons),
135                                         wrt160nl_gpio_buttons);
136 }
137
138 MIPS_MACHINE(AR71XX_MACH_WRT160NL, "Linksys WRT160NL", wrt160nl_setup);