From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Finn Thain <fthain@telegraphics.com.au>,
Jason Wang <jasowang@redhat.com>,
qemu-devel@nongnu.org
Cc: "Aleksandar Rikalo" <aleksandar.rikalo@rt-rk.com>,
"Hervé Poussineau" <hpoussin@reactos.org>,
"Laurent Vivier" <laurent@vivier.eu>,
qemu-stable@nongnu.org
Subject: Re: [PATCH v4 05/14] dp8393x: Update LLFA and CRDA registers from rx descriptor
Date: Wed, 29 Jan 2020 17:38:53 +0100 [thread overview]
Message-ID: <89052ffa-385e-f892-8b60-4de22192ccd9@redhat.com> (raw)
In-Reply-To: <dae9a2e3f6cdd403e6afab901b234a8b7f3289b8.1580290069.git.fthain@telegraphics.com.au>
On 1/29/20 10:27 AM, Finn Thain wrote:
> Follow the algorithm given in the National Semiconductor DP83932C
> datasheet in section 3.4.7:
>
> At the next reception, the SONIC re-reads the last RXpkt.link field,
> and updates its CRDA register to point to the next descriptor.
>
> The chip is designed to allow the host to provide a new list of
> descriptors in this way.
>
> Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
> Tested-by: Laurent Vivier <laurent@vivier.eu>
> ---
> Changed since v1:
> - Update CRDA register from LLFA register after EOL is cleared.
> ---
> hw/net/dp8393x.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/hw/net/dp8393x.c b/hw/net/dp8393x.c
> index ece72cbf42..249be403af 100644
> --- a/hw/net/dp8393x.c
> +++ b/hw/net/dp8393x.c
> @@ -784,12 +784,13 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
> address = dp8393x_crda(s) + sizeof(uint16_t) * 5 * width;
> address_space_rw(&s->as, address, MEMTXATTRS_UNSPECIFIED,
> (uint8_t *)s->data, size, 0);
> - if (dp8393x_get(s, width, 0) & SONIC_DESC_EOL) {
> + s->regs[SONIC_LLFA] = dp8393x_get(s, width, 0);
> + if (s->regs[SONIC_LLFA] & SONIC_DESC_EOL) {
> /* Still EOL ; stop reception */
> return -1;
> - } else {
> - s->regs[SONIC_CRDA] = s->regs[SONIC_LLFA];
> }
> + /* Link has been updated by host */
> + s->regs[SONIC_CRDA] = s->regs[SONIC_LLFA];
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
> }
>
> /* Save current position */
> @@ -837,7 +838,7 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
> address_space_rw(&s->as, dp8393x_crda(s),
> MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 1);
>
> - /* Move to next descriptor */
> + /* Check link field */
> size = sizeof(uint16_t) * width;
> address_space_rw(&s->as, dp8393x_crda(s) + sizeof(uint16_t) * 5 * width,
> MEMTXATTRS_UNSPECIFIED, (uint8_t *)s->data, size, 0);
> @@ -852,6 +853,8 @@ static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf,
> dp8393x_put(s, width, 0, 0);
> address_space_rw(&s->as, address, MEMTXATTRS_UNSPECIFIED,
> (uint8_t *)s->data, size, 1);
> +
> + /* Move to next descriptor */
> s->regs[SONIC_CRDA] = s->regs[SONIC_LLFA];
> s->regs[SONIC_ISR] |= SONIC_ISR_PKTRX;
> s->regs[SONIC_RSC] = (s->regs[SONIC_RSC] & 0xff00) | (((s->regs[SONIC_RSC] & 0x00ff) + 1) & 0x00ff);
>
next prev parent reply other threads:[~2020-01-29 16:40 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-29 9:27 [PATCH v4 00/14] Fixes for DP8393X SONIC device emulation Finn Thain
2020-01-29 9:27 ` [PATCH v4 09/14] dp8393x: Use long-word-aligned RRA pointers in 32-bit mode Finn Thain
2020-01-29 9:27 ` [PATCH v4 13/14] dp8393x: Don't reset Silicon Revision register Finn Thain
2020-01-29 16:37 ` Philippe Mathieu-Daudé
2020-01-29 9:27 ` [PATCH v4 01/14] dp8393x: Mask EOL bit from descriptor addresses Finn Thain
2020-01-29 9:27 ` [PATCH v4 03/14] dp8393x: Clean up endianness hacks Finn Thain
2020-01-29 9:27 ` [PATCH v4 12/14] dp8393x: Always update RRA pointers and sequence numbers Finn Thain
2020-01-29 9:27 ` [PATCH v4 14/14] dp8393x: Don't stop reception upon RBE interrupt assertion Finn Thain
2020-01-29 9:27 ` [PATCH v4 07/14] dp8393x: Implement packet size limit and RBAE interrupt Finn Thain
2020-01-29 9:27 ` [PATCH v4 04/14] dp8393x: Have dp8393x_receive() return the packet size Finn Thain
2020-01-29 9:27 ` [PATCH v4 08/14] dp8393x: Don't clobber packet checksum Finn Thain
2020-01-29 9:27 ` [PATCH v4 06/14] dp8393x: Clear RRRA command register bit only when appropriate Finn Thain
2020-01-29 9:27 ` [PATCH v4 10/14] dp8393x: Pad frames to word or long word boundary Finn Thain
2020-01-29 9:27 ` [PATCH v4 11/14] dp8393x: Clear descriptor in_use field to release packet Finn Thain
2020-01-29 9:27 ` [PATCH v4 02/14] dp8393x: Always use 32-bit accesses Finn Thain
2020-01-29 9:27 ` [PATCH v4 05/14] dp8393x: Update LLFA and CRDA registers from rx descriptor Finn Thain
2020-01-29 16:38 ` Philippe Mathieu-Daudé [this message]
2020-02-04 3:58 ` [PATCH v4 00/14] Fixes for DP8393X SONIC device emulation Jason Wang
2020-02-18 18:30 ` Aleksandar Markovic
2020-02-19 3:13 ` Jason Wang
2020-02-18 18:25 ` Aleksandar Markovic
2020-02-19 1:06 ` Finn Thain
2020-02-19 1:54 ` Aleksandar Markovic
2020-02-19 1:57 ` Aleksandar Markovic
2020-02-19 7:55 ` Laurent Vivier
2020-02-19 8:27 ` Philippe Mathieu-Daudé
2020-02-20 6:55 ` 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=89052ffa-385e-f892-8b60-4de22192ccd9@redhat.com \
--to=philmd@redhat.com \
--cc=aleksandar.rikalo@rt-rk.com \
--cc=fthain@telegraphics.com.au \
--cc=hpoussin@reactos.org \
--cc=jasowang@redhat.com \
--cc=laurent@vivier.eu \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@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).