2 * Buffalo WZR-HP-G450G board support
4 * Copyright (C) 2011 Felix Fietkau <nbd@openwrt.org>
5 * Copyright (C) 2008-2012 Gabor Juhos <juhosg@openwrt.org>
6 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
13 #include <asm/mach-ath79/gpio.h>
14 #include <linux/mtd/mtd.h>
15 #include <linux/mtd/partitions.h>
17 #include <asm/mach-ath79/ath79.h>
20 #include "dev-m25p80.h"
21 #include "dev-ap9x-pci.h"
22 #include "dev-gpio-buttons.h"
23 #include "dev-leds-gpio.h"
25 #include "machtypes.h"
27 #define WZRHPG450H_KEYS_POLL_INTERVAL 20 /* msecs */
28 #define WZRHPG450H_KEYS_DEBOUNCE_INTERVAL (3 * WZRHPG450H_KEYS_POLL_INTERVAL)
30 static struct mtd_partition wzrhpg450h_partitions
[] = {
35 .mask_flags
= MTD_WRITEABLE
,
44 .mask_flags
= MTD_WRITEABLE
,
54 .name
= "user_property",
64 static struct flash_platform_data wzrhpg450h_flash_data
= {
65 .parts
= wzrhpg450h_partitions
,
66 .nr_parts
= ARRAY_SIZE(wzrhpg450h_partitions
),
69 static struct gpio_led wzrhpg450h_leds_gpio
[] __initdata
= {
71 .name
= "buffalo:red:diag",
76 .name
= "buffalo:orange:security",
83 static struct gpio_led wzrhpg450h_wmac_leds_gpio
[] = {
85 .name
= "buffalo:blue:movie_engine",
90 .name
= "buffalo:green:router",
96 static struct gpio_keys_button wzrhpg450h_gpio_keys
[] __initdata
= {
101 .debounce_interval
= WZRHPG450H_KEYS_DEBOUNCE_INTERVAL
,
108 .debounce_interval
= WZRHPG450H_KEYS_DEBOUNCE_INTERVAL
,
114 .code
= KEY_WPS_BUTTON
,
115 .debounce_interval
= WZRHPG450H_KEYS_DEBOUNCE_INTERVAL
,
119 .desc
= "movie_engine",
122 .debounce_interval
= WZRHPG450H_KEYS_DEBOUNCE_INTERVAL
,
126 .desc
= "router_off",
129 .debounce_interval
= WZRHPG450H_KEYS_DEBOUNCE_INTERVAL
,
136 static void __init
wzrhpg450h_init(void)
138 u8
*ee
= (u8
*) KSEG1ADDR(0x1f051000);
139 u8
*mac
= (u8
*) ee
+ 2;
141 ath79_register_m25p80_multi(&wzrhpg450h_flash_data
);
143 ath79_register_mdio(0, ~BIT(0));
144 ath79_init_mac(ath79_eth0_data
.mac_addr
, mac
, 0);
145 ath79_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
146 ath79_eth0_data
.speed
= SPEED_1000
;
147 ath79_eth0_data
.duplex
= DUPLEX_FULL
;
148 ath79_eth0_data
.phy_mask
= BIT(0);
150 ath79_register_leds_gpio(-1, ARRAY_SIZE(wzrhpg450h_leds_gpio
),
151 wzrhpg450h_leds_gpio
);
153 ath79_register_gpio_keys_polled(-1, WZRHPG450H_KEYS_POLL_INTERVAL
,
154 ARRAY_SIZE(wzrhpg450h_gpio_keys
),
155 wzrhpg450h_gpio_keys
);
157 ath79_register_eth(0);
159 ath79_register_usb();
160 gpio_request(16, "usb");
161 gpio_direction_output(16, 1);
163 ap91_pci_init(ee
, NULL
);
164 ap9x_pci_setup_wmac_led_pin(0, 15);
165 ap9x_pci_setup_wmac_leds(0, wzrhpg450h_wmac_leds_gpio
,
166 ARRAY_SIZE(wzrhpg450h_wmac_leds_gpio
));
169 MIPS_MACHINE(ATH79_MACH_WZR_HP_G450H
, "WZR-HP-G450H", "Buffalo WZR-HP-G450H",