[ar71xx] increase AR71XX_MEM_SIZE_MAX (thanks to Leo Galambos for reporting)
[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/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
17 #include <linux/input.h>
18
19 #include <asm/mips_machine.h>
20 #include <asm/mach-ar71xx/ar71xx.h>
21
22 #include "devices.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 };
76 #endif /* CONFIG_MTD_PARTITIONS */
77
78 static struct flash_platform_data wrt400n_flash_data = {
79 #ifdef CONFIG_MTD_PARTITIONS
80 .parts = wrt400n_partitions,
81 .nr_parts = ARRAY_SIZE(wrt400n_partitions),
82 #endif
83 };
84
85 static struct spi_board_info wrt400n_spi_info[] = {
86 {
87 .bus_num = 0,
88 .chip_select = 0,
89 .max_speed_hz = 25000000,
90 .modalias = "m25p80",
91 .platform_data = &wrt400n_flash_data,
92 }
93 };
94
95 static struct gpio_led wrt400n_leds_gpio[] __initdata = {
96 {
97 .name = "wrt400n:green:status",
98 .gpio = WRT400N_GPIO_LED_GREEN,
99 .active_low = 1,
100 }, {
101 .name = "wrt400n:amber:aoss",
102 .gpio = WRT400N_GPIO_LED_ORANGE,
103 .active_low = 1,
104 }, {
105 .name = "wrt400n:green:wlan",
106 .gpio = WRT400N_GPIO_LED_WLAN,
107 .active_low = 1,
108 }, {
109 .name = "wrt400n:green:power",
110 .gpio = WRT400N_GPIO_LED_POWER,
111 .active_low = 1,
112 }
113 };
114
115 static struct gpio_button wrt400n_gpio_buttons[] __initdata = {
116 {
117 .desc = "reset",
118 .type = EV_KEY,
119 .code = BTN_0,
120 .threshold = 5,
121 .gpio = WRT400N_GPIO_BTN_RESET,
122 .active_low = 1,
123 } , {
124 .desc = "wlsec",
125 .type = EV_KEY,
126 .code = BTN_1,
127 .threshold = 5,
128 .gpio = WRT400N_GPIO_BTN_WLSEC,
129 .active_low = 1,
130 }
131 };
132
133 static void __init wrt400n_setup(void)
134 {
135 ar71xx_add_device_mdio(0x0);
136
137 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
138 ar71xx_eth0_data.phy_mask = 0xf;
139 ar71xx_eth0_data.speed = SPEED_100;
140 ar71xx_eth0_data.duplex = DUPLEX_FULL;
141 ar71xx_eth0_data.has_ar8216 = 1;
142
143 ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
144 ar71xx_eth1_data.phy_mask = 0x10;
145
146 ar71xx_add_device_eth(0);
147 ar71xx_add_device_eth(1);
148
149 ar71xx_add_device_spi(NULL, wrt400n_spi_info,
150 ARRAY_SIZE(wrt400n_spi_info));
151
152 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wrt400n_leds_gpio),
153 wrt400n_leds_gpio);
154
155 ar71xx_add_device_gpio_buttons(-1, WRT400N_BUTTONS_POLL_INTERVAL,
156 ARRAY_SIZE(wrt400n_gpio_buttons),
157 wrt400n_gpio_buttons);
158
159 /* TODO: PCI support */
160 }
161
162 MIPS_MACHINE(AR71XX_MACH_WRT400N, "Linksys WRT400N", wrt400n_setup);