diff options
Diffstat (limited to 'arch/arm/mach-orion5x/wrt350n-v2-setup.c')
-rw-r--r-- | arch/arm/mach-orion5x/wrt350n-v2-setup.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-orion5x/wrt350n-v2-setup.c b/arch/arm/mach-orion5x/wrt350n-v2-setup.c index 9a4fd5256462..cc8f89200865 100644 --- a/arch/arm/mach-orion5x/wrt350n-v2-setup.c +++ b/arch/arm/mach-orion5x/wrt350n-v2-setup.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/mtd/physmap.h> | 15 | #include <linux/mtd/physmap.h> |
16 | #include <linux/mv643xx_eth.h> | 16 | #include <linux/mv643xx_eth.h> |
17 | #include <linux/ethtool.h> | 17 | #include <linux/ethtool.h> |
18 | #include <net/dsa.h> | ||
18 | #include <asm/mach-types.h> | 19 | #include <asm/mach-types.h> |
19 | #include <asm/gpio.h> | 20 | #include <asm/gpio.h> |
20 | #include <asm/mach/arch.h> | 21 | #include <asm/mach/arch.h> |
@@ -105,6 +106,15 @@ static struct mv643xx_eth_platform_data wrt350n_v2_eth_data = { | |||
105 | .duplex = DUPLEX_FULL, | 106 | .duplex = DUPLEX_FULL, |
106 | }; | 107 | }; |
107 | 108 | ||
109 | static struct dsa_platform_data wrt350n_v2_switch_data = { | ||
110 | .port_names[0] = "lan2", | ||
111 | .port_names[1] = "lan1", | ||
112 | .port_names[2] = "wan", | ||
113 | .port_names[3] = "cpu", | ||
114 | .port_names[5] = "lan3", | ||
115 | .port_names[7] = "lan4", | ||
116 | }; | ||
117 | |||
108 | static void __init wrt350n_v2_init(void) | 118 | static void __init wrt350n_v2_init(void) |
109 | { | 119 | { |
110 | /* | 120 | /* |
@@ -119,6 +129,7 @@ static void __init wrt350n_v2_init(void) | |||
119 | */ | 129 | */ |
120 | orion5x_ehci0_init(); | 130 | orion5x_ehci0_init(); |
121 | orion5x_eth_init(&wrt350n_v2_eth_data); | 131 | orion5x_eth_init(&wrt350n_v2_eth_data); |
132 | orion5x_eth_switch_init(&wrt350n_v2_switch_data, NO_IRQ); | ||
122 | orion5x_uart0_init(); | 133 | orion5x_uart0_init(); |
123 | 134 | ||
124 | orion5x_setup_dev_boot_win(WRT350N_V2_NOR_BOOT_BASE, | 135 | orion5x_setup_dev_boot_win(WRT350N_V2_NOR_BOOT_BASE, |