From: Jason Wang <jasowang@redhat.com>
To: peter.maydell@linaro.org
Cc: Jason Wang <jasowang@redhat.com>,
qemu-devel@nongnu.org, Finn Thain <fthain@telegraphics.com.au>
Subject: [PULL 14/23] dp8393x: Don't stop reception upon RBE interrupt assertion
Date: Mon, 2 Mar 2020 15:40:27 +0800 [thread overview]
Message-ID: <1583134836-23991-15-git-send-email-jasowang@redhat.com> (raw)
In-Reply-To: <1583134836-23991-1-git-send-email-jasowang@redhat.com>
From: Finn Thain <fthain@telegraphics.com.au>
Section 3.4.7 of the datasheet explains that,
The RBE bit in the Interrupt Status register is set when the
SONIC finishes using the second to last receive buffer and reads
the last RRA descriptor. Actually, the SONIC is not truly out of
resources, but gives the system an early warning of an impending
out of resources condition.
RBE does not mean actual receive buffer exhaustion, and reception should
not be stopped. This is important because Linux will not check and clear
the RBE interrupt until it receives another packet. But that won't
happen if can_receive returns false. This bug causes the SONIC to become
deaf (until reset).
Fix this with a new flag to indicate actual receive buffer exhaustion.
Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
Tested-by: Laurent Vivier <laurent@vivier.eu>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
hw/net/dp8393x.c | 35 ++++++++++++++++++++++-------------
1 file changed, 22 insertions(+), 13 deletions(-)
diff --git a/hw/net/dp8393x.c b/hw/net/dp8393x.c
index c2ac2a1..8a3504d 100644
--- a/hw/net/dp8393x.c
+++ b/hw/net/dp8393x.c
@@ -158,6 +158,7 @@ typedef struct dp8393xState {
/* Hardware */
uint8_t it_shift;
bool big_endian;
+ bool last_rba_is_full;
qemu_irq irq;
#ifdef DEBUG_SONIC
int irq_level;
@@ -347,12 +348,15 @@ static void dp8393x_do_read_rra(dp8393xState *s)
s->regs[SONIC_RRP] = s->regs[SONIC_RSA];
}
- /* Check resource exhaustion */
+ /* Warn the host if CRBA now has the last available resource */
if (s->regs[SONIC_RRP] == s->regs[SONIC_RWP])
{
s->regs[SONIC_ISR] |= SONIC_ISR_RBE;
dp8393x_update_irq(s);
}
+
+ /* Allow packet reception */
+ s->last_rba_is_full = false;
}
static void dp8393x_do_software_reset(dp8393xState *s)
@@ -661,9 +665,6 @@ static void dp8393x_write(void *opaque, hwaddr addr, uint64_t data,
dp8393x_do_read_rra(s);
}
dp8393x_update_irq(s);
- if (dp8393x_can_receive(s->nic->ncs)) {
- qemu_flush_queued_packets(qemu_get_queue(s->nic));
- }
break;
/* The guest is required to store aligned pointers here */
case SONIC_RSA:
@@ -723,8 +724,6 @@ static int dp8393x_can_receive(NetClientState *nc)
if (!(s->regs[SONIC_CR] & SONIC_CR_RXEN))
return 0;
- if (s->regs[SONIC_ISR] & SONIC_ISR_RBE)
- return 0;
return 1;
}
@@ -775,6 +774,10 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
s->regs[SONIC_RCR] &= ~(SONIC_RCR_PRX | SONIC_RCR_LBK | SONIC_RCR_FAER |
SONIC_RCR_CRCR | SONIC_RCR_LPKT | SONIC_RCR_BC | SONIC_RCR_MC);
+ if (s->last_rba_is_full) {
+ return pkt_size;
+ }
+
rx_len = pkt_size + sizeof(checksum);
if (s->regs[SONIC_DCR] & SONIC_DCR_DW) {
width = 2;
@@ -788,8 +791,8 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
DPRINTF("oversize packet, pkt_size is %d\n", pkt_size);
s->regs[SONIC_ISR] |= SONIC_ISR_RBAE;
dp8393x_update_irq(s);
- dp8393x_do_read_rra(s);
- return pkt_size;
+ s->regs[SONIC_RCR] |= SONIC_RCR_LPKT;
+ goto done;
}
packet_type = dp8393x_receive_filter(s, buf, pkt_size);
@@ -903,17 +906,23 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
s->regs[SONIC_ISR] |= SONIC_ISR_PKTRX;
}
+ dp8393x_update_irq(s);
+
s->regs[SONIC_RSC] = (s->regs[SONIC_RSC] & 0xff00) |
((s->regs[SONIC_RSC] + 1) & 0x00ff);
+done:
+
if (s->regs[SONIC_RCR] & SONIC_RCR_LPKT) {
- /* Read next RRA */
- dp8393x_do_read_rra(s);
+ if (s->regs[SONIC_RRP] == s->regs[SONIC_RWP]) {
+ /* Stop packet reception */
+ s->last_rba_is_full = true;
+ } else {
+ /* Read next resource */
+ dp8393x_do_read_rra(s);
+ }
}
- /* Done */
- dp8393x_update_irq(s);
-
return pkt_size;
}
--
2.5.0
next prev parent reply other threads:[~2020-03-02 7:49 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-02 7:40 [PULL 00/23] Net patches Jason Wang
2020-03-02 7:40 ` [PULL 01/23] dp8393x: Mask EOL bit from descriptor addresses Jason Wang
2020-03-02 7:40 ` [PULL 02/23] dp8393x: Always use 32-bit accesses Jason Wang
2020-03-02 7:40 ` [PULL 03/23] dp8393x: Clean up endianness hacks Jason Wang
2020-03-02 7:40 ` [PULL 04/23] dp8393x: Have dp8393x_receive() return the packet size Jason Wang
2020-03-02 7:40 ` [PULL 05/23] dp8393x: Update LLFA and CRDA registers from rx descriptor Jason Wang
2020-03-02 7:40 ` [PULL 06/23] dp8393x: Clear RRRA command register bit only when appropriate Jason Wang
2020-03-02 7:40 ` [PULL 07/23] dp8393x: Implement packet size limit and RBAE interrupt Jason Wang
2020-03-02 7:40 ` [PULL 08/23] dp8393x: Don't clobber packet checksum Jason Wang
2020-03-02 7:40 ` [PULL 09/23] dp8393x: Use long-word-aligned RRA pointers in 32-bit mode Jason Wang
2020-03-02 7:40 ` [PULL 10/23] dp8393x: Pad frames to word or long word boundary Jason Wang
2020-03-02 7:40 ` [PULL 11/23] dp8393x: Clear descriptor in_use field to release packet Jason Wang
2020-03-02 7:40 ` [PULL 12/23] dp8393x: Always update RRA pointers and sequence numbers Jason Wang
2020-03-02 7:40 ` [PULL 13/23] dp8393x: Don't reset Silicon Revision register Jason Wang
2020-03-02 7:40 ` Jason Wang [this message]
2020-03-02 7:40 ` [PULL 15/23] e1000e: Avoid hw_error if legacy mode used Jason Wang
2020-03-02 7:40 ` [PULL 16/23] NetRxPkt: Introduce support for additional hash types Jason Wang
2020-03-02 7:40 ` [PULL 17/23] NetRxPkt: fix hash calculation of IPV6 TCP Jason Wang
2020-03-02 7:40 ` [PULL 18/23] hw: net: cadence_gem: Fix build errors in DB_PRINT() Jason Wang
2020-03-02 7:40 ` [PULL 19/23] block/replication.c: Ignore requests after failover Jason Wang
2020-03-02 7:40 ` [PULL 20/23] tests/test-replication.c: Add test for for secondary node continuing replication Jason Wang
2020-03-02 7:40 ` [PULL 21/23] net/filter.c: Add Options to insert filters anywhere in the filter list Jason Wang
2020-03-02 7:40 ` [PULL 22/23] colo: Update Documentation for continuous replication Jason Wang
2020-03-02 7:40 ` [PULL 23/23] l2tpv3: fix RFC number typo in qemu-options.hx Jason Wang
2020-03-02 14:11 ` [PULL 00/23] Net patches Peter Maydell
2020-03-03 10:12 ` Jason Wang
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=1583134836-23991-15-git-send-email-jasowang@redhat.com \
--to=jasowang@redhat.com \
--cc=fthain@telegraphics.com.au \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.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).