[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 0/9] hw/core: stream: Add end-of-packet flag
From: |
Edgar E. Iglesias |
Subject: |
[PATCH v2 0/9] hw/core: stream: Add end-of-packet flag |
Date: |
Wed, 6 May 2020 10:25:04 +0200 |
From: "Edgar E. Iglesias" <address@hidden>
Hi,
When modeling pipelines of processing nodes that communicate
through streaming interfaces (e.g AXI-Stream), some of these
nodes send packets while others may just stream unpacketized data.
The purpose of this series is to add an end-of-packet flag, e.g
what AXI-Stream calls tlast. This is in preparation for modeling
future nodes that may use huge packets that we wouldn't be able
to buffer and also to handle nodes that don't use packets.
Along the way I fixed a few things in the petalinux-ml605 eth setup.
Cheers,
Edgar
ChangeLog:
v1 -> v2:
* Check that packets fit c_txmem
Edgar E. Iglesias (9):
hw/net/xilinx_axienet: Auto-clear PHY Autoneg
hw/net/xilinx_axienet: Cleanup stream->push assignment
hw/net/xilinx_axienet: Remove unncessary cast
hw/dma/xilinx_axidma: Add DMA memory-region property
hw/core: stream: Add an end-of-packet flag
hw/net/xilinx_axienet: Handle fragmented packets from DMA
hw/dma/xilinx_axidma: mm2s: Stream descriptor by descriptor
hw/dma/xilinx_axidma: s2mm: Support stream fragments
MAINTAINERS: Add myself as streams maintainer
include/hw/stream.h | 5 +--
hw/core/stream.c | 4 +--
hw/dma/xilinx_axidma.c | 75 ++++++++++++++++++++++++++---------------
hw/net/xilinx_axienet.c | 70 ++++++++++++++++++++++++++++----------
hw/ssi/xilinx_spips.c | 2 +-
MAINTAINERS | 6 ++++
6 files changed, 113 insertions(+), 49 deletions(-)
--
2.20.1
- [PATCH v2 0/9] hw/core: stream: Add end-of-packet flag,
Edgar E. Iglesias <=
- [PATCH v2 1/9] hw/net/xilinx_axienet: Auto-clear PHY Autoneg, Edgar E. Iglesias, 2020/05/06
- [PATCH v2 2/9] hw/net/xilinx_axienet: Cleanup stream->push assignment, Edgar E. Iglesias, 2020/05/06
- [PATCH v2 3/9] hw/net/xilinx_axienet: Remove unncessary cast, Edgar E. Iglesias, 2020/05/06
- [PATCH v2 4/9] hw/dma/xilinx_axidma: Add DMA memory-region property, Edgar E. Iglesias, 2020/05/06
- [PATCH v2 5/9] hw/core: stream: Add an end-of-packet flag, Edgar E. Iglesias, 2020/05/06