ar71xx: unify LED names on TP-Link boards
[openwrt/svn-archive/archive.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-tl-wr941nd.c
1 /*
2 * TP-LINK TL-WR941ND board support
3 *
4 * Copyright (C) 2009-2010 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/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
13
14 #include <asm/mach-ar71xx/ar71xx.h>
15
16 #include "machtype.h"
17 #include "devices.h"
18 #include "dev-dsa.h"
19 #include "dev-m25p80.h"
20 #include "dev-ar9xxx-wmac.h"
21 #include "dev-gpio-buttons.h"
22 #include "dev-leds-gpio.h"
23
24 #define TL_WR941ND_GPIO_LED_SYSTEM 2
25 #define TL_WR941ND_GPIO_LED_QSS_RED 4
26 #define TL_WR941ND_GPIO_LED_QSS_GREEN 5
27 #define TL_WR941ND_GPIO_LED_WLAN 9
28
29 #define TL_WR941ND_GPIO_BTN_RESET 3
30 #define TL_WR941ND_GPIO_BTN_QSS 7
31
32 #define TL_WR941ND_KEYS_POLL_INTERVAL 20 /* msecs */
33 #define TL_WR941ND_KEYS_DEBOUNCE_INTERVAL (3 * TL_WR941ND_KEYS_POLL_INTERVAL)
34
35 #ifdef CONFIG_MTD_PARTITIONS
36 static struct mtd_partition tl_wr941nd_partitions[] = {
37 {
38 .name = "u-boot",
39 .offset = 0,
40 .size = 0x020000,
41 .mask_flags = MTD_WRITEABLE,
42 }, {
43 .name = "kernel",
44 .offset = 0x020000,
45 .size = 0x140000,
46 }, {
47 .name = "rootfs",
48 .offset = 0x160000,
49 .size = 0x290000,
50 }, {
51 .name = "art",
52 .offset = 0x3f0000,
53 .size = 0x010000,
54 .mask_flags = MTD_WRITEABLE,
55 }, {
56 .name = "firmware",
57 .offset = 0x020000,
58 .size = 0x3d0000,
59 }
60 };
61 #endif /* CONFIG_MTD_PARTITIONS */
62
63 static struct flash_platform_data tl_wr941nd_flash_data = {
64 #ifdef CONFIG_MTD_PARTITIONS
65 .parts = tl_wr941nd_partitions,
66 .nr_parts = ARRAY_SIZE(tl_wr941nd_partitions),
67 #endif
68 };
69
70 static struct gpio_led tl_wr941nd_leds_gpio[] __initdata = {
71 {
72 .name = "tp-link:green:system",
73 .gpio = TL_WR941ND_GPIO_LED_SYSTEM,
74 .active_low = 1,
75 }, {
76 .name = "tp-link:red:qss",
77 .gpio = TL_WR941ND_GPIO_LED_QSS_RED,
78 }, {
79 .name = "tp-link:green:qss",
80 .gpio = TL_WR941ND_GPIO_LED_QSS_GREEN,
81 }, {
82 .name = "tp-link:green:wlan",
83 .gpio = TL_WR941ND_GPIO_LED_WLAN,
84 .active_low = 1,
85 }
86 };
87
88 static struct gpio_keys_button tl_wr941nd_gpio_keys[] __initdata = {
89 {
90 .desc = "reset",
91 .type = EV_KEY,
92 .code = KEY_RESTART,
93 .debounce_interval = TL_WR941ND_KEYS_DEBOUNCE_INTERVAL,
94 .gpio = TL_WR941ND_GPIO_BTN_RESET,
95 .active_low = 1,
96 }, {
97 .desc = "qss",
98 .type = EV_KEY,
99 .code = KEY_WPS_BUTTON,
100 .debounce_interval = TL_WR941ND_KEYS_DEBOUNCE_INTERVAL,
101 .gpio = TL_WR941ND_GPIO_BTN_QSS,
102 .active_low = 1,
103 }
104 };
105
106 static struct dsa_chip_data tl_wr941nd_dsa_chip = {
107 .port_names[0] = "wan",
108 .port_names[1] = "lan1",
109 .port_names[2] = "lan2",
110 .port_names[3] = "lan3",
111 .port_names[4] = "lan4",
112 .port_names[5] = "cpu",
113 };
114
115 static struct dsa_platform_data tl_wr941nd_dsa_data = {
116 .nr_chips = 1,
117 .chip = &tl_wr941nd_dsa_chip,
118 };
119
120 static void __init tl_wr941nd_setup(void)
121 {
122 u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
123 u8 *eeprom = (u8 *) KSEG1ADDR(0x1fff1000);
124
125 ar71xx_add_device_mdio(0x0);
126
127 ar71xx_init_mac(ar71xx_eth0_data.mac_addr, mac, 0);
128 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
129 ar71xx_eth0_data.speed = SPEED_100;
130 ar71xx_eth0_data.duplex = DUPLEX_FULL;
131
132 ar71xx_add_device_eth(0);
133 ar71xx_add_device_dsa(0, &tl_wr941nd_dsa_data);
134
135 ar71xx_add_device_m25p80(&tl_wr941nd_flash_data);
136
137 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tl_wr941nd_leds_gpio),
138 tl_wr941nd_leds_gpio);
139
140 ar71xx_register_gpio_keys_polled(-1, TL_WR941ND_KEYS_POLL_INTERVAL,
141 ARRAY_SIZE(tl_wr941nd_gpio_keys),
142 tl_wr941nd_gpio_keys);
143 ar9xxx_add_device_wmac(eeprom, mac);
144 }
145
146 MIPS_MACHINE(AR71XX_MACH_TL_WR941ND, "TL-WR941ND", "TP-LINK TL-WR941ND",
147 tl_wr941nd_setup);