ramips: rt305x: add support for the ALFA Networks W502U (R36) board
[openwrt.git] / target / linux / ramips / files / arch / mips / ralink / rt288x / mach-wli-tx4-ag300n.c
1 /*
2 * Buffalo WLI-TX4-AG300N board support
3 *
4 * Copyright (C) 2011 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/init.h>
12 #include <linux/ethtool.h>
13 #include <linux/platform_device.h>
14 #include <linux/mtd/mtd.h>
15 #include <linux/mtd/partitions.h>
16 #include <linux/mtd/physmap.h>
17
18 #include <asm/mach-ralink/machine.h>
19 #include <asm/mach-ralink/dev-gpio-buttons.h>
20 #include <asm/mach-ralink/dev-gpio-leds.h>
21 #include <asm/mach-ralink/rt288x.h>
22 #include <asm/mach-ralink/rt288x_regs.h>
23 #include <asm/mach-ralink/ramips_eth_platform.h>
24
25 #include "devices.h"
26
27 #define WLI_TX4_AG300N_GPIO_LED_DIAG 10
28 #define WLI_TX4_AG300N_GPIO_LED_POWER 12
29 #define WLI_TX4_AG300N_GPIO_LED_SECURITY 13
30
31 #define WLI_TX4_AG300N_GPIO_BUTTON_AOSS 0
32 #define WLI_TX4_AG300N_GPIO_BUTTON_BW_SWITCH 8
33 #define WLI_TX4_AG300N_GPIO_BUTTON_RESET 9
34
35 #define WLI_TX4_AG300N_BUTTONS_POLL_INTERVAL 20
36
37 #ifdef CONFIG_MTD_PARTITIONS
38 static struct mtd_partition wli_tx4_ag300n_partitions[] = {
39 {
40 .name = "u-boot",
41 .offset = 0,
42 .size = 0x030000,
43 .mask_flags = MTD_WRITEABLE,
44 },
45 {
46 .name = "u-boot-env",
47 .offset = 0x030000,
48 .size = 0x010000,
49 .mask_flags = MTD_WRITEABLE,
50 },
51 {
52 .name = "factory",
53 .offset = 0x040000,
54 .size = 0x010000,
55 .mask_flags = MTD_WRITEABLE,
56 },
57 {
58 .name = "kernel",
59 .offset = 0x050000,
60 .size = 0x0d0000,
61 },
62 {
63 .name = "rootfs",
64 .offset = 0x120000,
65 .size = 0x2d0000,
66 },
67 {
68 .name = "user",
69 .offset = 0x3f0000,
70 .size = 0x010000,
71 },
72 {
73 .name = "firmware",
74 .offset = 0x050000,
75 .size = 0x3a0000,
76 },
77 };
78 #endif /* CONFIG_MTD_PARTITIONS */
79
80 static struct physmap_flash_data wli_tx4_ag300n_flash_data = {
81 #ifdef CONFIG_MTD_PARTITIONS
82 .nr_parts = ARRAY_SIZE(wli_tx4_ag300n_partitions),
83 .parts = wli_tx4_ag300n_partitions,
84 #endif
85 };
86
87 static struct gpio_led wli_tx4_ag300n_leds_gpio[] __initdata = {
88 {
89 .name = "buffalo:blue:power",
90 .gpio = WLI_TX4_AG300N_GPIO_LED_POWER,
91 .active_low = 1,
92 },
93 {
94 .name = "buffalo:red:diag",
95 .gpio = WLI_TX4_AG300N_GPIO_LED_DIAG,
96 .active_low = 1,
97 },
98 {
99 .name = "buffalo:blue:security",
100 .gpio = WLI_TX4_AG300N_GPIO_LED_SECURITY,
101 .active_low = 0,
102 },
103 };
104
105 static struct gpio_button wli_tx4_ag300n_gpio_buttons[] __initdata = {
106 {
107 .desc = "Reset button",
108 .type = EV_KEY,
109 .code = KEY_RESTART,
110 .threshold = 3,
111 .gpio = WLI_TX4_AG300N_GPIO_BUTTON_RESET,
112 .active_low = 1,
113 },
114 {
115 .desc = "AOSS button",
116 .type = EV_KEY,
117 .code = KEY_WPS_BUTTON,
118 .threshold = 3,
119 .gpio = WLI_TX4_AG300N_GPIO_BUTTON_AOSS,
120 .active_low = 1,
121 },
122 {
123 .desc = "Bandwidth switch",
124 .type = EV_KEY,
125 .code = BTN_0,
126 .threshold = 3,
127 .gpio = WLI_TX4_AG300N_GPIO_BUTTON_BW_SWITCH,
128 .active_low = 0,
129 },
130 };
131
132 static void __init wli_tx4_ag300n_init(void)
133 {
134 rt288x_gpio_init(RT2880_GPIO_MODE_UART0);
135
136 ramips_register_gpio_leds(-1, ARRAY_SIZE(wli_tx4_ag300n_leds_gpio),
137 wli_tx4_ag300n_leds_gpio);
138 ramips_register_gpio_buttons(-1, WLI_TX4_AG300N_BUTTONS_POLL_INTERVAL,
139 ARRAY_SIZE(wli_tx4_ag300n_gpio_buttons),
140 wli_tx4_ag300n_gpio_buttons);
141
142 rt288x_register_flash(0, &wli_tx4_ag300n_flash_data);
143 rt288x_register_wifi();
144 rt288x_register_wdt();
145
146 rt288x_eth_data.speed = SPEED_100;
147 rt288x_eth_data.duplex = DUPLEX_FULL;
148 rt288x_eth_data.tx_fc = 1;
149 rt288x_eth_data.rx_fc = 1;
150 rt288x_register_ethernet();
151 }
152
153 MIPS_MACHINE(RAMIPS_MACH_WLI_TX4_AG300N, "WLI-TX4-AG300N",
154 "Buffalo WLI-TX4-AG300N", wli_tx4_ag300n_init);
This page took 0.048469 seconds and 5 git commands to generate.