2 * Buffalo WLI-TX4-AG300N board support
4 * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
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.
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>
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>
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
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
35 #define WLI_TX4_AG300N_BUTTONS_POLL_INTERVAL 20
37 #ifdef CONFIG_MTD_PARTITIONS
38 static struct mtd_partition wli_tx4_ag300n_partitions
[] = {
43 .mask_flags
= MTD_WRITEABLE
,
49 .mask_flags
= MTD_WRITEABLE
,
55 .mask_flags
= MTD_WRITEABLE
,
78 #endif /* CONFIG_MTD_PARTITIONS */
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
,
87 static struct gpio_led wli_tx4_ag300n_leds_gpio
[] __initdata
= {
89 .name
= "buffalo:blue:power",
90 .gpio
= WLI_TX4_AG300N_GPIO_LED_POWER
,
94 .name
= "buffalo:red:diag",
95 .gpio
= WLI_TX4_AG300N_GPIO_LED_DIAG
,
99 .name
= "buffalo:blue:security",
100 .gpio
= WLI_TX4_AG300N_GPIO_LED_SECURITY
,
105 static struct gpio_button wli_tx4_ag300n_gpio_buttons
[] __initdata
= {
107 .desc
= "Reset button",
111 .gpio
= WLI_TX4_AG300N_GPIO_BUTTON_RESET
,
115 .desc
= "AOSS button",
117 .code
= KEY_WPS_BUTTON
,
119 .gpio
= WLI_TX4_AG300N_GPIO_BUTTON_AOSS
,
123 .desc
= "Bandwidth switch",
127 .gpio
= WLI_TX4_AG300N_GPIO_BUTTON_BW_SWITCH
,
132 static void __init
wli_tx4_ag300n_init(void)
134 rt288x_gpio_init(RT2880_GPIO_MODE_UART0
);
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
);
142 rt288x_register_flash(0, &wli_tx4_ag300n_flash_data
);
143 rt288x_register_wifi();
144 rt288x_register_wdt();
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();
153 MIPS_MACHINE(RAMIPS_MACH_WLI_TX4_AG300N
, "WLI-TX4-AG300N",
154 "Buffalo WLI-TX4-AG300N", wli_tx4_ag300n_init
);