2 * GL-CONNECT iNet board support
4 * Copyright (C) 2011 dongyuqi <729650915@qq.com>
5 * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
6 * Copyright (C) 2013 alzhao <alzhao@gmail.com>
7 * Copyright (C) 2014 Michel Stempin <michel.stempin@wanadoo.fr>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
14 #include <linux/gpio.h>
16 #include <asm/mach-ath79/ath79.h>
19 #include "dev-gpio-buttons.h"
20 #include "dev-leds-gpio.h"
21 #include "dev-m25p80.h"
24 #include "machtypes.h"
26 #define GL_INET_GPIO_LED_WLAN 0
27 #define GL_INET_GPIO_LED_LAN 13
28 #define GL_INET_GPIO_BTN_RESET 11
30 #define GL_INET_KEYS_POLL_INTERVAL 20 /* msecs */
31 #define GL_INET_KEYS_DEBOUNCE_INTERVAL (3 * GL_INET_KEYS_POLL_INTERVAL)
33 static const char * gl_inet_part_probes[] = {
34 "tp-link", /* dont change, this will use tplink parser */
38 static struct flash_platform_data gl_inet_flash_data = {
39 .part_probes = gl_inet_part_probes,
42 static struct gpio_led gl_inet_leds_gpio[] __initdata = {
44 .name = "gl-connect:red:wireless",
45 .gpio = GL_INET_GPIO_LED_WLAN,
49 .name = "gl-connect:green:lan",
50 .gpio = GL_INET_GPIO_LED_LAN,
56 static struct gpio_keys_button gl_inet_gpio_keys[] __initdata = {
61 .debounce_interval = GL_INET_KEYS_DEBOUNCE_INTERVAL,
62 .gpio = GL_INET_GPIO_BTN_RESET,
67 static void __init gl_inet_setup(void)
69 /* get the mac address which is stored in the 1st 64k uboot MTD */
70 u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
72 /* get the art address, which is the last 64K. By using
73 0x1fff1000, it doesn't matter it is 4M, 8M or 16M flash */
74 u8 *ee = (u8 *) KSEG1ADDR(0x1fff1000);
76 /* disable PHY_SWAP and PHY_ADDR_SWAP bits */
77 ath79_setup_ar933x_phy4_switch(false, false);
79 /* register flash. MTD will use tp-link parser to parser MTD */
80 ath79_register_m25p80(&gl_inet_flash_data);
82 /* register gpio LEDs and keys */
83 ath79_register_leds_gpio(-1, ARRAY_SIZE(gl_inet_leds_gpio),
85 ath79_register_gpio_keys_polled(-1, GL_INET_KEYS_POLL_INTERVAL,
86 ARRAY_SIZE(gl_inet_gpio_keys),
92 /* register eth0 as WAN, eth1 as LAN */
93 ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
94 ath79_register_mdio(0, 0x0);
95 ath79_register_eth(0);
96 ath79_init_mac(ath79_eth1_data.mac_addr, mac, 0);
97 ath79_register_eth(1);
99 /* register wireless mac with cal data */
100 ath79_register_wmac(ee, mac);
103 MIPS_MACHINE(ATH79_MACH_GL_INET, "GL-INET", "GL-CONNECT INET v1",