ar71xx: remove more unnecessary includes
[openwrt/openwrt.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-mzk-w04nu.c
1 /*
2 * Planex MZK-W04NU board support
3 *
4 * Copyright (C) 2009 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/mips_machine.h>
15 #include <asm/mach-ar71xx/ar71xx.h>
16
17 #include "devices.h"
18 #include "dev-ar913x-wmac.h"
19 #include "dev-gpio-buttons.h"
20 #include "dev-leds-gpio.h"
21 #include "dev-m25p80.h"
22
23 #define MZK_W04NU_GPIO_LED_USB 0
24 #define MZK_W04NU_GPIO_LED_STATUS 1
25 #define MZK_W04NU_GPIO_LED_WPS 3
26 #define MZK_W04NU_GPIO_LED_WLAN 6
27 #define MZK_W04NU_GPIO_LED_AP 15
28 #define MZK_W04NU_GPIO_LED_ROUTER 16
29
30 #define MZK_W04NU_GPIO_BTN_APROUTER 5
31 #define MZK_W04NU_GPIO_BTN_WPS 12
32 #define MZK_W04NU_GPIO_BTN_RESET 21
33
34 #define MZK_W04NU_BUTTONS_POLL_INTERVAL 20
35
36 #ifdef CONFIG_MTD_PARTITIONS
37 static struct mtd_partition mzk_w04nu_partitions[] = {
38 {
39 .name = "u-boot",
40 .offset = 0,
41 .size = 0x040000,
42 .mask_flags = MTD_WRITEABLE,
43 } , {
44 .name = "u-boot-env",
45 .offset = 0x040000,
46 .size = 0x010000,
47 } , {
48 .name = "kernel",
49 .offset = 0x050000,
50 .size = 0x160000,
51 } , {
52 .name = "rootfs",
53 .offset = 0x1b0000,
54 .size = 0x630000,
55 } , {
56 .name = "art",
57 .offset = 0x7e0000,
58 .size = 0x020000,
59 .mask_flags = MTD_WRITEABLE,
60 } , {
61 .name = "firmware",
62 .offset = 0x050000,
63 .size = 0x770000,
64 }
65 };
66 #endif /* CONFIG_MTD_PARTITIONS */
67
68 static struct flash_platform_data mzk_w04nu_flash_data = {
69 #ifdef CONFIG_MTD_PARTITIONS
70 .parts = mzk_w04nu_partitions,
71 .nr_parts = ARRAY_SIZE(mzk_w04nu_partitions),
72 #endif
73 };
74
75 static struct gpio_led mzk_w04nu_leds_gpio[] __initdata = {
76 {
77 .name = "mzk-w04nu:green:status",
78 .gpio = MZK_W04NU_GPIO_LED_STATUS,
79 .active_low = 1,
80 }, {
81 .name = "mzk-w04nu:blue:wps",
82 .gpio = MZK_W04NU_GPIO_LED_WPS,
83 .active_low = 1,
84 }, {
85 .name = "mzk-w04nu:green:wlan",
86 .gpio = MZK_W04NU_GPIO_LED_WLAN,
87 .active_low = 1,
88 }, {
89 .name = "mzk-w04nu:green:usb",
90 .gpio = MZK_W04NU_GPIO_LED_USB,
91 .active_low = 1,
92 }, {
93 .name = "mzk-w04nu:green:ap",
94 .gpio = MZK_W04NU_GPIO_LED_AP,
95 .active_low = 1,
96 }, {
97 .name = "mzk-w04nu:green:router",
98 .gpio = MZK_W04NU_GPIO_LED_ROUTER,
99 .active_low = 1,
100 }
101 };
102
103 static struct gpio_button mzk_w04nu_gpio_buttons[] __initdata = {
104 {
105 .desc = "reset",
106 .type = EV_KEY,
107 .code = BTN_0,
108 .threshold = 5,
109 .gpio = MZK_W04NU_GPIO_BTN_RESET,
110 .active_low = 1,
111 }, {
112 .desc = "wps",
113 .type = EV_KEY,
114 .code = BTN_1,
115 .threshold = 5,
116 .gpio = MZK_W04NU_GPIO_BTN_WPS,
117 .active_low = 1,
118 }, {
119 .desc = "aprouter",
120 .type = EV_KEY,
121 .code = BTN_2,
122 .threshold = 5,
123 .gpio = MZK_W04NU_GPIO_BTN_APROUTER,
124 .active_low = 0,
125 }
126 };
127
128 static void __init mzk_w04nu_setup(void)
129 {
130 u8 *mac = (u8 *) KSEG1ADDR(0x1fff1000);
131
132 ar71xx_set_mac_base(mac);
133
134 ar71xx_add_device_mdio(0x0);
135
136 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
137 ar71xx_eth0_data.phy_mask = 0xf;
138 ar71xx_eth0_data.speed = SPEED_100;
139 ar71xx_eth0_data.duplex = DUPLEX_FULL;
140 ar71xx_eth0_data.has_ar8216 = 1;
141
142 ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RMII;
143 ar71xx_eth1_data.phy_mask = 0x10;
144
145 ar71xx_add_device_eth(0);
146 ar71xx_add_device_eth(1);
147
148 ar71xx_add_device_m25p80(&mzk_w04nu_flash_data);
149
150 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(mzk_w04nu_leds_gpio),
151 mzk_w04nu_leds_gpio);
152
153 ar71xx_add_device_gpio_buttons(-1, MZK_W04NU_BUTTONS_POLL_INTERVAL,
154 ARRAY_SIZE(mzk_w04nu_gpio_buttons),
155 mzk_w04nu_gpio_buttons);
156 ar71xx_add_device_usb();
157
158 ar913x_add_device_wmac();
159 }
160
161 MIPS_MACHINE(AR71XX_MACH_MZK_W04NU, "Planex MZK-W04NU", mzk_w04nu_setup);