2 * D-Link DIR-600 rev. A1 board support
4 * Copyright (C) 2010 Gabor Juhos <juhosg@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
11 #include <linux/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
14 #include <asm/mach-ar71xx/ar71xx.h>
18 #include "dev-m25p80.h"
19 #include "dev-ap91-pci.h"
20 #include "dev-gpio-buttons.h"
21 #include "dev-leds-gpio.h"
24 #define DIR_600_A1_GPIO_LED_WPS 0
25 #define DIR_600_A1_GPIO_LED_POWER_AMBER 1
26 #define DIR_600_A1_GPIO_LED_POWER_GREEN 6
28 #define DIR_600_A1_GPIO_BTN_RESET 8
29 #define DIR_600_A1_GPIO_BTN_WPS 12
31 #define DIR_600_A1_BUTTONS_POLL_INTERVAL 20
33 #define DIR_600_A1_NVRAM_ADDR 0x1f030000
34 #define DIR_600_A1_NVRAM_SIZE 0x10000
36 #ifdef CONFIG_MTD_PARTITIONS
37 static struct mtd_partition dir_600_a1_partitions
[] = {
42 .mask_flags
= MTD_WRITEABLE
,
59 .mask_flags
= MTD_WRITEABLE
,
64 .mask_flags
= MTD_WRITEABLE
,
71 #endif /* CONFIG_MTD_PARTITIONS */
73 static struct flash_platform_data dir_600_a1_flash_data
= {
74 #ifdef CONFIG_MTD_PARTITIONS
75 .parts
= dir_600_a1_partitions
,
76 .nr_parts
= ARRAY_SIZE(dir_600_a1_partitions
),
80 static struct gpio_led dir_600_a1_leds_gpio
[] __initdata
= {
82 .name
= "dir-600-a1:green:power",
83 .gpio
= DIR_600_A1_GPIO_LED_POWER_GREEN
,
85 .name
= "dir-600-a1:amber:power",
86 .gpio
= DIR_600_A1_GPIO_LED_POWER_AMBER
,
88 .name
= "dir-600-a1:blue:wps",
89 .gpio
= DIR_600_A1_GPIO_LED_WPS
,
94 static struct gpio_button dir_600_a1_gpio_buttons
[] __initdata
= {
100 .gpio
= DIR_600_A1_GPIO_BTN_RESET
,
105 .code
= KEY_WPS_BUTTON
,
107 .gpio
= DIR_600_A1_GPIO_BTN_WPS
,
112 static void __init
dir_600_a1_setup(void)
114 const char *nvram
= (char *) KSEG1ADDR(DIR_600_A1_NVRAM_ADDR
);
115 u8
*ee
= (u8
*) KSEG1ADDR(0x1fff1000);
119 if (nvram_parse_mac_addr(nvram
, DIR_600_A1_NVRAM_SIZE
,
120 "lan_mac=", mac_buff
) == 0) {
121 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, mac
, 0);
122 ar71xx_init_mac(ar71xx_eth1_data
.mac_addr
, mac
, 1);
126 ar71xx_add_device_m25p80(&dir_600_a1_flash_data
);
128 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(dir_600_a1_leds_gpio
),
129 dir_600_a1_leds_gpio
);
131 ar71xx_add_device_gpio_buttons(-1, DIR_600_A1_BUTTONS_POLL_INTERVAL
,
132 ARRAY_SIZE(dir_600_a1_gpio_buttons
),
133 dir_600_a1_gpio_buttons
);
135 ar71xx_eth1_data
.has_ar7240_switch
= 1;
136 ar71xx_init_mac(ar71xx_eth0_data
.mac_addr
, mac
, 0);
137 ar71xx_init_mac(ar71xx_eth1_data
.mac_addr
, mac
, 1);
140 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
141 ar71xx_eth0_data
.speed
= SPEED_100
;
142 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
145 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
146 ar71xx_eth1_data
.speed
= SPEED_1000
;
147 ar71xx_eth1_data
.duplex
= DUPLEX_FULL
;
149 ar71xx_add_device_mdio(0x0);
150 ar71xx_add_device_eth(1);
151 ar71xx_add_device_eth(0);
153 ap91_pci_init(ee
, mac
);
156 MIPS_MACHINE(AR71XX_MACH_DIR_600_A1
, "DIR-600-A1", "D-Link DIR-600 rev. A1",