* [PATCH net-next-2.6 v8 01/20] CAN : Add flow control processing.
@ 2010-12-07 11:00 Tomoya MORINAGA
[not found] ` <4CFE13E4.2020707-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Tomoya MORINAGA @ 2010-12-07 11:00 UTC (permalink / raw)
To: Wolfgang Grandegger, socketcan-core-0fE9KPoRgkgATYTw5x5z8w,
netdev-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Cc: andrew.chih.howe.khor-ral2JQCrhuEAvxtiuMwx3w,
qi.wang-ral2JQCrhuEAvxtiuMwx3w,
margie.foster-ral2JQCrhuEAvxtiuMwx3w,
yong.y.wang-ral2JQCrhuEAvxtiuMwx3w,
kok.howg.ewe-ral2JQCrhuEAvxtiuMwx3w,
joel.clark-ral2JQCrhuEAvxtiuMwx3w
Currently, there is no flow control processing.
Thus, Add flow control processing as
when there is no empty of tx buffer,
netif_stop_queue is called.
When there is empty buffer, netif_wake_queue is called.
Signed-off-by: Tomoya MORINAGA <tomoya-linux-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org>
---
drivers/net/can/pch_can.c | 31 ++++++++++++-------------------
1 files changed, 12 insertions(+), 19 deletions(-)
diff --git a/drivers/net/can/pch_can.c b/drivers/net/can/pch_can.c
index a9b6a65..f0f1404 100644
--- a/drivers/net/can/pch_can.c
+++ b/drivers/net/can/pch_can.c
@@ -102,6 +102,10 @@
#define PCH_FIFO_THRESH 16
+/* TxRqst2 show status of MsgObjNo.17~32 */
+#define PCH_TREQ2_TX_MASK (((1 << PCH_TX_OBJ_NUM) - 1) <<\
+ (PCH_RX_OBJ_END - 16))
+
enum pch_ifreg {
PCH_RX_IFREG,
PCH_TX_IFREG,
@@ -871,6 +875,8 @@ MSG_OBJ:
dlc = 8;
stats->tx_bytes += dlc;
stats->tx_packets++;
+ if (int_stat == PCH_TX_OBJ_END)
+ netif_wake_queue(ndev);
}
int_stat = pch_can_int_pending(priv);
@@ -1009,18 +1015,6 @@ static int pch_close(struct net_device *ndev)
return 0;
}
-static int pch_get_msg_obj_sts(struct net_device *ndev, u32 obj_id)
-{
- u32 buffer_status = 0;
- struct pch_can_priv *priv = netdev_priv(ndev);
-
- /* Getting the message object status. */
- buffer_status = (u32) pch_can_get_buffer_status(priv);
-
- return buffer_status & obj_id;
-}
-
-
static netdev_tx_t pch_xmit(struct sk_buff *skb, struct net_device *ndev)
{
int i, j;
@@ -1031,17 +1025,16 @@ static netdev_tx_t pch_xmit(struct sk_buff *skb, struct net_device *ndev)
if (can_dropped_invalid_skb(ndev, skb))
return NETDEV_TX_OK;
- if (priv->tx_obj == PCH_TX_OBJ_END) { /* Point tail Obj */
- while (pch_get_msg_obj_sts(ndev, (((1 << PCH_TX_OBJ_NUM)-1) <<
- PCH_RX_OBJ_NUM)))
- udelay(500);
+ if (priv->tx_obj == PCH_TX_OBJ_END) {
+ if (ioread32(&priv->regs->treq2) & PCH_TREQ2_TX_MASK)
+ netif_stop_queue(ndev);
- priv->tx_obj = PCH_TX_OBJ_START; /* Point head of Tx Obj ID */
- tx_buffer_avail = priv->tx_obj; /* Point Tail of Tx Obj */
+ tx_buffer_avail = priv->tx_obj;
+ priv->tx_obj = PCH_TX_OBJ_START;
} else {
tx_buffer_avail = priv->tx_obj;
+ priv->tx_obj++;
}
- priv->tx_obj++;
/* Reading the Msg Obj from the Msg RAM to the Interface register. */
iowrite32(PCH_CMASK_RX_TX_GET, &priv->regs->ifregs[1].cmask);
--
1.6.0.6
^ permalink raw reply related [flat|nested] 3+ messages in thread[parent not found: <4CFE13E4.2020707-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org>]
* Re: [PATCH net-next-2.6 v8 01/20] CAN : Add flow control processing. [not found] ` <4CFE13E4.2020707-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org> @ 2010-12-10 19:17 ` David Miller 2010-12-12 15:26 ` Marc Kleine-Budde 1 sibling, 0 replies; 3+ messages in thread From: David Miller @ 2010-12-10 19:17 UTC (permalink / raw) To: tomoya-linux-ECg8zkTtlr0C6LszWs/t0g Cc: andrew.chih.howe.khor-ral2JQCrhuEAvxtiuMwx3w, qi.wang-ral2JQCrhuEAvxtiuMwx3w, margie.foster-ral2JQCrhuEAvxtiuMwx3w, netdev-u79uwXL29TY76Z2rM5mHXA, yong.y.wang-ral2JQCrhuEAvxtiuMwx3w, linux-kernel-u79uwXL29TY76Z2rM5mHXA, socketcan-core-0fE9KPoRgkgATYTw5x5z8w, kok.howg.ewe-ral2JQCrhuEAvxtiuMwx3w, joel.clark-ral2JQCrhuEAvxtiuMwx3w, wg-5Yr1BZd7O62+XT7JhA+gdA Your subject lines need to be fixed. You are not making changes to the CAN subsystem, you are making changes to the "pch_can" device driver. Also you should not put a space before the ":" character. So something like [PATCH net-next-2.6 v8 01/20] pch_can: Add flow control processing Thanks. ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next-2.6 v8 01/20] CAN : Add flow control processing. [not found] ` <4CFE13E4.2020707-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org> 2010-12-10 19:17 ` David Miller @ 2010-12-12 15:26 ` Marc Kleine-Budde 1 sibling, 0 replies; 3+ messages in thread From: Marc Kleine-Budde @ 2010-12-12 15:26 UTC (permalink / raw) To: Tomoya MORINAGA Cc: andrew.chih.howe.khor-ral2JQCrhuEAvxtiuMwx3w, qi.wang-ral2JQCrhuEAvxtiuMwx3w, margie.foster-ral2JQCrhuEAvxtiuMwx3w, netdev-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, yong.y.wang-ral2JQCrhuEAvxtiuMwx3w, socketcan-core-0fE9KPoRgkgATYTw5x5z8w, kok.howg.ewe-ral2JQCrhuEAvxtiuMwx3w, joel.clark-ral2JQCrhuEAvxtiuMwx3w, Wolfgang Grandegger [-- Attachment #1.1: Type: text/plain, Size: 3115 bytes --] On 12/07/2010 12:00 PM, Tomoya MORINAGA wrote: > Currently, there is no flow control processing. > Thus, Add flow control processing as > when there is no empty of tx buffer, > netif_stop_queue is called. > When there is empty buffer, netif_wake_queue is called. See comment inline. > Signed-off-by: Tomoya MORINAGA <tomoya-linux-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org> > --- > drivers/net/can/pch_can.c | 31 ++++++++++++------------------- > 1 files changed, 12 insertions(+), 19 deletions(-) > > diff --git a/drivers/net/can/pch_can.c b/drivers/net/can/pch_can.c > index a9b6a65..f0f1404 100644 > --- a/drivers/net/can/pch_can.c > +++ b/drivers/net/can/pch_can.c > @@ -102,6 +102,10 @@ > > #define PCH_FIFO_THRESH 16 > > +/* TxRqst2 show status of MsgObjNo.17~32 */ > +#define PCH_TREQ2_TX_MASK (((1 << PCH_TX_OBJ_NUM) - 1) <<\ > + (PCH_RX_OBJ_END - 16)) > + > enum pch_ifreg { > PCH_RX_IFREG, > PCH_TX_IFREG, > @@ -871,6 +875,8 @@ MSG_OBJ: > dlc = 8; > stats->tx_bytes += dlc; > stats->tx_packets++; > + if (int_stat == PCH_TX_OBJ_END) > + netif_wake_queue(ndev); > } > > int_stat = pch_can_int_pending(priv); > @@ -1009,18 +1015,6 @@ static int pch_close(struct net_device *ndev) > return 0; > } > > -static int pch_get_msg_obj_sts(struct net_device *ndev, u32 obj_id) > -{ > - u32 buffer_status = 0; > - struct pch_can_priv *priv = netdev_priv(ndev); > - > - /* Getting the message object status. */ > - buffer_status = (u32) pch_can_get_buffer_status(priv); > - > - return buffer_status & obj_id; > -} > - > - > static netdev_tx_t pch_xmit(struct sk_buff *skb, struct net_device *ndev) > { > int i, j; > @@ -1031,17 +1025,16 @@ static netdev_tx_t pch_xmit(struct sk_buff *skb, struct net_device *ndev) > if (can_dropped_invalid_skb(ndev, skb)) > return NETDEV_TX_OK; > > - if (priv->tx_obj == PCH_TX_OBJ_END) { /* Point tail Obj */ > - while (pch_get_msg_obj_sts(ndev, (((1 << PCH_TX_OBJ_NUM)-1) << > - PCH_RX_OBJ_NUM))) > - udelay(500); > + if (priv->tx_obj == PCH_TX_OBJ_END) { > + if (ioread32(&priv->regs->treq2) & PCH_TREQ2_TX_MASK) > + netif_stop_queue(ndev); David asked you in his previous review to implement a pure software solution without relying on the hardware because it tends to be racy. > > - priv->tx_obj = PCH_TX_OBJ_START; /* Point head of Tx Obj ID */ > - tx_buffer_avail = priv->tx_obj; /* Point Tail of Tx Obj */ > + tx_buffer_avail = priv->tx_obj; > + priv->tx_obj = PCH_TX_OBJ_START; > } else { > tx_buffer_avail = priv->tx_obj; > + priv->tx_obj++; > } > - priv->tx_obj++; > > /* Reading the Msg Obj from the Msg RAM to the Interface register. */ > iowrite32(PCH_CMASK_RX_TX_GET, &priv->regs->ifregs[1].cmask); cheers, Marc -- Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions | Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | [-- Attachment #1.2: OpenPGP digital signature --] [-- Type: application/pgp-signature, Size: 262 bytes --] [-- Attachment #2: Type: text/plain, Size: 188 bytes --] _______________________________________________ Socketcan-core mailing list Socketcan-core-0fE9KPoRgkgATYTw5x5z8w@public.gmane.org https://lists.berlios.de/mailman/listinfo/socketcan-core ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-12-12 15:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-07 11:00 [PATCH net-next-2.6 v8 01/20] CAN : Add flow control processing Tomoya MORINAGA
[not found] ` <4CFE13E4.2020707-ECg8zkTtlr0C6LszWs/t0g@public.gmane.org>
2010-12-10 19:17 ` David Miller
2010-12-12 15:26 ` Marc Kleine-Budde
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).