2 * Buffalo WHR-HP-G300N board support
6 * TP-LINK TL-WR741ND board support
8 * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
15 #include <linux/mtd/mtd.h>
16 #include <linux/mtd/partitions.h>
18 #include <asm/mach-ath79/ath79.h>
20 #include "dev-ap9x-pci.h"
22 #include "dev-gpio-buttons.h"
23 #include "dev-leds-gpio.h"
24 #include "dev-m25p80.h"
25 #include "machtypes.h"
27 #define WHRHPG300N_GPIO_LED_SECURITY 0
28 #define WHRHPG300N_GPIO_LED_DIAG 1
29 #define WHRHPG300N_GPIO_LED_ROUTER 6
31 #define WHRHPG300N_GPIO_BTN_ROUTER_ON 7
32 #define WHRHPG300N_GPIO_BTN_ROUTER_AUTO 8
33 #define WHRHPG300N_GPIO_BTN_RESET 11
34 #define WHRHPG300N_GPIO_BTN_AOSS 12
36 #define WHRHPG300N_KEYS_POLL_INTERVAL 20 /* msecs */
37 #define WHRHPG300N_KEYS_DEBOUNCE_INTERVAL (3 * WHRHPG300N_KEYS_POLL_INTERVAL)
39 #define WHRHPG300N_MAC_OFFSET 0x20c
41 static struct mtd_partition whrhpg300n_partitions
[] = {
46 .mask_flags
= MTD_WRITEABLE
,
51 .mask_flags
= MTD_WRITEABLE
,
61 .name
= "user_property",
68 .mask_flags
= MTD_WRITEABLE
,
76 static struct flash_platform_data whrhpg300n_flash_data
= {
77 .parts
= whrhpg300n_partitions
,
78 .nr_parts
= ARRAY_SIZE(whrhpg300n_partitions
),
81 static struct gpio_led whrhpg300n_leds_gpio
[] __initdata
= {
83 .name
= "buffalo:orange:security",
84 .gpio
= WHRHPG300N_GPIO_LED_SECURITY
,
87 .name
= "buffalo:red:diag",
88 .gpio
= WHRHPG300N_GPIO_LED_DIAG
,
91 .name
= "buffalo:green:router",
92 .gpio
= WHRHPG300N_GPIO_LED_ROUTER
,
97 static struct gpio_keys_button whrhpg300n_gpio_keys
[] __initdata
= {
102 .debounce_interval
= WHRHPG300N_KEYS_DEBOUNCE_INTERVAL
,
103 .gpio
= WHRHPG300N_GPIO_BTN_RESET
,
108 .code
= KEY_WPS_BUTTON
,
109 .gpio
= WHRHPG300N_GPIO_BTN_AOSS
,
110 .debounce_interval
= WHRHPG300N_KEYS_DEBOUNCE_INTERVAL
,
116 .gpio
= WHRHPG300N_GPIO_BTN_ROUTER_ON
,
117 .debounce_interval
= WHRHPG300N_KEYS_DEBOUNCE_INTERVAL
,
120 .desc
= "router_auto",
123 .gpio
= WHRHPG300N_GPIO_BTN_ROUTER_AUTO
,
124 .debounce_interval
= WHRHPG300N_KEYS_DEBOUNCE_INTERVAL
,
129 static void __init
whrhpg300n_setup(void)
131 u8
*ee
= (u8
*) KSEG1ADDR(0x1fff1000);
132 u8
*mac
= (u8
*) KSEG1ADDR(ee
+ WHRHPG300N_MAC_OFFSET
);
134 ath79_register_m25p80(&whrhpg300n_flash_data
);
136 ath79_register_leds_gpio(-1, ARRAY_SIZE(whrhpg300n_leds_gpio
),
137 whrhpg300n_leds_gpio
);
139 ath79_register_gpio_keys_polled(-1, WHRHPG300N_KEYS_POLL_INTERVAL
,
140 ARRAY_SIZE(whrhpg300n_gpio_keys
),
141 whrhpg300n_gpio_keys
);
143 ath79_init_mac(ath79_eth0_data
.mac_addr
, mac
, 0);
144 ath79_init_mac(ath79_eth1_data
.mac_addr
, mac
, 1);
146 ath79_register_mdio(0, 0x0);
149 ath79_register_eth(1);
151 ath79_register_eth(0);
153 ap9x_pci_setup_wmac_led_pin(0, 1);
155 ap91_pci_init(ee
, mac
);
158 MIPS_MACHINE(ATH79_MACH_WHR_HP_G300N
, "WHR-HP-G300N", "Buffalo WHR-HP-G300N",
161 MIPS_MACHINE(ATH79_MACH_WHR_G301N
, "WHR-G301N", "Buffalo WHR-G301N",
164 MIPS_MACHINE(ATH79_MACH_WHR_HP_GN
, "WHR-HP-GN", "Buffalo WHR-HP-GN",