2 * TrendNET TEW-632BRP board support
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
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.
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>
19 #include <asm/mips_machine.h>
21 #include <asm/mach-ar71xx/ar71xx.h>
25 #define TEW_632BRP_GPIO_LED_STATUS 1
26 #define TEW_632BRP_GPIO_LED_WPS 3
27 #define TEW_632BRP_GPIO_LED_WLAN 6
28 #define TEW_632BRP_GPIO_BTN_WPS 12
29 #define TEW_632BRP_GPIO_BTN_RESET 21
31 #define TEW_632BRP_BUTTONS_POLL_INTERVAL 20
33 #ifdef CONFIG_MTD_PARTITIONS
34 static struct mtd_partition tew_632brp_partitions
[] = {
39 .mask_flags
= MTD_WRITEABLE
,
56 .mask_flags
= MTD_WRITEABLE
,
63 #endif /* CONFIG_MTD_PARTITIONS */
65 static struct flash_platform_data tew_632brp_flash_data
= {
66 #ifdef CONFIG_MTD_PARTITIONS
67 .parts
= tew_632brp_partitions
,
68 .nr_parts
= ARRAY_SIZE(tew_632brp_partitions
),
72 static struct spi_board_info tew_632brp_spi_info
[] = {
76 .max_speed_hz
= 25000000,
78 .platform_data
= &tew_632brp_flash_data
,
82 static struct gpio_led tew_632brp_leds_gpio
[] __initdata
= {
84 .name
= "tew-632brp:green:status",
85 .gpio
= TEW_632BRP_GPIO_LED_STATUS
,
88 .name
= "tew-632brp:blue:wps",
89 .gpio
= TEW_632BRP_GPIO_LED_WPS
,
92 .name
= "tew-632brp:green:wlan",
93 .gpio
= TEW_632BRP_GPIO_LED_WLAN
,
98 static struct gpio_button tew_632brp_gpio_buttons
[] __initdata
= {
104 .gpio
= TEW_632BRP_GPIO_BTN_RESET
,
110 .gpio
= TEW_632BRP_GPIO_BTN_WPS
,
114 static void __init
tew_632brp_setup(void)
116 ar71xx_add_device_mdio(0x0);
118 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
119 ar71xx_eth0_data
.phy_mask
= 0xf;
120 ar71xx_eth0_data
.speed
= SPEED_100
;
121 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
123 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
124 ar71xx_eth1_data
.phy_mask
= 0x10;
126 ar71xx_add_device_eth(0);
127 ar71xx_add_device_eth(1);
129 ar71xx_add_device_spi(NULL
, tew_632brp_spi_info
,
130 ARRAY_SIZE(tew_632brp_spi_info
));
132 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tew_632brp_leds_gpio
),
133 tew_632brp_leds_gpio
);
135 ar71xx_add_device_gpio_buttons(-1, TEW_632BRP_BUTTONS_POLL_INTERVAL
,
136 ARRAY_SIZE(tew_632brp_gpio_buttons
),
137 tew_632brp_gpio_buttons
);
139 ar91xx_add_device_wmac();
142 MIPS_MACHINE(AR71XX_MACH_TEW_632BRP
, "TRENDnet TEW-632BRP", tew_632brp_setup
);