ar71xx: fix whitespaces nits
[openwrt.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-ar913x-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
28 #define TL_WR941ND_GPIO_BTN_RESET       3
29 #define TL_WR941ND_GPIO_BTN_QSS         7
30
31 #define TL_WR941ND_BUTTONS_POLL_INTERVAL        20
32
33 #ifdef CONFIG_MTD_PARTITIONS
34 static struct mtd_partition tl_wr941nd_partitions[] = {
35         {
36                 .name           = "u-boot",
37                 .offset         = 0,
38                 .size           = 0x020000,
39                 .mask_flags     = MTD_WRITEABLE,
40         }, {
41                 .name           = "kernel",
42                 .offset         = 0x020000,
43                 .size           = 0x140000,
44         }, {
45                 .name           = "rootfs",
46                 .offset         = 0x160000,
47                 .size           = 0x290000,
48         }, {
49                 .name           = "art",
50                 .offset         = 0x3f0000,
51                 .size           = 0x010000,
52                 .mask_flags     = MTD_WRITEABLE,
53         }, {
54                 .name           = "firmware",
55                 .offset         = 0x020000,
56                 .size           = 0x3d0000,
57         }
58 };
59 #endif /* CONFIG_MTD_PARTITIONS */
60
61 static struct flash_platform_data tl_wr941nd_flash_data = {
62 #ifdef CONFIG_MTD_PARTITIONS
63         .parts          = tl_wr941nd_partitions,
64         .nr_parts       = ARRAY_SIZE(tl_wr941nd_partitions),
65 #endif
66 };
67
68 static struct gpio_led tl_wr941nd_leds_gpio[] __initdata = {
69         {
70                 .name           = "tl-wr941nd:green:system",
71                 .gpio           = TL_WR941ND_GPIO_LED_SYSTEM,
72                 .active_low     = 1,
73         }, {
74                 .name           = "tl-wr941nd:red:qss",
75                 .gpio           = TL_WR941ND_GPIO_LED_QSS_RED,
76         }, {
77                 .name           = "tl-wr941nd:green:qss",
78                 .gpio           = TL_WR941ND_GPIO_LED_QSS_GREEN,
79         }
80 };
81
82 static struct gpio_button tl_wr941nd_gpio_buttons[] __initdata = {
83         {
84                 .desc           = "reset",
85                 .type           = EV_KEY,
86                 .code           = KEY_RESTART,
87                 .threshold      = 3,
88                 .gpio           = TL_WR941ND_GPIO_BTN_RESET,
89                 .active_low     = 1,
90         }, {
91                 .desc           = "qss",
92                 .type           = EV_KEY,
93                 .code           = KEY_WPS_BUTTON,
94                 .threshold      = 3,
95                 .gpio           = TL_WR941ND_GPIO_BTN_QSS,
96                 .active_low     = 1,
97         }
98 };
99
100 static struct dsa_chip_data tl_wr941nd_dsa_chip = {
101         .port_names[0]  = "wan",
102         .port_names[1]  = "lan1",
103         .port_names[2]  = "lan2",
104         .port_names[3]  = "lan3",
105         .port_names[4]  = "lan4",
106         .port_names[5]  = "cpu",
107 };
108
109 static struct dsa_platform_data tl_wr941nd_dsa_data = {
110         .nr_chips       = 1,
111         .chip           = &tl_wr941nd_dsa_chip,
112 };
113
114 static void __init tl_wr941nd_setup(void)
115 {
116         u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
117         u8 *eeprom = (u8 *) KSEG1ADDR(0x1fff1000);
118
119         ar71xx_add_device_mdio(0x0);
120
121         ar71xx_init_mac(ar71xx_eth0_data.mac_addr, mac, 0);
122         ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
123         ar71xx_eth0_data.speed = SPEED_100;
124         ar71xx_eth0_data.duplex = DUPLEX_FULL;
125
126         ar71xx_add_device_eth(0);
127         ar71xx_add_device_dsa(0, &tl_wr941nd_dsa_data);
128
129         ar71xx_add_device_m25p80(&tl_wr941nd_flash_data);
130
131         ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tl_wr941nd_leds_gpio),
132                                         tl_wr941nd_leds_gpio);
133
134         ar71xx_add_device_gpio_buttons(-1, TL_WR941ND_BUTTONS_POLL_INTERVAL,
135                                         ARRAY_SIZE(tl_wr941nd_gpio_buttons),
136                                         tl_wr941nd_gpio_buttons);
137         ar913x_add_device_wmac(eeprom, mac);
138 }
139
140 MIPS_MACHINE(AR71XX_MACH_TL_WR941ND, "TL-WR941ND", "TP-LINK TL-WR941ND",
141              tl_wr941nd_setup);