aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-07-26 07:31:57 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-07-26 07:31:57 +0000
commit0bbbb150c0fbd7b945af16f6521822df35ccebd5 (patch)
tree2e5e255ced9744d3531b96e4926b9627e68be67a /target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c
parent0a80570a9c0d3ee0ca223e50ce149b1944393f7b (diff)
downloadmaster-187ad058-0bbbb150c0fbd7b945af16f6521822df35ccebd5.tar.gz
master-187ad058-0bbbb150c0fbd7b945af16f6521822df35ccebd5.tar.bz2
master-187ad058-0bbbb150c0fbd7b945af16f6521822df35ccebd5.zip
ar71xx: add kernel support for the TL-MR10U board
Based on andelf's patch: http://andelf.diandian.com/post/2013-05-22/40050677370 [juhosg: extend WR703N code to handle the TL-MR10U instead of adding a separate mach-tl-mr10u file]] Signed-off-by: Oleg Titov <oleg.titov@gmail.com> Patchwork: http://patchwork.openwrt.org/patch/3840/ Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37547 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c')
-rw-r--r--target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c21
1 files changed, 18 insertions, 3 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c
index 90342e0b65..46597053e8 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c
@@ -1,5 +1,5 @@
/*
- * TP-LINK TL-WR703N board support
+ * TP-LINK TL-WR703N/TL-MR10U board support
*
* Copyright (C) 2011 dongyuqi <729650915@qq.com>
* Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
@@ -26,6 +26,8 @@
#define TL_WR703N_GPIO_USB_POWER 8
+#define TL_MR10U_GPIO_USB_POWER 18
+
#define TL_WR703N_KEYS_POLL_INTERVAL 20 /* msecs */
#define TL_WR703N_KEYS_DEBOUNCE_INTERVAL (3 * TL_WR703N_KEYS_POLL_INTERVAL)
@@ -57,7 +59,7 @@ static struct gpio_keys_button tl_wr703n_gpio_keys[] __initdata = {
}
};
-static void __init tl_wr703n_setup(void)
+static void __init common_setup(unsigned usb_power_gpio)
{
u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
u8 *ee = (u8 *) KSEG1ADDR(0x1fff1000);
@@ -72,7 +74,7 @@ static void __init tl_wr703n_setup(void)
ARRAY_SIZE(tl_wr703n_gpio_keys),
tl_wr703n_gpio_keys);
- gpio_request_one(TL_WR703N_GPIO_USB_POWER,
+ gpio_request_one(usb_power_gpio,
GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
"USB power");
ath79_register_usb();
@@ -85,5 +87,18 @@ static void __init tl_wr703n_setup(void)
ath79_register_wmac(ee, mac);
}
+static void __init tl_mr10u_setup(void)
+{
+ common_setup(TL_MR10U_GPIO_USB_POWER);
+}
+
+MIPS_MACHINE(ATH79_MACH_TL_MR10U, "TL-MR10U", "TP-LINK TL-MR10U",
+ tl_mr10u_setup);
+
+static void __init tl_wr703n_setup(void)
+{
+ common_setup(TL_WR703N_GPIO_USB_POWER);
+}
+
MIPS_MACHINE(ATH79_MACH_TL_WR703N, "TL-WR703N", "TP-LINK TL-WR703N v1",
tl_wr703n_setup);