ar8216: fix transmission of large frames by setting the switch mtu
SVN-Revision: 16629
This commit is contained in:
parent
6517a757ec
commit
3455f00d7a
2 changed files with 7 additions and 0 deletions
|
@ -488,6 +488,10 @@ ar8216_reset_switch(struct switch_dev *dev)
|
|||
}
|
||||
/* XXX: undocumented magic from atheros, required! */
|
||||
priv->write(priv, 0x38, 0xc000050e);
|
||||
|
||||
ar8216_rmw(priv, AR8216_REG_GLOBAL_CTRL,
|
||||
AR8216_GCTRL_MTU, 1518 + 8 + 2);
|
||||
|
||||
return ar8216_hw_apply(dev);
|
||||
}
|
||||
|
||||
|
|
|
@ -26,6 +26,9 @@
|
|||
#define AR8216_REG_CTRL 0x0000
|
||||
#define AR8216_CTRL_RESET BIT(31)
|
||||
|
||||
#define AR8216_REG_GLOBAL_CTRL 0x0030
|
||||
#define AR8216_GCTRL_MTU BITS(0, 10)
|
||||
|
||||
#define AR8216_REG_VTU 0x0040
|
||||
#define AR8216_VTU_OP BITS(0, 3)
|
||||
#define AR8216_VTU_OP_NOOP 0x0
|
||||
|
|
Loading…
Reference in a new issue