From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>
To: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
Cc: damien.hedde@greensocs.com, peter.maydell@linaro.org,
sstabellini@kernel.org, sai.pavan.boddu@xilinx.com,
frasse.iglesias@gmail.com, jasowang@redhat.com,
alistair@alistair23.me, qemu-devel@nongnu.org,
frederic.konrad@adacore.com, qemu-arm@nongnu.org,
philmd@redhat.com, luc.michel@greensocs.com, figlesia@xilinx.com
Subject: Re: [PATCH v1 6/9] hw/net/xilinx_axienet: Handle fragmented packets from DMA
Date: Tue, 5 May 2020 16:52:18 +0200 [thread overview]
Message-ID: <20200505145218.GE2945@toto> (raw)
In-Reply-To: <20200430162439.2659-7-edgar.iglesias@gmail.com>
On Thu, Apr 30, 2020 at 06:24:36PM +0200, Edgar E. Iglesias wrote:
> From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>
>
> Add support for fragmented packets from the DMA.
In v2 I'll add a check in the tx-path for packets larger than c_txmem...
Cheers,
Edgar
>
> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
> ---
> hw/net/xilinx_axienet.c | 31 ++++++++++++++++++++++++-------
> 1 file changed, 24 insertions(+), 7 deletions(-)
>
> diff --git a/hw/net/xilinx_axienet.c b/hw/net/xilinx_axienet.c
> index bd48305577..e3826cf3fc 100644
> --- a/hw/net/xilinx_axienet.c
> +++ b/hw/net/xilinx_axienet.c
> @@ -402,6 +402,9 @@ struct XilinxAXIEnet {
>
> uint32_t hdr[CONTROL_PAYLOAD_WORDS];
>
> + uint8_t *txmem;
> + uint32_t txpos;
> +
> uint8_t *rxmem;
> uint32_t rxsize;
> uint32_t rxpos;
> @@ -421,6 +424,7 @@ static void axienet_rx_reset(XilinxAXIEnet *s)
> static void axienet_tx_reset(XilinxAXIEnet *s)
> {
> s->tc = TC_JUM | TC_TX | TC_VLAN;
> + s->txpos = 0;
> }
>
> static inline int axienet_rx_resetting(XilinxAXIEnet *s)
> @@ -902,17 +906,28 @@ xilinx_axienet_data_stream_push(StreamSlave *obj, uint8_t *buf, size_t size,
> XilinxAXIEnetStreamSlave *ds = XILINX_AXI_ENET_DATA_STREAM(obj);
> XilinxAXIEnet *s = ds->enet;
>
> - /* We don't support fragmented packets yet. */
> - assert(eop);
> -
> /* TX enable ? */
> if (!(s->tc & TC_TX)) {
> return size;
> }
>
> + if (s->txpos == 0 && eop) {
> + /* Fast path single fragment. */
> + s->txpos = size;
> + } else {
> + memcpy(s->txmem + s->txpos, buf, size);
> + buf = s->txmem;
> + s->txpos += size;
> +
> + if (!eop) {
> + return size;
> + }
> + }
> +
> /* Jumbo or vlan sizes ? */
> if (!(s->tc & TC_JUM)) {
> - if (size > 1518 && size <= 1522 && !(s->tc & TC_VLAN)) {
> + if (s->txpos > 1518 && s->txpos <= 1522 && !(s->tc & TC_VLAN)) {
> + s->txpos = 0;
> return size;
> }
> }
> @@ -923,7 +938,7 @@ xilinx_axienet_data_stream_push(StreamSlave *obj, uint8_t *buf, size_t size,
> uint32_t tmp_csum;
> uint16_t csum;
>
> - tmp_csum = net_checksum_add(size - start_off,
> + tmp_csum = net_checksum_add(s->txpos - start_off,
> buf + start_off);
> /* Accumulate the seed. */
> tmp_csum += s->hdr[2] & 0xffff;
> @@ -936,12 +951,13 @@ xilinx_axienet_data_stream_push(StreamSlave *obj, uint8_t *buf, size_t size,
> buf[write_off + 1] = csum & 0xff;
> }
>
> - qemu_send_packet(qemu_get_queue(s->nic), buf, size);
> + qemu_send_packet(qemu_get_queue(s->nic), buf, s->txpos);
>
> - s->stats.tx_bytes += size;
> + s->stats.tx_bytes += s->txpos;
> s->regs[R_IS] |= IS_TX_COMPLETE;
> enet_update_irq(s);
>
> + s->txpos = 0;
> return size;
> }
>
> @@ -989,6 +1005,7 @@ static void xilinx_enet_realize(DeviceState *dev, Error **errp)
> s->TEMAC.parent = s;
>
> s->rxmem = g_malloc(s->c_rxmem);
> + s->txmem = g_malloc(s->c_txmem);
> return;
>
> xilinx_enet_realize_fail:
> --
> 2.20.1
>
next prev parent reply other threads:[~2020-05-05 14:53 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-30 16:24 [PATCH v1 0/9] hw/core: stream: Add end-of-packet flag Edgar E. Iglesias
2020-04-30 16:24 ` [PATCH v1 1/9] hw/net/xilinx_axienet: Auto-clear PHY Autoneg Edgar E. Iglesias
2020-05-04 15:29 ` Francisco Iglesias
2020-04-30 16:24 ` [PATCH v1 2/9] hw/net/xilinx_axienet: Cleanup stream->push assignment Edgar E. Iglesias
2020-05-04 15:29 ` Francisco Iglesias
2020-05-05 16:30 ` Alistair Francis
2020-04-30 16:24 ` [PATCH v1 3/9] hw/net/xilinx_axienet: Remove unncessary cast Edgar E. Iglesias
2020-05-04 15:30 ` Francisco Iglesias
2020-05-05 16:30 ` Alistair Francis
2020-04-30 16:24 ` [PATCH v1 4/9] hw/dma/xilinx_axidma: Add DMA memory-region property Edgar E. Iglesias
2020-05-04 15:30 ` Francisco Iglesias
2020-05-05 16:32 ` Alistair Francis
2020-04-30 16:24 ` [PATCH v1 5/9] hw/core: stream: Add an end-of-packet flag Edgar E. Iglesias
2020-05-05 14:20 ` Francisco Iglesias
2020-05-05 16:35 ` Alistair Francis
2020-04-30 16:24 ` [PATCH v1 6/9] hw/net/xilinx_axienet: Handle fragmented packets from DMA Edgar E. Iglesias
2020-05-05 14:20 ` Francisco Iglesias
2020-05-05 14:52 ` Edgar E. Iglesias [this message]
2020-04-30 16:24 ` [PATCH v1 7/9] hw/dma/xilinx_axidma: mm2s: Stream descriptor by descriptor Edgar E. Iglesias
2020-05-05 19:57 ` Alistair Francis
2020-04-30 16:24 ` [PATCH v1 8/9] hw/dma/xilinx_axidma: s2mm: Support stream fragments Edgar E. Iglesias
2020-05-05 19:59 ` Alistair Francis
2020-04-30 16:24 ` [PATCH v1 9/9] MAINTAINERS: Add myself as streams maintainer Edgar E. Iglesias
2020-05-05 19:57 ` Alistair Francis
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=20200505145218.GE2945@toto \
--to=edgar.iglesias@xilinx.com \
--cc=alistair@alistair23.me \
--cc=damien.hedde@greensocs.com \
--cc=edgar.iglesias@gmail.com \
--cc=figlesia@xilinx.com \
--cc=frasse.iglesias@gmail.com \
--cc=frederic.konrad@adacore.com \
--cc=jasowang@redhat.com \
--cc=luc.michel@greensocs.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=sai.pavan.boddu@xilinx.com \
--cc=sstabellini@kernel.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).