mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 18:05:19 +02:00
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@3045 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
fe9ed85196
commit
7170d88b06
@ -55,6 +55,7 @@ static int use_et = 0;
|
|||||||
static int is_5350 = 0;
|
static int is_5350 = 0;
|
||||||
static struct ifreq ifr;
|
static struct ifreq ifr;
|
||||||
static struct net_device *dev;
|
static struct net_device *dev;
|
||||||
|
static unsigned char port[6] = { 0, 1, 2, 3, 4, 8 };
|
||||||
|
|
||||||
static int do_ioctl(int cmd, void *buf)
|
static int do_ioctl(int cmd, void *buf)
|
||||||
{
|
{
|
||||||
@ -407,6 +408,12 @@ static int handle_reset(void *driver, char *buf, int nr)
|
|||||||
robo_write16(ROBO_VLAN_PAGE, (is_5350 ? ROBO_VLAN_TABLE_ACCESS_5350 : ROBO_VLAN_TABLE_ACCESS), val16);
|
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 */
|
/* enable switching */
|
||||||
set_switch(1);
|
set_switch(1);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user