2 * TP-LINK TL-WR841N 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>
17 #include <asm/mach-ar71xx/ar71xx.h>
18 #include <asm/mach-ar71xx/pci.h>
21 #include "dev-m25p80.h"
22 #include "dev-ar913x-wmac.h"
24 #define TL_WR841ND_V1_GPIO_LED_SYSTEM 2
25 #define TL_WR841ND_V1_GPIO_LED_QSS_GREEN 4
26 #define TL_WR841ND_V1_GPIO_LED_QSS_RED 5
28 #define TL_WR841ND_V1_GPIO_BTN_RESET 3
29 #define TL_WR841ND_V1_GPIO_BTN_QSS 7
31 #define TL_WR841ND_V1_BUTTONS_POLL_INTERVAL 20
33 #ifdef CONFIG_MTD_PARTITIONS
34 static struct mtd_partition tl_wr841n_v1_partitions
[] = {
39 .mask_flags
= MTD_WRITEABLE
,
52 .mask_flags
= MTD_WRITEABLE
,
59 #endif /* CONFIG_MTD_PARTITIONS */
61 static struct flash_platform_data tl_wr841n_v1_flash_data
= {
62 #ifdef CONFIG_MTD_PARTITIONS
63 .parts
= tl_wr841n_v1_partitions
,
64 .nr_parts
= ARRAY_SIZE(tl_wr841n_v1_partitions
),
68 static struct ar71xx_pci_irq tl_wr841n_v1_pci_irqs
[] __initdata
= {
72 .irq
= AR71XX_PCI_IRQ_DEV0
,
76 .irq
= AR71XX_PCI_IRQ_DEV1
,
80 .irq
= AR71XX_PCI_IRQ_DEV2
,
84 static struct gpio_led tl_wr841n_v1_leds_gpio
[] __initdata
= {
86 .name
= "tl-wr841n:green:system",
87 .gpio
= TL_WR841ND_V1_GPIO_LED_SYSTEM
,
90 .name
= "tl-wr841n:red:qss",
91 .gpio
= TL_WR841ND_V1_GPIO_LED_QSS_RED
,
93 .name
= "tl-wr841n:green:qss",
94 .gpio
= TL_WR841ND_V1_GPIO_LED_QSS_GREEN
,
98 static struct gpio_button tl_wr841n_v1_gpio_buttons
[] __initdata
= {
104 .gpio
= TL_WR841ND_V1_GPIO_BTN_RESET
,
111 .gpio
= TL_WR841ND_V1_GPIO_BTN_QSS
,
116 static struct dsa_chip_data tl_wr841n_v1_dsa_chip
= {
117 .port_names
[0] = "wan",
118 .port_names
[1] = "lan1",
119 .port_names
[2] = "lan2",
120 .port_names
[3] = "lan3",
121 .port_names
[4] = "lan4",
122 .port_names
[5] = "cpu",
125 static struct dsa_platform_data tl_wr841n_v1_dsa_data
= {
127 .chip
= &tl_wr841n_v1_dsa_chip
,
130 static void __init
tl_wr841n_v1_setup(void)
132 u8
*mac
= (u8
*) KSEG1ADDR(0x1f01fc00);
134 ar71xx_set_mac_base(mac
);
136 ar71xx_add_device_mdio(0x0);
138 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
139 ar71xx_eth0_data
.phy_mask
= 0x0;
140 ar71xx_eth0_data
.speed
= SPEED_100
;
141 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
143 ar71xx_add_device_eth(0);
145 ar71xx_add_device_dsa(0, &tl_wr841n_v1_dsa_data
);
147 ar71xx_add_device_m25p80(&tl_wr841n_v1_flash_data
);
149 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(tl_wr841n_v1_leds_gpio
),
150 tl_wr841n_v1_leds_gpio
);
152 ar71xx_add_device_gpio_buttons(-1, TL_WR841ND_V1_BUTTONS_POLL_INTERVAL
,
153 ARRAY_SIZE(tl_wr841n_v1_gpio_buttons
),
154 tl_wr841n_v1_gpio_buttons
);
156 ar71xx_pci_init(ARRAY_SIZE(tl_wr841n_v1_pci_irqs
),
157 tl_wr841n_v1_pci_irqs
);
160 MIPS_MACHINE(AR71XX_MACH_TL_WR841N_V1
, "TP-LINK TL-WR841N v1",