summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/stmicro
diff options
context:
space:
mode:
authorVince Bridgers2015-04-15 18:17:40 +0200
committerDavid S. Miller2015-04-16 19:58:42 +0200
commite7877f52fd4a8d7012f9b0faecc047a50c132a79 (patch)
treed6d8539ea9959708782e568ad89429258f71656e /drivers/net/ethernet/stmicro
parentstmmac: Add defines and documentation for enabling flow control (diff)
downloadkernel-qcow2-linux-e7877f52fd4a8d7012f9b0faecc047a50c132a79.tar.gz
kernel-qcow2-linux-e7877f52fd4a8d7012f9b0faecc047a50c132a79.tar.xz
kernel-qcow2-linux-e7877f52fd4a8d7012f9b0faecc047a50c132a79.zip
stmmac: Read tx-fifo-depth and rx-fifo-depth from the devicetree
Read the tx-fifo-depth and rx-fifo-depth from the devicetree. The Synopsys stmmac controller fifos are configurable per product instance, and the fifo sizes are needed to configure certain features correctly such as flow control. Signed-off-by: Vince Bridgers <vbridger@opensource.altera.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/stmicro')
-rw-r--r--drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
index f9b42f11950f..705bbdf93940 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
@@ -181,6 +181,10 @@ static int stmmac_probe_config_dt(struct platform_device *pdev,
sizeof(struct stmmac_mdio_bus_data),
GFP_KERNEL);
+ of_property_read_u32(np, "tx-fifo-depth", &plat->tx_fifo_size);
+
+ of_property_read_u32(np, "rx-fifo-depth", &plat->rx_fifo_size);
+
plat->force_sf_dma_mode =
of_property_read_bool(np, "snps,force_sf_dma_mode");