projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eea3994
)
net: macb: Add better comment for RXUBR handling
author
Nathan Sullivan
<
[email protected]
>
Wed, 13 May 2015 22:01:36 +0000
(17:01 -0500)
committer
David S. Miller
<
[email protected]
>
Fri, 15 May 2015 16:13:11 +0000
(12:13 -0400)
Describe the handler for RXUBR better with a new comment.
Signed-off-by: Nathan Sullivan <
[email protected]
>
Reviewied-by: Josh Cartwright <
[email protected]
>
Reviewied-by: Ben Shelton <
[email protected]
>
Acked-by: Nicolas Ferre <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/ethernet/cadence/macb.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/cadence/macb.c
b/drivers/net/ethernet/cadence/macb.c
index 61aa570aad9a1b821613de323ef54701010fce53..5f10dfc631d794ef13861b706e5c11445c9243b8 100644
(file)
--- 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));