]> git.sur5r.net Git - u-boot/commitdiff
net: lpc32xx: eth buffers base config
authorSylvain Lemieux <slemieux@tycoint.com>
Mon, 27 Jul 2015 17:37:40 +0000 (13:37 -0400)
committerTom Rini <trini@konsulko.com>
Thu, 13 Aug 2015 11:19:41 +0000 (07:19 -0400)
Add support to specify the Ethernet buffer base address;
if none are supply by the board, the default value is use (from existing code).

Signed-off-by: Sylvain Lemieux <slemieux@tycoint.com>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
drivers/net/lpc32xx_eth.c

index f3ab0f4bf0754f3e8d8e66c4168ecba3d0fa19a7..e76e9bc2b5bdee62116ac3246e5d04520115293c 100644 (file)
@@ -353,15 +353,17 @@ int lpc32xx_eth_phy_write(struct mii_dev *bus, int phy_addr, int dev_addr,
 #endif
 
 /*
+ * Provide default Ethernet buffers base address if target did not.
  * Locate buffers in SRAM at 0x00001000 to avoid cache issues and
  * maximize throughput.
  */
-
-#define LPC32XX_ETH_BUFS 0x00001000
+#if !defined(CONFIG_LPC32XX_ETH_BUFS_BASE)
+#define CONFIG_LPC32XX_ETH_BUFS_BASE 0x00001000
+#endif
 
 static struct lpc32xx_eth_device lpc32xx_eth = {
        .regs = (struct lpc32xx_eth_registers *)LPC32XX_ETH_BASE,
-       .bufs = (struct lpc32xx_eth_buffers *)LPC32XX_ETH_BUFS,
+       .bufs = (struct lpc32xx_eth_buffers *)CONFIG_LPC32XX_ETH_BUFS_BASE,
 #if defined(CONFIG_RMII)
        .phy_rmii = true,
 #endif