From: Fugang Duan <b38611@freescale.com>
To: <davem@davemloft.net>
Cc: <netdev@vger.kernel.org>, <shawn.guo@linaro.org>,
<b38611@freescale.com>, <R49496@freescale.com>,
<ezequiel.garcia@free-electrons.com>, <bhutchings@solarflare.com>,
<stephen@networkplumber.org>, <b20596@freescale.com>,
<David.Laight@ACULAB.COM>, <eric.dumazet@gmail.com>
Subject: [PATCH v3 4/6] net: fec: Increase buffer descriptor entry number
Date: Thu, 5 Jun 2014 14:59:30 +0800 [thread overview]
Message-ID: <1401951572-6538-5-git-send-email-b38611@freescale.com> (raw)
In-Reply-To: <1401951572-6538-1-git-send-email-b38611@freescale.com>
In order to support SG, software TSO, let's increase BD entry number.
CC: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
CC: Eric Dumazet <eric.dumazet@gmail.com>
CC: David Laight <David.Laight@ACULAB.COM>
Signed-off-by: Fugang Duan <B38611@freescale.com>
---
drivers/net/ethernet/freescale/fec.h | 4 ++--
drivers/net/ethernet/freescale/fec_main.c | 21 ++++++++++++---------
2 files changed, 14 insertions(+), 11 deletions(-)
diff --git a/drivers/net/ethernet/freescale/fec.h b/drivers/net/ethernet/freescale/fec.h
index 3b8d6d1..241621d 100644
--- a/drivers/net/ethernet/freescale/fec.h
+++ b/drivers/net/ethernet/freescale/fec.h
@@ -246,8 +246,8 @@ struct bufdesc_ex {
#define RX_RING_SIZE (FEC_ENET_RX_FRPPG * FEC_ENET_RX_PAGES)
#define FEC_ENET_TX_FRSIZE 2048
#define FEC_ENET_TX_FRPPG (PAGE_SIZE / FEC_ENET_TX_FRSIZE)
-#define TX_RING_SIZE 16 /* Must be power of two */
-#define TX_RING_MOD_MASK 15 /* for this to work */
+#define TX_RING_SIZE 512 /* Must be power of two */
+#define TX_RING_MOD_MASK 511 /* for this to work */
#define BD_ENET_RX_INT 0x00800000
#define BD_ENET_RX_PTP ((ushort)0x0400)
diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c
index cf3c368..9de1660 100644
--- a/drivers/net/ethernet/freescale/fec_main.c
+++ b/drivers/net/ethernet/freescale/fec_main.c
@@ -173,10 +173,6 @@ MODULE_PARM_DESC(macaddr, "FEC Ethernet MAC address");
#endif
#endif /* CONFIG_M5272 */
-#if (((RX_RING_SIZE + TX_RING_SIZE) * 32) > PAGE_SIZE)
-#error "FEC: descriptor ring size constants too large"
-#endif
-
/* Interrupt events/masks. */
#define FEC_ENET_HBERR ((uint)0x80000000) /* Heartbeat error */
#define FEC_ENET_BABR ((uint)0x40000000) /* Babbling receiver */
@@ -2061,9 +2057,20 @@ static int fec_enet_init(struct net_device *ndev)
const struct platform_device_id *id_entry =
platform_get_device_id(fep->pdev);
struct bufdesc *cbd_base;
+ int bd_size;
+
+ /* init the tx & rx ring size */
+ fep->tx_ring_size = TX_RING_SIZE;
+ fep->rx_ring_size = RX_RING_SIZE;
+
+ if (fep->bufdesc_ex)
+ bd_size = sizeof(struct bufdesc_ex);
+ else
+ bd_size = sizeof(struct bufdesc);
+ bd_size *= (fep->tx_ring_size + fep->rx_ring_size);
/* Allocate memory for buffer descriptors. */
- cbd_base = dma_alloc_coherent(NULL, PAGE_SIZE, &fep->bd_dma,
+ cbd_base = dma_alloc_coherent(NULL, bd_size, &fep->bd_dma,
GFP_KERNEL);
if (!cbd_base)
return -ENOMEM;
@@ -2077,10 +2084,6 @@ static int fec_enet_init(struct net_device *ndev)
/* make sure MAC we just acquired is programmed into the hw */
fec_set_mac_address(ndev, NULL);
- /* init the tx & rx ring size */
- fep->tx_ring_size = TX_RING_SIZE;
- fep->rx_ring_size = RX_RING_SIZE;
-
/* Set receive and transmit descriptor base. */
fep->rx_bd_base = cbd_base;
if (fep->bufdesc_ex)
--
1.7.8
next prev parent reply other threads:[~2014-06-05 8:23 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-05 6:59 [PATCH v3 0/6] net: fec: Enable Software TSO to improve the tx performance Fugang Duan
2014-06-05 6:59 ` [PATCH v3 1/6] net: fec: Factorize the .xmit transmit function Fugang Duan
2014-06-05 9:06 ` David Laight
2014-06-05 9:34 ` fugang.duan
2014-06-05 9:58 ` David Laight
2014-06-05 10:21 ` fugang.duan
2014-06-05 22:17 ` David Miller
2014-06-05 6:59 ` [PATCH v3 2/6] net: fec: Enable IP header hardware checksum Fugang Duan
2014-06-05 6:59 ` [PATCH v3 3/6] net: fec: Factorize feature setting Fugang Duan
2014-06-05 6:59 ` Fugang Duan [this message]
2014-06-05 6:59 ` [PATCH v3 5/6] net: fec: Add Scatter/gather support Fugang Duan
2014-06-05 6:59 ` [PATCH v3 6/6] net: fec: Add software TSO support Fugang Duan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1401951572-6538-5-git-send-email-b38611@freescale.com \
--to=b38611@freescale.com \
--cc=David.Laight@ACULAB.COM \
--cc=R49496@freescale.com \
--cc=b20596@freescale.com \
--cc=bhutchings@solarflare.com \
--cc=davem@davemloft.net \
--cc=eric.dumazet@gmail.com \
--cc=ezequiel.garcia@free-electrons.com \
--cc=netdev@vger.kernel.org \
--cc=shawn.guo@linaro.org \
--cc=stephen@networkplumber.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).