2 * Planex MZK-W04NU board support
4 * Copyright (C) 2009 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/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
14 #include <asm/mach-ar71xx/ar71xx.h>
18 #include "dev-ar913x-wmac.h"
19 #include "dev-gpio-buttons.h"
20 #include "dev-leds-gpio.h"
21 #include "dev-m25p80.h"
24 #define MZK_W04NU_GPIO_LED_USB 0
25 #define MZK_W04NU_GPIO_LED_STATUS 1
26 #define MZK_W04NU_GPIO_LED_WPS 3
27 #define MZK_W04NU_GPIO_LED_WLAN 6
28 #define MZK_W04NU_GPIO_LED_AP 15
29 #define MZK_W04NU_GPIO_LED_ROUTER 16
31 #define MZK_W04NU_GPIO_BTN_APROUTER 5
32 #define MZK_W04NU_GPIO_BTN_WPS 12
33 #define MZK_W04NU_GPIO_BTN_RESET 21
35 #define MZK_W04NU_BUTTONS_POLL_INTERVAL 20
37 #ifdef CONFIG_MTD_PARTITIONS
38 static struct mtd_partition mzk_w04nu_partitions
[] = {
43 .mask_flags
= MTD_WRITEABLE
,
60 .mask_flags
= MTD_WRITEABLE
,
67 #endif /* CONFIG_MTD_PARTITIONS */
69 static struct flash_platform_data mzk_w04nu_flash_data
= {
70 #ifdef CONFIG_MTD_PARTITIONS
71 .parts
= mzk_w04nu_partitions
,
72 .nr_parts
= ARRAY_SIZE(mzk_w04nu_partitions
),
76 static struct gpio_led mzk_w04nu_leds_gpio
[] __initdata
= {
78 .name
= "mzk-w04nu:green:status",
79 .gpio
= MZK_W04NU_GPIO_LED_STATUS
,
82 .name
= "mzk-w04nu:blue:wps",
83 .gpio
= MZK_W04NU_GPIO_LED_WPS
,
86 .name
= "mzk-w04nu:green:wlan",
87 .gpio
= MZK_W04NU_GPIO_LED_WLAN
,
90 .name
= "mzk-w04nu:green:usb",
91 .gpio
= MZK_W04NU_GPIO_LED_USB
,
94 .name
= "mzk-w04nu:green:ap",
95 .gpio
= MZK_W04NU_GPIO_LED_AP
,
98 .name
= "mzk-w04nu:green:router",
99 .gpio
= MZK_W04NU_GPIO_LED_ROUTER
,
104 static struct gpio_button mzk_w04nu_gpio_buttons
[] __initdata
= {
110 .gpio
= MZK_W04NU_GPIO_BTN_RESET
,
117 .gpio
= MZK_W04NU_GPIO_BTN_WPS
,
124 .gpio
= MZK_W04NU_GPIO_BTN_APROUTER
,
129 static void __init
mzk_w04nu_setup(void)
131 u8
*mac
= (u8
*) KSEG1ADDR(0x1fff1000);
133 ar71xx_set_mac_base(mac
);
135 ar71xx_add_device_mdio(0x0);
137 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
138 ar71xx_eth0_data
.phy_mask
= 0xf;
139 ar71xx_eth0_data
.speed
= SPEED_100
;
140 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
141 ar71xx_eth0_data
.has_ar8216
= 1;
143 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
144 ar71xx_eth1_data
.phy_mask
= 0x10;
146 ar71xx_add_device_eth(0);
147 ar71xx_add_device_eth(1);
149 ar71xx_add_device_m25p80(&mzk_w04nu_flash_data
);
151 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(mzk_w04nu_leds_gpio
),
152 mzk_w04nu_leds_gpio
);
154 ar71xx_add_device_gpio_buttons(-1, MZK_W04NU_BUTTONS_POLL_INTERVAL
,
155 ARRAY_SIZE(mzk_w04nu_gpio_buttons
),
156 mzk_w04nu_gpio_buttons
);
157 ar71xx_add_device_usb();
159 ar913x_add_device_wmac();
162 MIPS_MACHINE(AR71XX_MACH_MZK_W04NU
, "Planex MZK-W04NU", mzk_w04nu_setup
);