diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2013-12-20 11:41:17 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2013-12-20 11:41:17 +0000 |
commit | 2c4e3cf33a67dd40f34171141f44dde55b8a55ff (patch) | |
tree | 989fd2d8dfc1ecff0484046b792617a1a1f130cf /target/linux/ar71xx/files/arch | |
parent | 9be1e508f98abad12d099b26e2087c5e95fe2d64 (diff) | |
download | upstream-2c4e3cf33a67dd40f34171141f44dde55b8a55ff.tar.gz upstream-2c4e3cf33a67dd40f34171141f44dde55b8a55ff.tar.bz2 upstream-2c4e3cf33a67dd40f34171141f44dde55b8a55ff.zip |
ar71xx: ag71xx: get max_frame_len and desc_pktlen_mask from platform data
This will allow to use SoC specific values for both.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 39145
Diffstat (limited to 'target/linux/ar71xx/files/arch')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c | 3 | ||||
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/include/asm/mach-ath79/ag71xx_platform.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c b/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c index 742218bb32..8b54d0c817 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/dev-eth.c @@ -786,6 +786,9 @@ void __init ath79_register_eth(unsigned int id) pdata = pdev->dev.platform_data; + pdata->max_frame_len = 1540; + pdata->desc_pktlen_mask = 0xfff; + err = ath79_setup_phy_if_mode(id, pdata); if (err) { printk(KERN_ERR diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/mach-ath79/ag71xx_platform.h b/target/linux/ar71xx/files/arch/mips/include/asm/mach-ath79/ag71xx_platform.h index 68aea202bd..d46dc4e317 100644 --- a/target/linux/ar71xx/files/arch/mips/include/asm/mach-ath79/ag71xx_platform.h +++ b/target/linux/ar71xx/files/arch/mips/include/asm/mach-ath79/ag71xx_platform.h @@ -45,6 +45,9 @@ struct ag71xx_platform_data { u32 fifo_cfg1; u32 fifo_cfg2; u32 fifo_cfg3; + + unsigned int max_frame_len; + unsigned int desc_pktlen_mask; }; struct ag71xx_mdio_platform_data { |