ar71xx: remove more unnecessary includes
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-wrt400n.c
1 /*
2 * Linksys WRT400N board support
3 *
4 * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2009 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/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
14
15 #include <asm/mips_machine.h>
16 #include <asm/mach-ar71xx/ar71xx.h>
17
18 #include "devices.h"
19 #include "dev-m25p80.h"
20 #include "dev-gpio-buttons.h"
21 #include "dev-gpio-buttons.h"
22 #include "dev-leds-gpio.h"
23
24 #define WRT400N_GPIO_LED_ORANGE 5
25 #define WRT400N_GPIO_LED_GREEN 4
26 #define WRT400N_GPIO_LED_POWER 1
27 #define WRT400N_GPIO_LED_WLAN 0
28
29 #define WRT400N_GPIO_BTN_RESET 8
30 #define WRT400N_GPIO_BTN_WLSEC 3
31
32 #define WRT400N_BUTTONS_POLL_INTERVAL 20
33
34 #ifdef CONFIG_MTD_PARTITIONS
35 static struct mtd_partition wrt400n_partitions[] = {
36 {
37 .name = "uboot",
38 .offset = 0,
39 .size = 0x030000,
40 .mask_flags = MTD_WRITEABLE,
41 } , {
42 .name = "env",
43 .offset = 0x030000,
44 .size = 0x010000,
45 .mask_flags = MTD_WRITEABLE,
46 } , {
47 .name = "linux",
48 .offset = 0x040000,
49 .size = 0x140000,
50 } , {
51 .name = "rootfs",
52 .offset = 0x180000,
53 .size = 0x630000,
54 } , {
55 .name = "nvram",
56 .offset = 0x7b0000,
57 .size = 0x010000,
58 .mask_flags = MTD_WRITEABLE,
59 } , {
60 .name = "factory",
61 .offset = 0x7c0000,
62 .size = 0x010000,
63 .mask_flags = MTD_WRITEABLE,
64 } , {
65 .name = "language",
66 .offset = 0x7d0000,
67 .size = 0x020000,
68 .mask_flags = MTD_WRITEABLE,
69 } , {
70 .name = "caldata",
71 .offset = 0x7f0000,
72 .size = 0x010000,
73 .mask_flags = MTD_WRITEABLE,
74 } , {
75 .name = "firmware",
76 .offset = 0x040000,
77 .size = 0x770000,
78 }
79 };
80 #endif /* CONFIG_MTD_PARTITIONS */
81
82 static struct flash_platform_data wrt400n_flash_data = {
83 #ifdef CONFIG_MTD_PARTITIONS
84 .parts = wrt400n_partitions,
85 .nr_parts = ARRAY_SIZE(wrt400n_partitions),
86 #endif
87 };
88
89 static struct gpio_led wrt400n_leds_gpio[] __initdata = {
90 {
91 .name = "wrt400n:green:status",
92 .gpio = WRT400N_GPIO_LED_GREEN,
93 .active_low = 1,
94 }, {
95 .name = "wrt400n:amber:aoss",
96 .gpio = WRT400N_GPIO_LED_ORANGE,
97 .active_low = 1,
98 }, {
99 .name = "wrt400n:green:wlan",
100 .gpio = WRT400N_GPIO_LED_WLAN,
101 .active_low = 1,
102 }, {
103 .name = "wrt400n:green:power",
104 .gpio = WRT400N_GPIO_LED_POWER,
105 .active_low = 1,
106 }
107 };
108
109 static struct gpio_button wrt400n_gpio_buttons[] __initdata = {
110 {
111 .desc = "reset",
112 .type = EV_KEY,
113 .code = BTN_0,
114 .threshold = 5,
115 .gpio = WRT400N_GPIO_BTN_RESET,
116 .active_low = 1,
117 } , {
118 .desc = "wlsec",
119 .type = EV_KEY,
120 .code = BTN_1,
121 .threshold = 5,
122 .gpio = WRT400N_GPIO_BTN_WLSEC,
123 .active_low = 1,
124 }
125 };
126
127 static void __init wrt400n_setup(void)
128 {
129 ar71xx_add_device_mdio(0x0);
130
131 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
132 ar71xx_eth0_data.phy_mask = 0xf;
133 ar71xx_eth0_data.speed = SPEED_100;
134 ar71xx_eth0_data.duplex = DUPLEX_FULL;
135 ar71xx_eth0_data.has_ar8216 = 1;
136
137 ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
138 ar71xx_eth1_data.phy_mask = 0x10;
139
140 ar71xx_add_device_eth(0);
141 ar71xx_add_device_eth(1);
142
143 ar71xx_add_device_m25p80(&wrt400n_flash_data);
144
145 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wrt400n_leds_gpio),
146 wrt400n_leds_gpio);
147
148 ar71xx_add_device_gpio_buttons(-1, WRT400N_BUTTONS_POLL_INTERVAL,
149 ARRAY_SIZE(wrt400n_gpio_buttons),
150 wrt400n_gpio_buttons);
151
152 /* TODO: PCI support */
153 }
154
155 MIPS_MACHINE(AR71XX_MACH_WRT400N, "Linksys WRT400N", wrt400n_setup);