shared DMA zone is twice smaller on 6338
authorFlorian Fainelli <florian@openwrt.org>
Sun, 28 Jun 2009 20:06:44 +0000 (20:06 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Sun, 28 Jun 2009 20:06:44 +0000 (20:06 +0000)
SVN-Revision: 16608

target/linux/brcm63xx/files/arch/mips/bcm63xx/dev-enet.c

index c6e472ebf0292ec39a151a61738f57bf2304bd13..aeb1b934f59d99f8df13f75ea0ba42cc43aec2c2 100644 (file)
@@ -109,7 +109,10 @@ int __init bcm63xx_enet_register(int unit,
        if (!shared_device_registered) {
                shared_res[0].start = bcm63xx_regset_address(RSET_ENETDMA);
                shared_res[0].end = shared_res[0].start;
-               shared_res[0].end += RSET_ENETDMA_SIZE - 1;
+               if (BCMCPU_IS_6338())
+                       shared_res[0].end += (RSET_ENETDMA_SIZE / 2)  - 1;
+               else
+                       shared_res[0].end += (RSET_ENETDMA_SIZE)  - 1;
 
                ret = platform_device_register(&bcm63xx_enet_shared_device);
                if (ret)