diff mbox

net: macb: Add better comment for RXUBR handling

Message ID 1431554496-11716-1-git-send-email-nathan.sullivan@ni.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Nathan Sullivan May 13, 2015, 10:01 p.m. UTC
Describe the handler for RXUBR better with a new comment.

Signed-off-by: Nathan Sullivan <nathan.sullivan@ni.com>
Reviewied-by: Josh Cartwright <joshc@ni.com>
Reviewied-by: Ben Shelton <ben.shelton@ni.com>
---
 drivers/net/ethernet/cadence/macb.c |    6 ++++++
 1 file changed, 6 insertions(+)

Comments

Nicolas Ferre May 15, 2015, 7:49 a.m. UTC | #1
Le 14/05/2015 00:01, Nathan Sullivan a écrit :
> Describe the handler for RXUBR better with a new comment.
> 
> Signed-off-by: Nathan Sullivan <nathan.sullivan@ni.com>
> Reviewied-by: Josh Cartwright <joshc@ni.com>
> Reviewied-by: Ben Shelton <ben.shelton@ni.com>

Thanks Nathan: good that you've added this comment!

Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>

> ---
>  drivers/net/ethernet/cadence/macb.c |    6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c
> index 61aa570..5f10dfc 100644
> --- a/drivers/net/ethernet/cadence/macb.c
> +++ b/drivers/net/ethernet/cadence/macb.c
> @@ -1037,6 +1037,12 @@ static irqreturn_t macb_interrupt(int irq, void *dev_id)
>  		 * add that if/when we get our hands on a full-blown MII PHY.
>  		 */
>  
> +		/* There is a hardware issue under heavy load where DMA can
> +		 * stop, this causes endless "used buffer descriptor read"
> +		 * interrupts but it can be cleared by re-enabling RX. See
> +		 * the at91 manual, section 41.3.1 or the Zynq manual
> +		 * section 16.7.4 for details.
> +		 */
>  		if (status & MACB_BIT(RXUBR)) {
>  			ctrl = macb_readl(bp, NCR);
>  			macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));
>
David Miller May 15, 2015, 4:13 p.m. UTC | #2
From: Nathan Sullivan <nathan.sullivan@ni.com>
Date: Wed, 13 May 2015 17:01:36 -0500

> Describe the handler for RXUBR better with a new comment.
> 
> Signed-off-by: Nathan Sullivan <nathan.sullivan@ni.com>
> Reviewied-by: Josh Cartwright <joshc@ni.com>
> Reviewied-by: Ben Shelton <ben.shelton@ni.com>

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/ethernet/cadence/macb.c b/drivers/net/ethernet/cadence/macb.c
index 61aa570..5f10dfc 100644
--- a/drivers/net/ethernet/cadence/macb.c
+++ b/drivers/net/ethernet/cadence/macb.c
@@ -1037,6 +1037,12 @@  static irqreturn_t macb_interrupt(int irq, void *dev_id)
 		 * add that if/when we get our hands on a full-blown MII PHY.
 		 */
 
+		/* There is a hardware issue under heavy load where DMA can
+		 * stop, this causes endless "used buffer descriptor read"
+		 * interrupts but it can be cleared by re-enabling RX. See
+		 * the at91 manual, section 41.3.1 or the Zynq manual
+		 * section 16.7.4 for details.
+		 */
 		if (status & MACB_BIT(RXUBR)) {
 			ctrl = macb_readl(bp, NCR);
 			macb_writel(bp, NCR, ctrl & ~MACB_BIT(RE));