2 * D-Link DIR-600 rev. A1 board support
4 * Copyright (C) 2010-2012 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2012 Vadim Girlin <vadimgirlin@gmail.com>
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-ar71xx/ar71xx.h>
19 #include "dev-m25p80.h"
20 #include "dev-ap91-pci.h"
21 #include "dev-gpio-buttons.h"
22 #include "dev-leds-gpio.h"
25 #define DIR_600_A1_GPIO_LED_WPS 0
26 #define DIR_600_A1_GPIO_LED_POWER_AMBER 1
27 #define DIR_600_A1_GPIO_LED_POWER_GREEN 6
28 #define DIR_600_A1_GPIO_LED_LAN1 13
29 #define DIR_600_A1_GPIO_LED_LAN2 14
30 #define DIR_600_A1_GPIO_LED_LAN3 15
31 #define DIR_600_A1_GPIO_LED_LAN4 16
32 #define DIR_600_A1_GPIO_LED_WAN_AMBER 7
33 #define DIR_600_A1_GPIO_LED_WAN_GREEN 17
35 #define DIR_600_A1_GPIO_BTN_RESET 8
36 #define DIR_600_A1_GPIO_BTN_WPS 12
38 #define DIR_600_A1_KEYS_POLL_INTERVAL 20 /* msecs */
39 #define DIR_600_A1_KEYS_DEBOUNCE_INTERVAL (3 * DIR_600_A1_KEYS_POLL_INTERVAL)
41 #define DIR_600_A1_NVRAM_ADDR 0x1f030000
42 #define DIR_600_A1_NVRAM_SIZE 0x10000
44 #ifdef CONFIG_MTD_PARTITIONS
45 static struct mtd_partition dir_600_a1_partitions
[] = {
50 .mask_flags
= MTD_WRITEABLE
,
67 .mask_flags
= MTD_WRITEABLE
,
72 .mask_flags
= MTD_WRITEABLE
,
79 #endif /* CONFIG_MTD_PARTITIONS */
81 static struct flash_platform_data dir_600_a1_flash_data
= {
82 #ifdef CONFIG_MTD_PARTITIONS
83 .parts
= dir_600_a1_partitions
,
84 .nr_parts
= ARRAY_SIZE(dir_600_a1_partitions
),
88 static struct gpio_led dir_600_a1_leds_gpio
[] __initdata
= {
90 .name
= "d-link:green:power",
91 .gpio
= DIR_600_A1_GPIO_LED_POWER_GREEN
,
93 .name
= "d-link:amber:power",
94 .gpio
= DIR_600_A1_GPIO_LED_POWER_AMBER
,
96 .name
= "d-link:amber:wan",
97 .gpio
= DIR_600_A1_GPIO_LED_WAN_AMBER
,
99 .name
= "d-link:green:wan",
100 .gpio
= DIR_600_A1_GPIO_LED_WAN_GREEN
,
103 .name
= "d-link:green:lan1",
104 .gpio
= DIR_600_A1_GPIO_LED_LAN1
,
107 .name
= "d-link:green:lan2",
108 .gpio
= DIR_600_A1_GPIO_LED_LAN2
,
111 .name
= "d-link:green:lan3",
112 .gpio
= DIR_600_A1_GPIO_LED_LAN3
,
115 .name
= "d-link:green:lan4",
116 .gpio
= DIR_600_A1_GPIO_LED_LAN4
,
119 .name
= "d-link:blue:wps",
120 .gpio
= DIR_600_A1_GPIO_LED_WPS
,
125 static struct gpio_keys_button dir_600_a1_gpio_keys
[] __initdata
= {
130 .debounce_interval
= DIR_600_A1_KEYS_DEBOUNCE_INTERVAL
,
131 .gpio
= DIR_600_A1_GPIO_BTN_RESET
,
136 .code
= KEY_WPS_BUTTON
,
137 .debounce_interval
= DIR_600_A1_KEYS_DEBOUNCE_INTERVAL
,
138 .gpio
= DIR_600_A1_GPIO_BTN_WPS
,
143 static void __init
dir_600_a1_setup(void)
145 const char *nvram
= (char *) KSEG1ADDR(DIR_600_A1_NVRAM_ADDR
);
146 u8
*ee
= (u8
*) KSEG1ADDR(0x1fff1000);
150 if (nvram_parse_mac_addr(nvram
, DIR_600_A1_NVRAM_SIZE
,
151 "lan_mac=", mac_buff
) == 0) {
152 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, mac_buff
, 0);
153 ar71xx_init_mac(ar71xx_eth1_data
.mac_addr
, mac_buff
, 1);
157 ar71xx_add_device_m25p80(&dir_600_a1_flash_data
);
159 ar71xx_gpio_function_disable(AR724X_GPIO_FUNC_ETH_SWITCH_LED0_EN
|
160 AR724X_GPIO_FUNC_ETH_SWITCH_LED1_EN
|
161 AR724X_GPIO_FUNC_ETH_SWITCH_LED2_EN
|
162 AR724X_GPIO_FUNC_ETH_SWITCH_LED3_EN
|
163 AR724X_GPIO_FUNC_ETH_SWITCH_LED4_EN
);
165 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(dir_600_a1_leds_gpio
),
166 dir_600_a1_leds_gpio
);
168 ar71xx_register_gpio_keys_polled(-1, DIR_600_A1_KEYS_POLL_INTERVAL
,
169 ARRAY_SIZE(dir_600_a1_gpio_keys
),
170 dir_600_a1_gpio_keys
);
172 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, mac
, 0);
173 ar71xx_init_mac(ar71xx_eth1_data
.mac_addr
, mac
, 1);
175 ar71xx_add_device_mdio(0, 0x0);
178 ar71xx_add_device_eth(1);
181 ar71xx_add_device_eth(0);
183 ap91_pci_init(ee
, mac
);
186 MIPS_MACHINE(AR71XX_MACH_DIR_600_A1
, "DIR-600-A1", "D-Link DIR-600 rev. A1",
189 static void __init
dir_615_e4_setup(void)
192 ap91_pci_setup_wmac_led_pin(1);
195 MIPS_MACHINE(AR71XX_MACH_DIR_615_E4
, "DIR-615-E4", "D-Link DIR-615 rev. E4",