2 * TP-LINK TL-WR1043ND board support
4 * Copyright (C) 2009 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/platform_device.h>
12 #include <linux/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
14 #include <linux/input.h>
16 #include <asm/mips_machine.h>
18 #include <asm/mach-ar71xx/ar71xx.h>
21 #include "dev-m25p80.h"
23 #define TL_WR1043ND_GPIO_LED_SYSTEM 2
24 #define TL_WR1043ND_GPIO_LED_QSS 5
26 #define TL_WR1043ND_GPIO_BTN_RESET 3
27 #define TL_WR1043ND_GPIO_BTN_QSS 7
29 #define TL_WR1043ND_BUTTONS_POLL_INTERVAL 20
31 #ifdef CONFIG_MTD_PARTITIONS
32 static struct mtd_partition tl_wr1043nd_partitions
[] = {
37 .mask_flags
= MTD_WRITEABLE
,
50 .mask_flags
= MTD_WRITEABLE
,
57 #endif /* CONFIG_MTD_PARTITIONS */
59 static struct flash_platform_data tl_wr1043nd_flash_data
= {
60 #ifdef CONFIG_MTD_PARTITIONS
61 .parts
= tl_wr1043nd_partitions
,
62 .nr_parts
= ARRAY_SIZE(tl_wr1043nd_partitions
),
66 static struct gpio_led tl_wr1043nd_leds_gpio
[] __initdata
= {
68 .name
= "tl-wr1043nd:green:system",
69 .gpio
= TL_WR1043ND_GPIO_LED_SYSTEM
,
72 .name
= "tl-wr1043nd:red:qss",
73 .gpio
= TL_WR1043ND_GPIO_LED_QSS
,
78 static struct gpio_button tl_wr1043nd_gpio_buttons
[] __initdata
= {
84 .gpio
= TL_WR1043ND_GPIO_BTN_RESET
,
91 .gpio
= TL_WR1043ND_GPIO_BTN_QSS
,
96 static void __init
tl_wr1043nd_setup(void)
98 u8
*mac
= (u8
*) KSEG1ADDR(0x1f01fc00);
100 ar71xx_set_mac_base(mac
);
102 ar71xx_add_device_mdio(0x0);
104 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
105 ar71xx_eth0_data
.phy_mask
= 0x0;
106 ar71xx_eth0_data
.speed
= SPEED_1000
;
107 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
109 ar71xx_add_device_eth(0);
111 ar71xx_add_device_usb();
113 ar71xx_add_device_m25p80(&tl_wr1043nd_flash_data
);
115 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tl_wr1043nd_leds_gpio
),
116 tl_wr1043nd_leds_gpio
);
118 ar71xx_add_device_gpio_buttons(-1, TL_WR1043ND_BUTTONS_POLL_INTERVAL
,
119 ARRAY_SIZE(tl_wr1043nd_gpio_buttons
),
120 tl_wr1043nd_gpio_buttons
);
121 ar91xx_add_device_wmac();
124 MIPS_MACHINE(AR71XX_MACH_TL_WR1043ND
, "TP-LINK TL-WR1043ND", tl_wr1043nd_setup
);