platform_device_register(&ar91xx_wmac_device);
}
+
+static struct platform_device ar71xx_dsa_switch_device = {
+ .name = "dsa",
+ .id = 0,
+};
+
+void __init ar71xx_add_device_dsa(unsigned int id,
+ struct dsa_platform_data *d)
+{
+ switch (id) {
+ case 0:
+ d->netdev = &ar71xx_eth0_device.dev;
+ break;
+ case 1:
+ d->netdev = &ar71xx_eth1_device.dev;
+ break;
+ default:
+ printk(KERN_ERR
+ "ar71xx: invalid ethernet id %d for DSA switch\n",
+ id);
+ return;
+ }
+ d->mii_bus = &ar71xx_mdio_device.dev;
+ ar71xx_dsa_switch_device.dev.platform_data = d;
+
+ platform_device_register(&ar71xx_dsa_switch_device);
+}
#define __AR71XX_DEVICES_H
#include <asm/mach-ar71xx/platform.h>
+
#include <linux/leds.h>
#include <linux/gpio_buttons.h>
+#include <linux/gpio_buttons.h>
+#include <net/dsa.h>
void ar71xx_add_device_spi(struct ar71xx_spi_platform_data *pdata,
struct spi_board_info const *info,
void ar91xx_add_device_wmac(void) __init;
+void ar71xx_add_device_dsa(unsigned int id,
+ struct dsa_platform_data *d) __init;
+
#endif /* __AR71XX_DEVICES_H */
}
};
+static struct dsa_platform_data tl_wr941nd_dsa_data = {
+ .port_names[0] = "wan",
+ .port_names[1] = "lan1",
+ .port_names[2] = "lan2",
+ .port_names[3] = "lan3",
+ .port_names[4] = "lan4",
+ .port_names[5] = "cpu",
+};
+
static void __init tl_wr941nd_setup(void)
{
u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
ar71xx_eth0_data.duplex = DUPLEX_FULL;
ar71xx_add_device_eth(0);
+ ar71xx_add_device_dsa(0, &tl_wr941nd_dsa_data);
ar71xx_add_device_spi(NULL, tl_wr941nd_spi_info,
ARRAY_SIZE(tl_wr941nd_spi_info));