2 * D-Link DIR-615 rev C1 board support
4 * Copyright (C) 2008-2012 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
12 #include <linux/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
15 #include <asm/mach-ath79/ath79.h>
18 #include "dev-gpio-buttons.h"
19 #include "dev-leds-gpio.h"
20 #include "dev-m25p80.h"
22 #include "machtypes.h"
25 #define DIR_615C1_GPIO_LED_ORANGE_STATUS 1 /* ORANGE:STATUS:TRICOLOR */
26 #define DIR_615C1_GPIO_LED_BLUE_WPS 3 /* BLUE:WPS */
27 #define DIR_615C1_GPIO_LED_GREEN_WAN 4 /* GREEN:WAN:TRICOLOR */
28 #define DIR_615C1_GPIO_LED_GREEN_WANCPU 5 /* GREEN:WAN:CPU:TRICOLOR */
29 #define DIR_615C1_GPIO_LED_GREEN_WLAN 6 /* GREEN:WLAN */
30 #define DIR_615C1_GPIO_LED_GREEN_STATUS 14 /* GREEN:STATUS:TRICOLOR */
31 #define DIR_615C1_GPIO_LED_ORANGE_WAN 15 /* ORANGE:WAN:TRICOLOR */
33 /* buttons may need refinement */
35 #define DIR_615C1_GPIO_BTN_WPS 12
36 #define DIR_615C1_GPIO_BTN_RESET 21
38 #define DIR_615C1_KEYS_POLL_INTERVAL 20 /* msecs */
39 #define DIR_615C1_KEYS_DEBOUNCE_INTERVAL (3 * DIR_615C1_KEYS_POLL_INTERVAL)
41 #define DIR_615C1_CONFIG_ADDR 0x1f020000
42 #define DIR_615C1_CONFIG_SIZE 0x10000
44 static struct mtd_partition dir_615c1_partitions
[] = {
49 .mask_flags
= MTD_WRITEABLE
,
66 .mask_flags
= MTD_WRITEABLE
,
74 static struct flash_platform_data dir_615c1_flash_data
= {
75 .parts
= dir_615c1_partitions
,
76 .nr_parts
= ARRAY_SIZE(dir_615c1_partitions
),
79 static struct gpio_led dir_615c1_leds_gpio
[] __initdata
= {
81 .name
= "d-link:orange:status",
82 .gpio
= DIR_615C1_GPIO_LED_ORANGE_STATUS
,
85 .name
= "d-link:blue:wps",
86 .gpio
= DIR_615C1_GPIO_LED_BLUE_WPS
,
89 .name
= "d-link:green:wan",
90 .gpio
= DIR_615C1_GPIO_LED_GREEN_WAN
,
93 .name
= "d-link:green:wancpu",
94 .gpio
= DIR_615C1_GPIO_LED_GREEN_WANCPU
,
97 .name
= "d-link:green:wlan",
98 .gpio
= DIR_615C1_GPIO_LED_GREEN_WLAN
,
101 .name
= "d-link:green:status",
102 .gpio
= DIR_615C1_GPIO_LED_GREEN_STATUS
,
105 .name
= "d-link:orange:wan",
106 .gpio
= DIR_615C1_GPIO_LED_ORANGE_WAN
,
112 static struct gpio_keys_button dir_615c1_gpio_keys
[] __initdata
= {
117 .debounce_interval
= DIR_615C1_KEYS_DEBOUNCE_INTERVAL
,
118 .gpio
= DIR_615C1_GPIO_BTN_RESET
,
122 .code
= KEY_WPS_BUTTON
,
123 .debounce_interval
= DIR_615C1_KEYS_DEBOUNCE_INTERVAL
,
124 .gpio
= DIR_615C1_GPIO_BTN_WPS
,
128 #define DIR_615C1_LAN_PHYMASK BIT(0)
129 #define DIR_615C1_WAN_PHYMASK BIT(4)
130 #define DIR_615C1_MDIO_MASK (~(DIR_615C1_LAN_PHYMASK | \
131 DIR_615C1_WAN_PHYMASK))
133 static void __init
dir_615c1_setup(void)
135 const char *config
= (char *) KSEG1ADDR(DIR_615C1_CONFIG_ADDR
);
136 u8
*eeprom
= (u8
*) KSEG1ADDR(0x1fff1000);
140 if (ath79_nvram_parse_mac_addr(config
, DIR_615C1_CONFIG_SIZE
,
141 "lan_mac=", mac
) == 0) {
142 ath79_init_mac(ath79_eth0_data
.mac_addr
, mac
, 0);
143 ath79_init_mac(ath79_eth1_data
.mac_addr
, mac
, 1);
147 ath79_register_mdio(0, DIR_615C1_MDIO_MASK
);
149 ath79_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
150 ath79_eth0_data
.phy_mask
= DIR_615C1_LAN_PHYMASK
;
152 ath79_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
153 ath79_eth1_data
.phy_mask
= DIR_615C1_WAN_PHYMASK
;
155 ath79_register_eth(0);
156 ath79_register_eth(1);
158 ath79_register_m25p80(&dir_615c1_flash_data
);
160 ath79_register_leds_gpio(-1, ARRAY_SIZE(dir_615c1_leds_gpio
),
161 dir_615c1_leds_gpio
);
163 ath79_register_gpio_keys_polled(-1, DIR_615C1_KEYS_POLL_INTERVAL
,
164 ARRAY_SIZE(dir_615c1_gpio_keys
),
165 dir_615c1_gpio_keys
);
167 ath79_register_wmac(eeprom
, wlan_mac
);
170 MIPS_MACHINE(ATH79_MACH_DIR_615_C1
, "DIR-615-C1", "D-Link DIR-615 rev. C1",