diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-26 04:02:48 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-01-26 04:02:48 +0000 |
commit | f31b57ccb256f76d184ce247a6e9ddcc2d30cfa8 (patch) | |
tree | 14f47de1baef62b1bccca10004cabeac550d92aa /target/linux/package | |
parent | fa7299c8f55cc1d0bf8cd9bc6e75e186695cb7f6 (diff) |
reset port settings and default vlan assignment when reset is issued on switch-robo (fixes #245)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3045 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package')
-rw-r--r-- | target/linux/package/switch/src/switch-robo.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/package/switch/src/switch-robo.c b/target/linux/package/switch/src/switch-robo.c index 6af0ff7137..7e4c4de296 100644 --- a/target/linux/package/switch/src/switch-robo.c +++ b/target/linux/package/switch/src/switch-robo.c @@ -55,6 +55,7 @@ static int use_et = 0; static int is_5350 = 0; static struct ifreq ifr; static struct net_device *dev; +static unsigned char port[6] = { 0, 1, 2, 3, 4, 8 }; static int do_ioctl(int cmd, void *buf) { @@ -406,7 +407,13 @@ static int handle_reset(void *driver, char *buf, int nr) robo_write16(ROBO_VLAN_PAGE, ROBO_VLAN_WRITE, 0); robo_write16(ROBO_VLAN_PAGE, (is_5350 ? ROBO_VLAN_TABLE_ACCESS_5350 : ROBO_VLAN_TABLE_ACCESS), val16); } - + + /* reset ports to a known good state */ + for (j = 0; j < d->ports; j++) { + robo_write16(ROBO_CTRL_PAGE, port[j], 0x0000); + robo_write16(ROBO_VLAN_PAGE, ROBO_VLAN_PORT0_DEF_TAG + (j << 1), 0); + } + /* enable switching */ set_switch(1); |