From: Vinod Koul <vkoul@kernel.org>
To: Andrea della Porta <andrea.porta@suse.com>
Cc: Florian Fainelli <florian.fainelli@broadcom.com>,
Ray Jui <rjui@broadcom.com>,
Scott Branden <sbranden@broadcom.com>,
Broadcom internal kernel review list
<bcm-kernel-feedback-list@broadcom.com>,
dmaengine@vger.kernel.org, linux-rpi-kernel@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, Maxime Ripard <maxime@cerno.tech>,
Dom Cobley <popcornmix@gmail.com>,
Phil Elwell <phil@raspberrypi.com>
Subject: Re: [PATCH 07/12] bcm2835-dma: Support dma flags for multi-beat burst
Date: Wed, 7 Feb 2024 09:22:10 +0100 [thread overview]
Message-ID: <ZcM9slv_x-CltW6y@matsya> (raw)
In-Reply-To: <570953f9532e2dc46568674d3c1348cdf26488b6.1706948717.git.andrea.porta@suse.com>
On 04-02-24, 07:59, Andrea della Porta wrote:
> From: Dom Cobley <popcornmix@gmail.com>
>
> Add a control bit to enable a multi-beat burst on a DMA.
> This improves DMA performance and is required for HDMI audio.
>
> Signed-off-by: Dom Cobley <popcornmix@gmail.com>
> Signed-off-by: Andrea della Porta <andrea.porta@suse.com>
> ---
> drivers/dma/bcm2835-dma.c | 28 ++++++++++++++++++++--------
> 1 file changed, 20 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/dma/bcm2835-dma.c b/drivers/dma/bcm2835-dma.c
> index d8d1f9ba2572..a20700a400a2 100644
> --- a/drivers/dma/bcm2835-dma.c
> +++ b/drivers/dma/bcm2835-dma.c
> @@ -156,7 +156,8 @@ struct bcm2835_desc {
> #define BCM2835_DMA_S_WIDTH BIT(9) /* 128bit writes if set */
> #define BCM2835_DMA_S_DREQ BIT(10) /* enable SREQ for source */
> #define BCM2835_DMA_S_IGNORE BIT(11) /* ignore source reads - read 0 */
> -#define BCM2835_DMA_BURST_LENGTH(x) ((x & 15) << 12)
> +#define BCM2835_DMA_BURST_LENGTH(x) (((x) & 15) << 12)
why this changes, sounds like it does not belong here..
> +#define BCM2835_DMA_GET_BURST_LENGTH(x) (((x) >> 12) & 15)
> #define BCM2835_DMA_CS_FLAGS(x) ((x) & (BCM2835_DMA_PRIORITY(15) | \
> BCM2835_DMA_PANIC_PRIORITY(15) | \
> BCM2835_DMA_WAIT_FOR_WRITES | \
> @@ -180,6 +181,11 @@ struct bcm2835_desc {
> #define WIDE_DEST(x) (((x) & BCM2835_DMA_WIDE_DEST) ? \
> BCM2835_DMA_D_WIDTH : 0)
>
> +/* A fake bit to request that the driver requires multi-beat burst */
> +#define BCM2835_DMA_BURST BIT(30)
> +#define BURST_LENGTH(x) (((x) & BCM2835_DMA_BURST) ? \
> + BCM2835_DMA_BURST_LENGTH(3) : 0)
> +
> /* debug register bits */
> #define BCM2835_DMA_DEBUG_LAST_NOT_SET_ERR BIT(0)
> #define BCM2835_DMA_DEBUG_FIFO_ERR BIT(1)
> @@ -282,7 +288,7 @@ struct bcm2835_desc {
> /* the max dma length for different channels */
> #define MAX_DMA40_LEN SZ_1G
>
> -#define BCM2711_DMA40_BURST_LEN(x) ((min(x, 16) - 1) << 8)
> +#define BCM2711_DMA40_BURST_LEN(x) (((x) & 15) << 8)
> #define BCM2711_DMA40_INC BIT(12)
> #define BCM2711_DMA40_SIZE_32 (0 << 13)
> #define BCM2711_DMA40_SIZE_64 (1 << 13)
> @@ -359,12 +365,16 @@ static inline uint32_t to_bcm2711_ti(uint32_t info)
>
> static inline uint32_t to_bcm2711_srci(uint32_t info)
> {
> - return ((info & BCM2835_DMA_S_INC) ? BCM2711_DMA40_INC : 0);
> + return ((info & BCM2835_DMA_S_INC) ? BCM2711_DMA40_INC : 0) |
> + ((info & BCM2835_DMA_S_WIDTH) ? BCM2711_DMA40_SIZE_128 : 0) |
> + BCM2711_DMA40_BURST_LEN(BCM2835_DMA_GET_BURST_LENGTH(info));
> }
>
> static inline uint32_t to_bcm2711_dsti(uint32_t info)
> {
> - return ((info & BCM2835_DMA_D_INC) ? BCM2711_DMA40_INC : 0);
> + return ((info & BCM2835_DMA_D_INC) ? BCM2711_DMA40_INC : 0) |
> + ((info & BCM2835_DMA_D_WIDTH) ? BCM2711_DMA40_SIZE_128 : 0) |
> + BCM2711_DMA40_BURST_LEN(BCM2835_DMA_GET_BURST_LENGTH(info));
> }
>
> static inline uint32_t to_bcm2711_cbaddr(dma_addr_t addr)
> @@ -933,7 +943,8 @@ static struct dma_async_tx_descriptor *bcm2835_dma_prep_dma_memcpy(
> struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
> struct bcm2835_desc *d;
> u32 info = BCM2835_DMA_D_INC | BCM2835_DMA_S_INC |
> - WAIT_RESP(c->dreq) | WIDE_SOURCE(c->dreq) | WIDE_DEST(c->dreq);
> + WAIT_RESP(c->dreq) | WIDE_SOURCE(c->dreq) |
> + WIDE_DEST(c->dreq) | BURST_LENGTH(c->dreq);
> u32 extra = BCM2835_DMA_INT_EN;
> size_t max_len = bcm2835_dma_max_frame_length(c);
> size_t frames;
> @@ -964,8 +975,8 @@ static struct dma_async_tx_descriptor *bcm2835_dma_prep_slave_sg(
> struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
> struct bcm2835_desc *d;
> dma_addr_t src = 0, dst = 0;
> - u32 info = WAIT_RESP(c->dreq) |
> - WIDE_SOURCE(c->dreq) | WIDE_DEST(c->dreq);
> + u32 info = WAIT_RESP(c->dreq) | WIDE_SOURCE(c->dreq) |
> + WIDE_DEST(c->dreq) | BURST_LENGTH(c->dreq);
> u32 extra = BCM2835_DMA_INT_EN;
> size_t frames;
>
> @@ -1017,7 +1028,8 @@ static struct dma_async_tx_descriptor *bcm2835_dma_prep_dma_cyclic(
> struct bcm2835_chan *c = to_bcm2835_dma_chan(chan);
> struct bcm2835_desc *d;
> dma_addr_t src, dst;
> - u32 info = WAIT_RESP(c->dreq) | WIDE_SOURCE(c->dreq) | WIDE_DEST(c->dreq);
> + u32 info = WAIT_RESP(c->dreq) | WIDE_SOURCE(c->dreq) |
> + WIDE_DEST(c->dreq) | BURST_LENGTH(c->dreq);
> u32 extra = 0;
> size_t max_len = bcm2835_dma_max_frame_length(c);
> size_t frames;
> --
> 2.41.0
--
~Vinod
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-02-07 8:22 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-04 6:59 [PATCH 00/12] Add support for BCM2712 DMA engine Andrea della Porta
2024-02-04 6:59 ` [PATCH 01/12] bcm2835-dma: Add support for per-channel flags Andrea della Porta
2024-02-04 6:59 ` [PATCH 02/12] bcm2835-dma: Add proper 40-bit DMA support Andrea della Porta
2024-02-05 18:50 ` Stefan Wahren
2024-02-06 16:31 ` Dave Stevenson
2024-02-06 18:08 ` Stefan Wahren
2024-02-06 18:11 ` Stefan Wahren
2024-02-04 6:59 ` [PATCH 03/12] bcm2835-dma: Add NO_WAIT_RESP, DMA_WIDE_SOURCE and DMA_WIDE_DEST flag Andrea della Porta
2024-02-04 6:59 ` [PATCH 04/12] bcm2835-dma: Advertise the full DMA range Andrea della Porta
2024-02-05 17:55 ` Robin Murphy
2024-03-01 13:55 ` Andrea della Porta
2024-02-05 18:25 ` Stefan Wahren
2024-02-04 6:59 ` [PATCH 05/12] bcm2835-dma: Derive slave DMA addresses correctly Andrea della Porta
2024-02-05 18:03 ` Robin Murphy
2024-02-04 6:59 ` [PATCH 06/12] dmaengine: bcm2835: Use to_bcm2711_cbaddr where relevant Andrea della Porta
2024-02-04 17:04 ` Florian Fainelli
2024-02-05 10:25 ` Andrea della Porta
2024-02-04 6:59 ` [PATCH 07/12] bcm2835-dma: Support dma flags for multi-beat burst Andrea della Porta
2024-02-07 8:22 ` Vinod Koul [this message]
2024-02-04 6:59 ` [PATCH 08/12] bcm2835-dma: Need to keep PROT bits set in CS on 40bit controller Andrea della Porta
2024-02-04 6:59 ` [PATCH 09/12] dmaengine: bcm2835: Add BCM2712 support Andrea della Porta
2024-02-04 6:59 ` [PATCH 10/12] dmaengine: bcm2835: Support DMA-Lite channels Andrea della Porta
2024-02-07 8:26 ` Vinod Koul
2024-02-04 6:59 ` [PATCH 11/12] dmaengine: bcm2835: Rename to_bcm2711_cbaddr to to_40bit_cbaddr Andrea della Porta
2024-02-04 6:59 ` [PATCH 12/12] bcm2835-dma: Fixes for dma_abort Andrea della Porta
2024-02-05 19:06 ` [PATCH 00/12] Add support for BCM2712 DMA engine Stefan Wahren
2024-02-07 8:19 ` Vinod Koul
2024-02-07 10:24 ` Andrea della Porta
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=ZcM9slv_x-CltW6y@matsya \
--to=vkoul@kernel.org \
--cc=andrea.porta@suse.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=dmaengine@vger.kernel.org \
--cc=florian.fainelli@broadcom.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rpi-kernel@lists.infradead.org \
--cc=maxime@cerno.tech \
--cc=phil@raspberrypi.com \
--cc=popcornmix@gmail.com \
--cc=rjui@broadcom.com \
--cc=sbranden@broadcom.com \
/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).